ardour/gtk2_ardour/triggerbox_ui.h

152 lines
3.8 KiB
C
Raw Permalink Normal View History

2021-07-21 18:44:41 -04: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.
*/
#ifndef _gtk_ardour_triggerbox_ui_h_
#define _gtk_ardour_triggerbox_ui_h_
2021-12-27 12:40:39 -05:00
#include <gtkmm/colorselection.h>
#include "pbd/properties.h"
#include "ardour/triggerbox.h"
2021-07-21 19:22:09 -04:00
#include "canvas/canvas.h"
2021-07-21 18:44:41 -04:00
#include "canvas/rectangle.h"
#include "fitted_canvas_widget.h"
#include "trigger_ui.h"
namespace Temporal
{
struct BBT_Offset;
2021-07-21 18:44:41 -04:00
}
namespace ArdourCanvas
{
class Text;
class Polygon;
}
class TriggerEntry : public ArdourCanvas::Rectangle, public TriggerUI
2021-07-21 18:44:41 -04:00
{
public:
TriggerEntry (ArdourCanvas::Item* item, ARDOUR::TriggerReference rf);
2021-07-21 18:44:41 -04:00
~TriggerEntry ();
ArdourCanvas::Rectangle* play_button;
ArdourCanvas::Rectangle* name_button;
ArdourCanvas::Rectangle* follow_button;
ArdourCanvas::Text* name_text;
2021-07-21 18:44:41 -04:00
void draw_launch_icon (Cairo::RefPtr<Cairo::Context> context, float size, float scale) const;
void draw_follow_icon (Cairo::RefPtr<Cairo::Context> context, ARDOUR::FollowAction const & icon, float size, float scale) const;
void render (ArdourCanvas::Rect const& area, Cairo::RefPtr<Cairo::Context> context) const;
void _size_allocate (ArdourCanvas::Rect const&);
void on_trigger_changed (PBD::PropertyChange const& change);
2021-11-10 19:51:04 -05:00
void selection_change ();
enum EnteredState {
PlayEntered,
NameEntered,
FollowEntered,
NoneEntered
};
2022-01-11 16:09:17 -05:00
void set_widget_colors (TriggerEntry::EnteredState es = NoneEntered);
bool name_button_event (GdkEvent*);
private:
2022-01-11 07:52:02 -05:00
bool _grabbed;
double _poly_size;
double _poly_margin;
int _drag_start_x;
int _drag_start_y;
bool _drag_active;
bool event (GdkEvent*);
void drag_begin (Glib::RefPtr<Gdk::DragContext> const&);
void drag_end (Glib::RefPtr<Gdk::DragContext> const&);
void drag_data_get (Glib::RefPtr<Gdk::DragContext> const&, Gtk::SelectionData&, guint, guint);
void ui_parameter_changed (std::string const& p);
bool play_button_event (GdkEvent*);
bool follow_button_event (GdkEvent*);
void owner_prop_change (PBD::PropertyChange const&);
void owner_color_changed ();
PBD::ScopedConnection _owner_prop_connection;
2021-07-21 18:44:41 -04:00
};
class TriggerBoxUI : public ArdourCanvas::Rectangle
2021-07-21 18:44:41 -04:00
{
public:
2021-07-21 19:22:09 -04:00
TriggerBoxUI (ArdourCanvas::Item* parent, ARDOUR::TriggerBox&);
2021-07-21 18:44:41 -04:00
~TriggerBoxUI ();
void _size_allocate (ArdourCanvas::Rect const&);
static Glib::RefPtr<Gtk::TargetList> dnd_src ()
{
return _dnd_src;
}
2021-12-13 16:51:16 -05:00
private:
typedef std::vector<TriggerEntry*> Slots;
2022-01-11 07:52:02 -05:00
ARDOUR::TriggerBox& _triggerbox;
Slots _slots;
static Glib::RefPtr<Gtk::TargetList> _dnd_src;
2021-07-21 19:22:09 -04:00
void build ();
2021-11-10 19:51:04 -05:00
void selection_changed ();
bool drag_motion (Glib::RefPtr<Gdk::DragContext> const&, int, int, guint);
void drag_leave (Glib::RefPtr<Gdk::DragContext> const&, guint);
2021-12-13 16:51:16 -05:00
void drag_data_received (Glib::RefPtr<Gdk::DragContext> const&, int, int, Gtk::SelectionData const&, guint, guint);
bool triggerbox_event (GdkEvent*);
2021-12-13 18:45:16 -05:00
uint64_t slot_at_y (int) const;
sigc::connection _selection_connection;
2021-07-21 18:44:41 -04:00
};
class TriggerBoxWidget : public FittedCanvasWidget
2021-07-21 19:22:09 -04:00
{
public:
TriggerBoxWidget (float w, float h);
void set_triggerbox (ARDOUR::TriggerBox* tb);
2021-07-21 19:22:09 -04:00
private:
2021-07-21 19:22:09 -04:00
TriggerBoxUI* ui;
};
#endif