From 66e91bafd2b72100f0ad2cdcc4d39818bd766ca3 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sat, 13 Dec 2008 15:18:32 +0000 Subject: new 2d panner GUI, implemented originally in a branch of 2.0-ongoing at LAC2009; unfinished work, but the basis for 2d panning in 3.0 git-svn-id: svn://localhost/ardour2/branches/3.0@4319 d708f5d6-7413-0410-9779-e7cbd77b26cf --- gtk2_ardour/panner2d.h | 50 +++++++++++++++++++++++++++++++++++++++++--------- 1 file changed, 41 insertions(+), 9 deletions(-) (limited to 'gtk2_ardour/panner2d.h') diff --git a/gtk2_ardour/panner2d.h b/gtk2_ardour/panner2d.h index fb4929ad2d..2bf57f2627 100644 --- a/gtk2_ardour/panner2d.h +++ b/gtk2_ardour/panner2d.h @@ -23,9 +23,15 @@ #include #include #include +#include #include #include +#include +#include +#include +#include +#include using std::map; using std::string; @@ -43,15 +49,14 @@ namespace Pango { class Layout; } +class Panner2dWindow; + class Panner2d : public Gtk::DrawingArea { public: Panner2d (ARDOUR::Panner&, int32_t height); ~Panner2d (); - int puck_position (int which_puck, float& x, float& y); - int target_position (int which_target, float& x, float& y); - void allow_x_motion(bool); void allow_y_motion(bool); void allow_target_motion (bool); @@ -69,6 +74,10 @@ class Panner2d : public Gtk::DrawingArea void move_puck (int, float x, float y); void reset (uint32_t n_inputs); + Gtk::Adjustment& azimuth (uint32_t which); + + ARDOUR::Panner& get_panner() const { return panner; } + sigc::signal PuckMoved; sigc::signal TargetMoved; @@ -81,19 +90,19 @@ class Panner2d : public Gtk::DrawingArea private: struct Target { - float x; - float y; + Gtk::Adjustment x; + Gtk::Adjustment y; + Gtk::Adjustment azimuth; bool visible; char* text; - size_t textlen; Target (float xa, float ya, const char* txt = 0); ~Target (); + + void set_text (const char*); }; ARDOUR::Panner& panner; - Gtk::Menu* context_menu; - Gtk::CheckMenuItem* bypass_menu_item; Glib::RefPtr layout; typedef std::map Targets; @@ -101,6 +110,8 @@ class Panner2d : public Gtk::DrawingArea Targets pucks; Target *drag_target; + int drag_x; + int drag_y; int drag_index; bool drag_is_puck; bool allow_x; @@ -119,8 +130,29 @@ class Panner2d : public Gtk::DrawingArea gint handle_motion (gint, gint, GdkModifierType); void toggle_bypass (); - void show_context_menu (); void handle_state_change (); + void handle_position_change (); +}; + +class Panner2dWindow : public Gtk::Window +{ + public: + Panner2dWindow (ARDOUR::Panner&, int32_t height, uint32_t inputs); + + void reset (uint32_t n_inputs); + + private: + Panner2d widget; + + Gtk::HBox hpacker; + Gtk::VBox button_box; + Gtk::Button reset_button; + Gtk::ToggleButton bypass_button; + Gtk::ToggleButton mute_button; + Gtk::VBox spinner_box; + Gtk::VBox left_side; + + std::vector spinners; }; #endif /* __ardour_panner_2d_h__ */ -- cgit v1.2.3