2021-12-05 11:56:42 -05:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2021 Paul Davis <paul@linuxaudiosystems.com>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <gtkmm/filechooserdialog.h>
|
|
|
|
#include <gtkmm/menu.h>
|
|
|
|
#include <gtkmm/menuitem.h>
|
|
|
|
#include <gtkmm/stock.h>
|
|
|
|
|
|
|
|
#include "pbd/compose.h"
|
|
|
|
#include "pbd/convert.h"
|
|
|
|
|
|
|
|
#include "ardour/region.h"
|
|
|
|
|
|
|
|
#include "canvas/polygon.h"
|
|
|
|
#include "canvas/text.h"
|
|
|
|
|
|
|
|
#include "gtkmm2ext/actions.h"
|
|
|
|
#include "gtkmm2ext/colors.h"
|
|
|
|
#include "gtkmm2ext/utils.h"
|
|
|
|
|
|
|
|
#include "ardour_ui.h"
|
|
|
|
#include "gui_thread.h"
|
2021-12-22 19:27:19 -05:00
|
|
|
#include "keyboard.h"
|
2021-12-05 11:56:42 -05:00
|
|
|
#include "public_editor.h"
|
|
|
|
#include "region_view.h"
|
|
|
|
#include "selection.h"
|
|
|
|
#include "timers.h"
|
2021-12-17 09:30:14 -05:00
|
|
|
#include "trigger_master.h"
|
|
|
|
#include "trigger_ui.h"
|
2021-12-05 11:56:42 -05:00
|
|
|
#include "ui_config.h"
|
|
|
|
#include "utils.h"
|
|
|
|
|
|
|
|
#include "pbd/i18n.h"
|
|
|
|
|
|
|
|
using namespace ARDOUR;
|
|
|
|
using namespace ArdourCanvas;
|
|
|
|
using namespace Gtkmm2ext;
|
|
|
|
using namespace PBD;
|
|
|
|
|
2021-12-17 09:30:14 -05:00
|
|
|
static const int nslices = 8; // in 8 pie slices .. TODO .. maybe make this meter-senstive ... triplets and such... ?
|
2021-12-15 08:07:54 -05:00
|
|
|
|
|
|
|
Loopster::Loopster (Item* parent)
|
|
|
|
: ArdourCanvas::Rectangle (parent)
|
2021-12-17 09:30:14 -05:00
|
|
|
, _fraction (0)
|
2021-12-15 08:07:54 -05:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Loopster::set_fraction (float f)
|
|
|
|
{
|
2021-12-17 09:30:14 -05:00
|
|
|
f = std::max (0.f, f);
|
|
|
|
f = std::min (1.f, f);
|
2021-12-15 08:07:54 -05:00
|
|
|
|
2021-12-17 09:30:14 -05:00
|
|
|
float prior_slice = floor (_fraction * nslices);
|
|
|
|
float new_slice = floor (f * nslices);
|
2021-12-15 13:27:51 -05:00
|
|
|
|
|
|
|
if (new_slice != prior_slice) {
|
2021-12-15 08:07:54 -05:00
|
|
|
_fraction = f;
|
2021-12-17 09:30:14 -05:00
|
|
|
redraw ();
|
2021-12-15 08:07:54 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2021-12-18 17:18:47 -05:00
|
|
|
Loopster::render (ArdourCanvas::Rect const& area, Cairo::RefPtr<Cairo::Context> context) const
|
2021-12-15 08:07:54 -05:00
|
|
|
{
|
|
|
|
/* Note that item_to_window() already takes _position into account (as
|
2021-12-17 09:30:14 -05:00
|
|
|
* part of item_to_canvas()
|
|
|
|
*/
|
2021-12-18 17:18:47 -05:00
|
|
|
ArdourCanvas::Rect self (item_to_window (_rect));
|
|
|
|
ArdourCanvas::Rect const draw = self.intersection (area);
|
2021-12-15 08:07:54 -05:00
|
|
|
|
|
|
|
if (!draw) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-12-17 09:30:14 -05:00
|
|
|
context->set_identity_matrix ();
|
|
|
|
context->translate (self.x0, self.y0 - 0.5);
|
2021-12-15 08:07:54 -05:00
|
|
|
|
2021-12-17 09:30:14 -05:00
|
|
|
float size = _rect.height ();
|
2021-12-15 08:07:54 -05:00
|
|
|
|
2021-12-17 09:30:14 -05:00
|
|
|
const double scale = UIConfiguration::instance ().get_ui_scale ();
|
2021-12-15 08:07:54 -05:00
|
|
|
|
2021-12-17 09:30:14 -05:00
|
|
|
/* white area */
|
|
|
|
set_source_rgba (context, rgba_to_color (1, 1, 1, 1));
|
|
|
|
context->arc (size / 2, size / 2, size / 2 - 4 * scale, 0, 2 * M_PI);
|
|
|
|
context->fill ();
|
2021-12-15 08:07:54 -05:00
|
|
|
|
2021-12-17 09:30:14 -05:00
|
|
|
/* arc fill */
|
|
|
|
context->set_line_width (5 * scale);
|
|
|
|
float slices = floor (_fraction * nslices);
|
|
|
|
float deg_per_slice = 360 / nslices;
|
|
|
|
float degrees = slices * deg_per_slice;
|
|
|
|
float radians = (degrees / 180) * M_PI;
|
|
|
|
set_source_rgba (context, rgba_to_color (0, 0, 0, 1));
|
|
|
|
context->arc (size / 2, size / 2, size / 2 - 5 * scale, 1.5 * M_PI + radians, 1.5 * M_PI + 2 * M_PI);
|
|
|
|
context->stroke ();
|
|
|
|
|
|
|
|
context->set_line_width (1);
|
|
|
|
context->set_identity_matrix ();
|
2021-12-15 08:07:54 -05:00
|
|
|
}
|
|
|
|
|
2021-12-16 11:40:03 -05:00
|
|
|
class PassThru : public ArdourCanvas::Rectangle
|
|
|
|
{
|
2021-12-17 09:30:14 -05:00
|
|
|
public:
|
2021-12-16 11:40:03 -05:00
|
|
|
PassThru (ArdourCanvas::Item* canvas);
|
|
|
|
|
2021-12-17 09:30:14 -05:00
|
|
|
void render (ArdourCanvas::Rect const& area, Cairo::RefPtr<Cairo::Context> context) const;
|
2021-12-16 11:40:03 -05:00
|
|
|
void set_enabled (bool e);
|
2021-12-17 09:30:14 -05:00
|
|
|
|
|
|
|
private:
|
2021-12-16 11:40:03 -05:00
|
|
|
bool _enabled;
|
|
|
|
};
|
|
|
|
|
|
|
|
PassThru::PassThru (Item* parent)
|
|
|
|
: ArdourCanvas::Rectangle (parent)
|
|
|
|
{
|
2021-12-17 09:30:14 -05:00
|
|
|
set_enabled (false);
|
2021-12-16 11:40:03 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PassThru::set_enabled (bool e)
|
|
|
|
{
|
|
|
|
if (e != _enabled) {
|
|
|
|
_enabled = e;
|
2021-12-17 09:30:14 -05:00
|
|
|
redraw ();
|
2021-12-16 11:40:03 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2021-12-18 17:18:47 -05:00
|
|
|
PassThru::render (ArdourCanvas::Rect const& area, Cairo::RefPtr<Cairo::Context> context) const
|
2021-12-16 11:40:03 -05:00
|
|
|
{
|
|
|
|
/* Note that item_to_window() already takes _position into account (as
|
2021-12-17 09:30:14 -05:00
|
|
|
* part of item_to_canvas()
|
|
|
|
*/
|
2021-12-18 17:18:47 -05:00
|
|
|
ArdourCanvas::Rect self (item_to_window (_rect));
|
|
|
|
ArdourCanvas::Rect const draw = self.intersection (area);
|
2021-12-16 11:40:03 -05:00
|
|
|
|
|
|
|
if (!draw) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-12-17 09:30:14 -05:00
|
|
|
context->set_identity_matrix ();
|
|
|
|
context->translate (self.x0, self.y0 - 0.5);
|
2021-12-16 11:40:03 -05:00
|
|
|
|
2021-12-17 09:30:14 -05:00
|
|
|
float size = _rect.height ();
|
2021-12-16 11:40:03 -05:00
|
|
|
|
2021-12-17 09:30:14 -05:00
|
|
|
const double scale = UIConfiguration::instance ().get_ui_scale ();
|
2021-12-16 11:40:03 -05:00
|
|
|
|
|
|
|
if (_enabled) {
|
2021-12-17 10:32:52 -05:00
|
|
|
/* outer white circle */
|
|
|
|
set_source_rgba (context, rgba_to_color (1, 1, 1, 1));
|
|
|
|
context->arc (size / 2, size / 2, size / 2 - 3 * scale, 0, 2 * M_PI);
|
|
|
|
context->fill ();
|
|
|
|
|
|
|
|
/* black circle */
|
|
|
|
set_source_rgba (context, rgba_to_color (0, 0, 0, 1));
|
|
|
|
context->arc (size / 2, size / 2, size / 2 - 5 * scale, 0, 2 * M_PI);
|
|
|
|
context->fill ();
|
|
|
|
|
|
|
|
/* inner white circle */
|
|
|
|
set_source_rgba (context, rgba_to_color (1, 1, 1, 1));
|
|
|
|
context->arc (size / 2, size / 2, size / 2 - 7 * scale, 0, 2 * M_PI);
|
|
|
|
context->fill ();
|
2021-12-17 09:30:14 -05:00
|
|
|
}
|
2021-12-17 09:18:06 -05:00
|
|
|
|
2021-12-17 10:32:52 -05:00
|
|
|
context->set_identity_matrix ();
|
2021-12-17 09:30:14 -05:00
|
|
|
}
|
2021-12-15 08:07:54 -05:00
|
|
|
|
2021-12-16 10:13:37 -05:00
|
|
|
TriggerMaster::TriggerMaster (Item* parent)
|
2021-12-05 11:56:42 -05:00
|
|
|
: ArdourCanvas::Rectangle (parent)
|
2021-12-15 08:07:54 -05:00
|
|
|
, _context_menu (0)
|
2021-12-17 13:41:32 -05:00
|
|
|
, _ignore_menu_action (false)
|
2021-12-05 11:56:42 -05:00
|
|
|
{
|
2021-12-17 09:30:14 -05:00
|
|
|
set_layout_sensitive (true); // why???
|
2021-12-05 11:56:42 -05:00
|
|
|
|
|
|
|
name = X_("trigger stopper");
|
|
|
|
|
2021-12-07 16:47:42 -05:00
|
|
|
Event.connect (sigc::mem_fun (*this, &TriggerMaster::event_handler));
|
2021-12-05 11:56:42 -05:00
|
|
|
|
2021-12-17 09:18:06 -05:00
|
|
|
stop_shape = new ArdourCanvas::Polygon (this);
|
|
|
|
stop_shape->set_outline (true);
|
|
|
|
stop_shape->set_fill (false);
|
|
|
|
stop_shape->name = X_("stopbutton");
|
|
|
|
stop_shape->set_ignore_events (true);
|
|
|
|
stop_shape->show ();
|
|
|
|
|
2021-12-05 11:56:42 -05:00
|
|
|
name_text = new Text (this);
|
2021-12-17 09:30:14 -05:00
|
|
|
name_text->set ("");
|
2021-12-05 11:56:42 -05:00
|
|
|
name_text->set_ignore_events (false);
|
|
|
|
|
2021-12-17 09:30:14 -05:00
|
|
|
_loopster = new Loopster (this);
|
|
|
|
_passthru = new PassThru (this);
|
2021-12-05 11:56:42 -05:00
|
|
|
|
2021-12-17 09:30:14 -05:00
|
|
|
#if 0 /* XXX trigger changes */
|
|
|
|
_triggerbox->PropertyChanged.connect (_trigger_prop_connection, MISSING_INVALIDATOR, boost::bind (&TriggerMaster::prop_change, this, _1), gui_context());
|
2021-12-05 11:56:42 -05:00
|
|
|
PropertyChange changed;
|
|
|
|
changed.add (ARDOUR::Properties::name);
|
|
|
|
changed.add (ARDOUR::Properties::running);
|
|
|
|
prop_change (changed);
|
2021-12-17 09:30:14 -05:00
|
|
|
#endif
|
2021-12-15 08:07:54 -05:00
|
|
|
|
2021-12-17 09:30:14 -05:00
|
|
|
#if 0 /* XXX route changes */
|
|
|
|
dynamic_cast<Stripable*> (_triggerbox->owner())->presentation_info().Change.connect (_owner_prop_connection, MISSING_INVALIDATOR, boost::bind (&TriggerMaster::owner_prop_change, this, _1), gui_context());
|
|
|
|
#endif
|
2021-12-15 08:07:54 -05:00
|
|
|
|
2021-12-17 09:30:14 -05:00
|
|
|
_update_connection = Timers::rapid_connect (sigc::mem_fun (*this, &TriggerMaster::maybe_update));
|
2021-12-05 11:56:42 -05:00
|
|
|
|
2021-12-07 16:47:42 -05:00
|
|
|
/* prefs (theme colors) */
|
2021-12-17 09:30:14 -05:00
|
|
|
UIConfiguration::instance ().ParameterChanged.connect (sigc::mem_fun (*this, &TriggerMaster::ui_parameter_changed));
|
|
|
|
set_default_colors ();
|
2021-12-05 11:56:42 -05:00
|
|
|
}
|
|
|
|
|
2021-12-07 16:47:42 -05:00
|
|
|
TriggerMaster::~TriggerMaster ()
|
2021-12-05 11:56:42 -05:00
|
|
|
{
|
2021-12-17 11:48:27 -05:00
|
|
|
_update_connection.disconnect ();
|
2021-12-05 11:56:42 -05:00
|
|
|
}
|
|
|
|
|
2021-12-17 09:30:14 -05:00
|
|
|
void
|
|
|
|
TriggerMaster::set_trigger (boost::shared_ptr<ARDOUR::TriggerBox> t)
|
2021-12-16 10:13:37 -05:00
|
|
|
{
|
|
|
|
_triggerbox = t;
|
|
|
|
}
|
|
|
|
|
2021-12-05 11:56:42 -05:00
|
|
|
void
|
2021-12-18 17:18:47 -05:00
|
|
|
TriggerMaster::render (ArdourCanvas::Rect const& area, Cairo::RefPtr<Cairo::Context> context) const
|
2021-12-05 11:56:42 -05:00
|
|
|
{
|
|
|
|
/* Note that item_to_window() already takes _position into account (as
|
2021-12-17 09:30:14 -05:00
|
|
|
* part of item_to_canvas()
|
|
|
|
*/
|
2021-12-18 17:18:47 -05:00
|
|
|
ArdourCanvas::Rect self (item_to_window (_rect));
|
|
|
|
ArdourCanvas::Rect const draw = self.intersection (area);
|
2021-12-05 11:56:42 -05:00
|
|
|
|
|
|
|
if (!draw) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-12-17 09:30:14 -05:00
|
|
|
float width = _rect.width ();
|
|
|
|
float height = _rect.height ();
|
2021-12-05 11:56:42 -05:00
|
|
|
|
2021-12-17 09:30:14 -05:00
|
|
|
const double scale = UIConfiguration::instance ().get_ui_scale ();
|
2021-12-05 11:56:42 -05:00
|
|
|
|
|
|
|
if (_fill && !_transparent) {
|
|
|
|
setup_fill_context (context);
|
2021-12-17 09:30:14 -05:00
|
|
|
context->rectangle (draw.x0, draw.y0, draw.width (), draw.height ());
|
2021-12-05 11:56:42 -05:00
|
|
|
context->fill ();
|
|
|
|
}
|
|
|
|
|
2021-12-07 16:47:42 -05:00
|
|
|
render_children (area, context);
|
2021-12-12 12:20:11 -05:00
|
|
|
|
2021-12-17 09:18:06 -05:00
|
|
|
if (true) {
|
2021-12-17 10:32:52 -05:00
|
|
|
/* drop-shadow at top */
|
|
|
|
Cairo::RefPtr<Cairo::LinearGradient> drop_shadow_pattern = Cairo::LinearGradient::create (0.0, 0.0, 0.0, 6 * scale);
|
|
|
|
drop_shadow_pattern->add_color_stop_rgba (0, 0, 0, 0, 0.7);
|
|
|
|
drop_shadow_pattern->add_color_stop_rgba (1, 0, 0, 0, 0.0);
|
2021-12-17 09:18:06 -05:00
|
|
|
context->set_source (drop_shadow_pattern);
|
2021-12-17 10:32:52 -05:00
|
|
|
context->rectangle (0, 0, width, 6 * scale);
|
2021-12-17 09:18:06 -05:00
|
|
|
context->fill ();
|
|
|
|
}
|
2021-12-05 11:56:42 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2021-12-17 09:30:14 -05:00
|
|
|
TriggerMaster::owner_prop_change (PropertyChange const& pc)
|
2021-12-05 11:56:42 -05:00
|
|
|
{
|
|
|
|
if (pc.contains (Properties::color)) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2021-12-07 16:47:42 -05:00
|
|
|
TriggerMaster::selection_change ()
|
2021-12-05 11:56:42 -05:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2021-12-07 16:47:42 -05:00
|
|
|
TriggerMaster::event_handler (GdkEvent* ev)
|
2021-12-05 11:56:42 -05:00
|
|
|
{
|
2021-12-16 10:13:37 -05:00
|
|
|
if (!_triggerbox) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-12-05 11:56:42 -05:00
|
|
|
switch (ev->type) {
|
2021-12-17 09:30:14 -05:00
|
|
|
case GDK_BUTTON_PRESS:
|
|
|
|
if (ev->button.button == 1) {
|
2021-12-22 19:27:19 -05:00
|
|
|
if (Keyboard::modifier_state_equals (ev->button.state, Keyboard::PrimaryModifier)) {
|
|
|
|
_triggerbox->stop_all_immediately ();
|
|
|
|
} else {
|
|
|
|
_triggerbox->stop_all_quantized ();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-12-17 09:30:14 -05:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case GDK_ENTER_NOTIFY:
|
|
|
|
if (ev->crossing.detail != GDK_NOTIFY_INFERIOR) {
|
2021-12-17 10:32:52 -05:00
|
|
|
name_text->set_color (UIConfiguration::instance ().color ("neutral:foregroundest"));
|
|
|
|
stop_shape->set_outline_color (UIConfiguration::instance ().color ("neutral:foreground"));
|
|
|
|
set_fill_color (HSV (fill_color ()).lighter (0.15).color ());
|
2021-12-17 09:30:14 -05:00
|
|
|
}
|
|
|
|
redraw ();
|
|
|
|
break;
|
|
|
|
case GDK_LEAVE_NOTIFY:
|
|
|
|
if (ev->crossing.detail != GDK_NOTIFY_INFERIOR) {
|
2021-12-17 10:32:52 -05:00
|
|
|
set_default_colors ();
|
2021-12-17 09:30:14 -05:00
|
|
|
}
|
|
|
|
redraw ();
|
|
|
|
break;
|
|
|
|
case GDK_BUTTON_RELEASE:
|
|
|
|
switch (ev->button.button) {
|
2021-12-17 10:32:52 -05:00
|
|
|
case 3:
|
|
|
|
context_menu ();
|
|
|
|
return true;
|
2021-12-17 09:30:14 -05:00
|
|
|
}
|
2021-12-15 08:07:54 -05:00
|
|
|
default:
|
|
|
|
break;
|
2021-12-05 11:56:42 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2021-12-15 08:07:54 -05:00
|
|
|
TriggerMaster::context_menu ()
|
2021-12-05 11:56:42 -05:00
|
|
|
{
|
2021-12-15 08:07:54 -05:00
|
|
|
using namespace Gtk;
|
|
|
|
using namespace Gtk::Menu_Helpers;
|
|
|
|
using namespace Temporal;
|
|
|
|
|
|
|
|
delete _context_menu;
|
|
|
|
|
2021-12-17 09:30:14 -05:00
|
|
|
_context_menu = new Menu;
|
|
|
|
MenuList& items = _context_menu->items ();
|
2021-12-15 08:07:54 -05:00
|
|
|
_context_menu->set_name ("ArdourContextMenu");
|
|
|
|
|
2021-12-17 09:30:14 -05:00
|
|
|
Menu* follow_menu = manage (new Menu);
|
|
|
|
MenuList& fitems = follow_menu->items ();
|
2021-12-15 08:07:54 -05:00
|
|
|
|
2021-12-23 23:17:06 -05:00
|
|
|
fitems.push_back (MenuElem (TriggerUI::follow_action_to_string(Trigger::None), sigc::bind (sigc::mem_fun (*this, &TriggerMaster::set_all_follow_action), Trigger::None)));
|
|
|
|
fitems.push_back (MenuElem (TriggerUI::follow_action_to_string(Trigger::Stop), sigc::bind (sigc::mem_fun (*this, &TriggerMaster::set_all_follow_action), Trigger::Stop)));
|
|
|
|
fitems.push_back (MenuElem (TriggerUI::follow_action_to_string(Trigger::Again), sigc::bind (sigc::mem_fun (*this, &TriggerMaster::set_all_follow_action), Trigger::Again)));
|
|
|
|
fitems.push_back (MenuElem (TriggerUI::follow_action_to_string(Trigger::PrevTrigger), sigc::bind (sigc::mem_fun (*this, &TriggerMaster::set_all_follow_action), Trigger::PrevTrigger)));
|
|
|
|
fitems.push_back (MenuElem (TriggerUI::follow_action_to_string(Trigger::NextTrigger), sigc::bind (sigc::mem_fun (*this, &TriggerMaster::set_all_follow_action), Trigger::NextTrigger)));
|
|
|
|
fitems.push_back (MenuElem (TriggerUI::follow_action_to_string(Trigger::AnyTrigger), sigc::bind (sigc::mem_fun (*this, &TriggerMaster::set_all_follow_action), Trigger::AnyTrigger)));
|
|
|
|
fitems.push_back (MenuElem (TriggerUI::follow_action_to_string(Trigger::OtherTrigger), sigc::bind (sigc::mem_fun (*this, &TriggerMaster::set_all_follow_action), Trigger::OtherTrigger)));
|
2021-12-15 08:07:54 -05:00
|
|
|
|
2021-12-17 09:30:14 -05:00
|
|
|
Menu* launch_menu = manage (new Menu);
|
|
|
|
MenuList& litems = launch_menu->items ();
|
2021-12-15 08:07:54 -05:00
|
|
|
|
2021-12-23 23:17:06 -05:00
|
|
|
litems.push_back (MenuElem (TriggerUI::launch_style_to_string(Trigger::OneShot), sigc::bind (sigc::mem_fun (*this, &TriggerMaster::set_all_launch_style), Trigger::OneShot)));
|
|
|
|
litems.push_back (MenuElem (TriggerUI::launch_style_to_string(Trigger::Gate), sigc::bind (sigc::mem_fun (*this, &TriggerMaster::set_all_launch_style), Trigger::Gate)));
|
|
|
|
litems.push_back (MenuElem (TriggerUI::launch_style_to_string(Trigger::Toggle), sigc::bind (sigc::mem_fun (*this, &TriggerMaster::set_all_launch_style), Trigger::Toggle)));
|
|
|
|
litems.push_back (MenuElem (TriggerUI::launch_style_to_string(Trigger::Repeat), sigc::bind (sigc::mem_fun (*this, &TriggerMaster::set_all_launch_style), Trigger::Repeat)));
|
2021-12-15 08:07:54 -05:00
|
|
|
|
2021-12-17 09:30:14 -05:00
|
|
|
Menu* quant_menu = manage (new Menu);
|
|
|
|
MenuList& qitems = quant_menu->items ();
|
2021-12-15 08:07:54 -05:00
|
|
|
|
|
|
|
BBT_Offset b;
|
|
|
|
|
|
|
|
b = BBT_Offset (1, 0, 0);
|
2021-12-23 23:17:06 -05:00
|
|
|
qitems.push_back (MenuElem (TriggerUI::quantize_length_to_string (b), sigc::bind (sigc::mem_fun (*this, &TriggerMaster::set_all_quantization), b)));
|
2021-12-15 08:07:54 -05:00
|
|
|
b = BBT_Offset (0, 4, 0);
|
2021-12-23 23:17:06 -05:00
|
|
|
qitems.push_back (MenuElem (TriggerUI::quantize_length_to_string (b), sigc::bind (sigc::mem_fun (*this, &TriggerMaster::set_all_quantization), b)));
|
2021-12-15 08:07:54 -05:00
|
|
|
b = BBT_Offset (0, 2, 0);
|
2021-12-23 23:17:06 -05:00
|
|
|
qitems.push_back (MenuElem (TriggerUI::quantize_length_to_string (b), sigc::bind (sigc::mem_fun (*this, &TriggerMaster::set_all_quantization), b)));
|
2021-12-15 08:07:54 -05:00
|
|
|
b = BBT_Offset (0, 1, 0);
|
2021-12-23 23:17:06 -05:00
|
|
|
qitems.push_back (MenuElem (TriggerUI::quantize_length_to_string (b), sigc::bind (sigc::mem_fun (*this, &TriggerMaster::set_all_quantization), b)));
|
2021-12-17 09:30:14 -05:00
|
|
|
b = BBT_Offset (0, 0, ticks_per_beat / 2);
|
2021-12-23 23:17:06 -05:00
|
|
|
qitems.push_back (MenuElem (TriggerUI::quantize_length_to_string (b), sigc::bind (sigc::mem_fun (*this, &TriggerMaster::set_all_quantization), b)));
|
2021-12-17 09:30:14 -05:00
|
|
|
b = BBT_Offset (0, 0, ticks_per_beat / 4);
|
2021-12-23 23:17:06 -05:00
|
|
|
qitems.push_back (MenuElem (TriggerUI::quantize_length_to_string (b), sigc::bind (sigc::mem_fun (*this, &TriggerMaster::set_all_quantization), b)));
|
2021-12-17 09:30:14 -05:00
|
|
|
b = BBT_Offset (0, 0, ticks_per_beat / 8);
|
2021-12-23 23:17:06 -05:00
|
|
|
qitems.push_back (MenuElem (TriggerUI::quantize_length_to_string (b), sigc::bind (sigc::mem_fun (*this, &TriggerMaster::set_all_quantization), b)));
|
2021-12-17 09:30:14 -05:00
|
|
|
b = BBT_Offset (0, 0, ticks_per_beat / 16);
|
2021-12-23 23:17:06 -05:00
|
|
|
qitems.push_back (MenuElem (TriggerUI::quantize_length_to_string (b), sigc::bind (sigc::mem_fun (*this, &TriggerMaster::set_all_quantization), b)));
|
2021-12-15 08:07:54 -05:00
|
|
|
|
2021-12-17 09:30:14 -05:00
|
|
|
Menu* load_menu = manage (new Menu);
|
|
|
|
MenuList& loitems (load_menu->items ());
|
2021-12-15 08:07:54 -05:00
|
|
|
|
2021-12-16 11:40:03 -05:00
|
|
|
items.push_back (CheckMenuElem (_("Toggle Monitor Thru"), sigc::mem_fun (*this, &TriggerMaster::toggle_thru)));
|
2021-12-17 09:30:14 -05:00
|
|
|
if (_triggerbox->pass_thru ()) {
|
2021-12-17 13:41:32 -05:00
|
|
|
_ignore_menu_action = true;
|
2021-12-16 11:40:03 -05:00
|
|
|
dynamic_cast<Gtk::CheckMenuItem*> (&items.back ())->set_active (true);
|
2021-12-17 13:41:32 -05:00
|
|
|
_ignore_menu_action = false;
|
2021-12-16 11:40:03 -05:00
|
|
|
}
|
|
|
|
|
2021-12-17 09:30:14 -05:00
|
|
|
items.push_back (MenuElem (_("Enable/Disable..."), sigc::mem_fun (*this, &TriggerMaster::maybe_update))); // TODO
|
2021-12-22 13:29:16 -05:00
|
|
|
items.push_back (MenuElem (_("Set All Follow Actions..."), *follow_menu));
|
|
|
|
items.push_back (MenuElem (_("Set All Launch Styles..."), *launch_menu));
|
|
|
|
items.push_back (MenuElem (_("Set All Quantizations..."), *quant_menu));
|
2021-12-23 23:18:56 -05:00
|
|
|
items.push_back (SeparatorElem());
|
|
|
|
items.push_back (MenuElem (_("Clear All..."), sigc::mem_fun (*this, &TriggerMaster::clear_all_triggers)));
|
2021-12-15 08:07:54 -05:00
|
|
|
|
2021-12-17 09:30:14 -05:00
|
|
|
_context_menu->popup (1, gtk_get_current_event_time ());
|
2021-12-15 08:07:54 -05:00
|
|
|
}
|
2021-12-05 11:56:42 -05:00
|
|
|
|
2021-12-16 11:40:03 -05:00
|
|
|
void
|
|
|
|
TriggerMaster::toggle_thru ()
|
|
|
|
{
|
2021-12-17 13:41:32 -05:00
|
|
|
if (_ignore_menu_action) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-12-17 09:30:14 -05:00
|
|
|
_triggerbox->set_pass_thru (!_triggerbox->pass_thru ());
|
2021-12-16 11:40:03 -05:00
|
|
|
}
|
|
|
|
|
2021-12-23 23:18:56 -05:00
|
|
|
void
|
|
|
|
TriggerMaster::clear_all_triggers ()
|
|
|
|
{
|
|
|
|
_triggerbox->clear_all_triggers();
|
|
|
|
}
|
|
|
|
|
2021-12-15 08:07:54 -05:00
|
|
|
void
|
|
|
|
TriggerMaster::set_all_follow_action (Trigger::FollowAction fa)
|
|
|
|
{
|
2021-12-22 13:29:16 -05:00
|
|
|
_triggerbox->set_all_follow_action(fa);
|
|
|
|
_triggerbox->set_all_probability(100);
|
2021-12-15 08:07:54 -05:00
|
|
|
}
|
2021-12-05 11:56:42 -05:00
|
|
|
|
2021-12-15 08:07:54 -05:00
|
|
|
void
|
|
|
|
TriggerMaster::set_all_launch_style (Trigger::LaunchStyle ls)
|
|
|
|
{
|
2021-12-22 13:29:16 -05:00
|
|
|
_triggerbox->set_all_launch_style(ls);
|
2021-12-15 08:07:54 -05:00
|
|
|
}
|
2021-12-05 11:56:42 -05:00
|
|
|
|
2021-12-15 08:07:54 -05:00
|
|
|
void
|
2021-12-17 09:30:14 -05:00
|
|
|
TriggerMaster::set_all_quantization (Temporal::BBT_Offset const& q)
|
2021-12-15 08:07:54 -05:00
|
|
|
{
|
2021-12-22 13:29:16 -05:00
|
|
|
_triggerbox->set_all_quantization(q);
|
2021-12-15 08:07:54 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
TriggerMaster::maybe_update ()
|
|
|
|
{
|
|
|
|
PropertyChange changed;
|
|
|
|
changed.add (ARDOUR::Properties::name);
|
|
|
|
changed.add (ARDOUR::Properties::running);
|
2021-12-17 09:30:14 -05:00
|
|
|
prop_change (changed);
|
2021-12-05 11:56:42 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2021-12-17 09:30:14 -05:00
|
|
|
TriggerMaster::_size_allocate (ArdourCanvas::Rect const& alloc)
|
2021-12-05 11:56:42 -05:00
|
|
|
{
|
|
|
|
Rectangle::_size_allocate (alloc);
|
|
|
|
|
2021-12-17 09:30:14 -05:00
|
|
|
const double scale = UIConfiguration::instance ().get_ui_scale ();
|
2021-12-21 15:55:08 -05:00
|
|
|
_poly_margin = 3. * scale;
|
2021-12-05 11:56:42 -05:00
|
|
|
|
2021-12-17 09:30:14 -05:00
|
|
|
const Distance width = _rect.width ();
|
|
|
|
const Distance height = _rect.height ();
|
2021-12-05 11:56:42 -05:00
|
|
|
|
2021-12-17 09:30:14 -05:00
|
|
|
_poly_size = height - (_poly_margin * 2);
|
2021-12-05 11:56:42 -05:00
|
|
|
|
2021-12-17 09:18:06 -05:00
|
|
|
Points p;
|
|
|
|
p.push_back (Duple (_poly_margin, _poly_margin));
|
|
|
|
p.push_back (Duple (_poly_margin, _poly_size));
|
|
|
|
p.push_back (Duple (_poly_size, _poly_size));
|
|
|
|
p.push_back (Duple (_poly_size, _poly_margin));
|
|
|
|
stop_shape->set (p);
|
|
|
|
|
2021-12-17 09:30:14 -05:00
|
|
|
float tleft = _poly_size + (_poly_margin * 3);
|
|
|
|
float twidth = width - _poly_size - (_poly_margin * 3);
|
2021-12-05 11:56:42 -05:00
|
|
|
|
2021-12-17 10:32:52 -05:00
|
|
|
ArdourCanvas::Rect text_alloc (tleft, 0, twidth, height); // testing
|
2021-12-05 11:56:42 -05:00
|
|
|
name_text->size_allocate (text_alloc);
|
2021-12-17 09:30:14 -05:00
|
|
|
name_text->set_position (Duple (tleft, 1. * scale));
|
2021-12-05 11:56:42 -05:00
|
|
|
name_text->clamp_width (twidth);
|
|
|
|
|
2021-12-17 09:30:14 -05:00
|
|
|
_loopster->set (ArdourCanvas::Rect (0, 0, height, height));
|
|
|
|
_passthru->set (ArdourCanvas::Rect (width - height, 0, width, height));
|
2021-12-15 08:07:54 -05:00
|
|
|
|
2021-12-17 09:30:14 -05:00
|
|
|
/* font scale may have changed. uiconfig 'embeds' the ui-scale in the font */
|
|
|
|
name_text->set_font_description (UIConfiguration::instance ().get_NormalFont ());
|
2021-12-05 11:56:42 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2021-12-17 09:30:14 -05:00
|
|
|
TriggerMaster::prop_change (PropertyChange const& change)
|
2021-12-05 11:56:42 -05:00
|
|
|
{
|
2021-12-16 10:13:37 -05:00
|
|
|
if (!_triggerbox) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-12-17 09:30:14 -05:00
|
|
|
_passthru->set_enabled (_triggerbox->pass_thru ());
|
2021-12-16 11:40:03 -05:00
|
|
|
|
2021-12-15 08:07:54 -05:00
|
|
|
std::string text;
|
2021-12-05 11:56:42 -05:00
|
|
|
|
2021-12-21 15:38:22 -05:00
|
|
|
ARDOUR::TriggerPtr trigger = _triggerbox->currently_playing ();
|
2021-12-15 08:07:54 -05:00
|
|
|
if (!trigger) {
|
2021-12-17 09:30:14 -05:00
|
|
|
name_text->set (text);
|
2021-12-17 10:32:52 -05:00
|
|
|
_loopster->hide ();
|
|
|
|
stop_shape->show ();
|
2021-12-15 08:07:54 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-12-23 18:28:48 -05:00
|
|
|
text = string_compose ("%1", (char)('A' + trigger->index ())); // XXX not translatable
|
2021-12-15 08:07:54 -05:00
|
|
|
|
2021-12-17 09:30:14 -05:00
|
|
|
if (trigger->follow_count () > 1) {
|
2021-12-17 10:44:00 -05:00
|
|
|
text.append (string_compose (X_(" %1/%2"), trigger->loop_count ()+1, trigger->follow_count ()));
|
2021-12-15 08:07:54 -05:00
|
|
|
}
|
|
|
|
|
2021-12-17 09:30:14 -05:00
|
|
|
name_text->set (text);
|
|
|
|
|
|
|
|
if (trigger->active ()) {
|
2021-12-15 08:07:54 -05:00
|
|
|
double f = trigger->position_as_fraction ();
|
2021-12-17 10:32:52 -05:00
|
|
|
_loopster->set_fraction (f);
|
|
|
|
_loopster->show ();
|
|
|
|
stop_shape->hide ();
|
2021-12-15 08:07:54 -05:00
|
|
|
} else {
|
2021-12-17 10:32:52 -05:00
|
|
|
_loopster->hide ();
|
|
|
|
stop_shape->show ();
|
2021-12-05 11:56:42 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2021-12-07 16:47:42 -05:00
|
|
|
TriggerMaster::set_default_colors ()
|
|
|
|
{
|
2021-12-17 10:32:52 -05:00
|
|
|
set_fill_color (HSV (UIConfiguration::instance ().color ("theme:bg")).darker (0.25).color ());
|
|
|
|
name_text->set_color (UIConfiguration::instance ().color ("neutral:foreground"));
|
|
|
|
stop_shape->set_outline_color (UIConfiguration::instance ().color ("neutral:midground"));
|
2021-12-07 16:47:42 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
TriggerMaster::ui_parameter_changed (std::string const& p)
|
2021-12-05 11:56:42 -05:00
|
|
|
{
|
|
|
|
if (p == "color-file") {
|
2021-12-17 09:30:14 -05:00
|
|
|
set_default_colors ();
|
2021-12-05 11:56:42 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-07 16:47:42 -05:00
|
|
|
CueMaster::CueMaster (Item* parent)
|
2021-12-05 11:56:42 -05:00
|
|
|
: ArdourCanvas::Rectangle (parent)
|
|
|
|
{
|
2021-12-17 10:32:52 -05:00
|
|
|
set_layout_sensitive (true); // why???
|
2021-12-05 11:56:42 -05:00
|
|
|
|
|
|
|
name = X_("trigger stopper");
|
|
|
|
|
2021-12-07 16:47:42 -05:00
|
|
|
Event.connect (sigc::mem_fun (*this, &CueMaster::event_handler));
|
2021-12-05 11:56:42 -05:00
|
|
|
|
2021-12-07 16:47:42 -05:00
|
|
|
stop_shape = new ArdourCanvas::Polygon (this);
|
2021-12-17 09:18:06 -05:00
|
|
|
stop_shape->set_outline (true);
|
|
|
|
stop_shape->set_fill (false);
|
2021-12-07 16:47:42 -05:00
|
|
|
stop_shape->name = X_("stopbutton");
|
|
|
|
stop_shape->set_ignore_events (true);
|
|
|
|
stop_shape->show ();
|
2021-12-05 11:56:42 -05:00
|
|
|
|
|
|
|
name_text = new Text (this);
|
2021-12-17 09:30:14 -05:00
|
|
|
name_text->set ("");
|
2021-12-05 11:56:42 -05:00
|
|
|
name_text->set_ignore_events (false);
|
|
|
|
|
|
|
|
/* prefs (theme colors) */
|
2021-12-17 09:30:14 -05:00
|
|
|
UIConfiguration::instance ().ParameterChanged.connect (sigc::mem_fun (*this, &CueMaster::ui_parameter_changed));
|
|
|
|
set_default_colors ();
|
2021-12-05 11:56:42 -05:00
|
|
|
}
|
|
|
|
|
2021-12-07 16:47:42 -05:00
|
|
|
CueMaster::~CueMaster ()
|
2021-12-05 11:56:42 -05:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2021-12-18 17:18:47 -05:00
|
|
|
CueMaster::render (ArdourCanvas::Rect const& area, Cairo::RefPtr<Cairo::Context> context) const
|
2021-12-05 11:56:42 -05:00
|
|
|
{
|
|
|
|
/* Note that item_to_window() already takes _position into account (as
|
|
|
|
part of item_to_canvas()
|
|
|
|
*/
|
2021-12-18 17:18:47 -05:00
|
|
|
ArdourCanvas::Rect self (item_to_window (_rect));
|
|
|
|
ArdourCanvas::Rect const draw = self.intersection (area);
|
2021-12-05 11:56:42 -05:00
|
|
|
|
|
|
|
if (!draw) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-12-17 09:30:14 -05:00
|
|
|
float width = _rect.width ();
|
|
|
|
float height = _rect.height ();
|
2021-12-05 11:56:42 -05:00
|
|
|
|
2021-12-17 09:30:14 -05:00
|
|
|
const double scale = UIConfiguration::instance ().get_ui_scale ();
|
2021-12-05 11:56:42 -05:00
|
|
|
|
|
|
|
if (_fill && !_transparent) {
|
|
|
|
setup_fill_context (context);
|
2021-12-17 09:30:14 -05:00
|
|
|
context->rectangle (draw.x0, draw.y0, draw.width (), draw.height ());
|
2021-12-05 11:56:42 -05:00
|
|
|
context->fill ();
|
|
|
|
}
|
|
|
|
|
2021-12-07 16:47:42 -05:00
|
|
|
render_children (area, context);
|
2021-12-12 12:20:11 -05:00
|
|
|
|
2021-12-17 09:18:06 -05:00
|
|
|
if (true) {
|
2021-12-17 10:32:52 -05:00
|
|
|
/* drop-shadow at top */
|
|
|
|
Cairo::RefPtr<Cairo::LinearGradient> drop_shadow_pattern = Cairo::LinearGradient::create (0.0, 0.0, 0.0, 6 * scale);
|
|
|
|
drop_shadow_pattern->add_color_stop_rgba (0, 0, 0, 0, 0.7);
|
|
|
|
drop_shadow_pattern->add_color_stop_rgba (1, 0, 0, 0, 0.0);
|
2021-12-17 09:18:06 -05:00
|
|
|
context->set_source (drop_shadow_pattern);
|
2021-12-17 10:32:52 -05:00
|
|
|
context->rectangle (0, 0, width, 6 * scale);
|
2021-12-17 09:18:06 -05:00
|
|
|
context->fill ();
|
2021-12-12 12:20:11 -05:00
|
|
|
}
|
2021-12-05 11:56:42 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2021-12-07 16:47:42 -05:00
|
|
|
CueMaster::event_handler (GdkEvent* ev)
|
2021-12-05 11:56:42 -05:00
|
|
|
{
|
|
|
|
switch (ev->type) {
|
2021-12-17 09:30:14 -05:00
|
|
|
case GDK_BUTTON_PRESS:
|
|
|
|
if (ev->button.button == 1) {
|
2021-12-22 19:27:19 -05:00
|
|
|
/* stop all running triggers, but let them run
|
|
|
|
to their natural end
|
|
|
|
*/
|
|
|
|
if (Keyboard::modifier_state_equals (ev->button.state, Keyboard::PrimaryModifier)) {
|
|
|
|
_session->stop_all_triggers (true);
|
|
|
|
} else {
|
|
|
|
_session->stop_all_triggers (false);
|
|
|
|
}
|
2021-12-17 09:30:14 -05:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case GDK_ENTER_NOTIFY:
|
|
|
|
if (ev->crossing.detail != GDK_NOTIFY_INFERIOR) {
|
2021-12-17 10:32:52 -05:00
|
|
|
name_text->set_color (UIConfiguration::instance ().color ("neutral:foregroundest"));
|
|
|
|
stop_shape->set_outline_color (UIConfiguration::instance ().color ("neutral:foreground"));
|
|
|
|
set_fill_color (HSV (fill_color ()).lighter (0.15).color ());
|
2021-12-17 09:30:14 -05:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case GDK_LEAVE_NOTIFY:
|
|
|
|
if (ev->crossing.detail != GDK_NOTIFY_INFERIOR) {
|
2021-12-17 10:32:52 -05:00
|
|
|
set_default_colors ();
|
2021-12-17 09:30:14 -05:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
2021-12-05 11:56:42 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2021-12-07 16:47:42 -05:00
|
|
|
CueMaster::maybe_update ()
|
2021-12-05 11:56:42 -05:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2021-12-17 09:30:14 -05:00
|
|
|
CueMaster::_size_allocate (ArdourCanvas::Rect const& alloc)
|
2021-12-05 11:56:42 -05:00
|
|
|
{
|
|
|
|
Rectangle::_size_allocate (alloc);
|
|
|
|
|
2021-12-17 09:30:14 -05:00
|
|
|
const double scale = UIConfiguration::instance ().get_ui_scale ();
|
|
|
|
_poly_margin = 2. * scale;
|
2021-12-05 11:56:42 -05:00
|
|
|
|
2021-12-17 09:30:14 -05:00
|
|
|
const Distance width = _rect.width ();
|
|
|
|
const Distance height = _rect.height ();
|
2021-12-05 11:56:42 -05:00
|
|
|
|
2021-12-17 09:30:14 -05:00
|
|
|
_poly_size = height - (_poly_margin * 2);
|
2021-12-05 11:56:42 -05:00
|
|
|
|
2021-12-17 10:32:52 -05:00
|
|
|
float centering_offset = (width / 2) - _poly_margin - _poly_size / 2;
|
2021-12-17 09:18:06 -05:00
|
|
|
|
2021-12-05 11:56:42 -05:00
|
|
|
Points p;
|
2021-12-17 10:32:52 -05:00
|
|
|
p.push_back (Duple (centering_offset + _poly_margin, _poly_margin));
|
|
|
|
p.push_back (Duple (centering_offset + _poly_margin, _poly_size));
|
|
|
|
p.push_back (Duple (centering_offset + _poly_size, _poly_size));
|
|
|
|
p.push_back (Duple (centering_offset + _poly_size, _poly_margin));
|
2021-12-07 16:47:42 -05:00
|
|
|
stop_shape->set (p);
|
2021-12-05 11:56:42 -05:00
|
|
|
|
2021-12-17 09:30:14 -05:00
|
|
|
float tleft = _poly_size + (_poly_margin * 3);
|
|
|
|
float twidth = width - _poly_size - (_poly_margin * 3);
|
2021-12-05 11:56:42 -05:00
|
|
|
|
2021-12-17 10:32:52 -05:00
|
|
|
ArdourCanvas::Rect text_alloc (tleft, 0, twidth, height); // testing
|
2021-12-05 11:56:42 -05:00
|
|
|
name_text->size_allocate (text_alloc);
|
2021-12-17 09:30:14 -05:00
|
|
|
name_text->set_position (Duple (tleft, 1. * scale));
|
2021-12-05 11:56:42 -05:00
|
|
|
name_text->clamp_width (twidth);
|
|
|
|
|
2021-12-17 09:30:14 -05:00
|
|
|
/* font scale may have changed. uiconfig 'embeds' the ui-scale in the font */
|
|
|
|
name_text->set_font_description (UIConfiguration::instance ().get_NormalFont ());
|
2021-12-05 11:56:42 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2021-12-07 16:47:42 -05:00
|
|
|
CueMaster::set_default_colors ()
|
2021-12-05 11:56:42 -05:00
|
|
|
{
|
2021-12-17 10:32:52 -05:00
|
|
|
set_fill_color (HSV (UIConfiguration::instance ().color ("theme:bg")).darker (0.25).color ());
|
|
|
|
name_text->set_color (UIConfiguration::instance ().color ("neutral:foreground"));
|
|
|
|
stop_shape->set_outline_color (UIConfiguration::instance ().color ("neutral:midground"));
|
2021-12-05 11:56:42 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2021-12-07 16:47:42 -05:00
|
|
|
CueMaster::ui_parameter_changed (std::string const& p)
|
2021-12-05 11:56:42 -05:00
|
|
|
{
|
|
|
|
if (p == "color-file") {
|
2021-12-17 09:30:14 -05:00
|
|
|
set_default_colors ();
|
2021-12-05 11:56:42 -05:00
|
|
|
}
|
|
|
|
}
|