ardour/gtk2_ardour/triggerbox_ui.h

137 lines
3.4 KiB
C
Raw 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::Trigger::FollowAction 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 maybe_update ();
void on_trigger_changed (PBD::PropertyChange const& change);
2021-11-10 19:51:04 -05:00
void selection_change ();
void set_default_colors ();
bool play_button_event (GdkEvent*);
bool name_button_event (GdkEvent*);
bool follow_button_event (GdkEvent*);
private:
bool _grabbed;
double _poly_size;
double _poly_margin;
2021-10-17 19:58:08 -04:00
PBD::ScopedConnection owner_prop_connection;
void owner_prop_change (PBD::PropertyChange const&);
void owner_color_changed ();
void ui_parameter_changed (std::string const& p);
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 start_updating ();
void stop_updating ();
void _size_allocate (ArdourCanvas::Rect const&);
2021-12-13 16:51:16 -05:00
private:
typedef std::vector<TriggerEntry*> Slots;
ARDOUR::TriggerBox& _triggerbox;
Slots _slots;
2021-07-21 19:22:09 -04:00
void build ();
void rapid_update ();
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 _update_connection;
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
void on_map ();
void on_unmap ();
private:
2021-07-21 19:22:09 -04:00
TriggerBoxUI* ui;
};
#endif