X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Fpanner2d.h;h=e70f9faea546bde1c0e4ad7a379c0cd07eb09051;hb=6001b8d28dd764bada8b9198a5f91e0a2f5251f6;hp=b16a2a1a2f869ff0af0f68baa5c9fd8a99786096;hpb=e493b2b7c4fbbbfc457f02babf9546289b430177;p=ardour.git diff --git a/gtk2_ardour/panner2d.h b/gtk2_ardour/panner2d.h index b16a2a1a2f..e70f9faea5 100644 --- a/gtk2_ardour/panner2d.h +++ b/gtk2_ardour/panner2d.h @@ -15,7 +15,6 @@ along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - $Id$ */ #ifndef __ardour_panner_2d_h__ @@ -23,25 +22,37 @@ #include #include -#include -#include +#include -using std::map; -using std::string; +#include +#include +#include +#include +#include +#include +#include namespace ARDOUR { class Panner; } +namespace Gtk { + class Menu; + class CheckMenuItem; +} + +namespace Pango { + class Layout; +} + +class Panner2dWindow; + class Panner2d : public Gtk::DrawingArea { public: - Panner2d (ARDOUR::Panner&, int32_t width, int32_t height); + Panner2d (boost::shared_ptr, 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); @@ -59,37 +70,44 @@ 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); + + boost::shared_ptr get_panner() const { return panner; } + sigc::signal PuckMoved; sigc::signal TargetMoved; protected: - gint expose_event_impl (GdkEventExpose *); - gint button_press_event_impl (GdkEventButton *); - gint button_release_event_impl (GdkEventButton *); - gint motion_notify_event_impl (GdkEventMotion *); - void size_allocate_impl (GtkAllocation* alloc); + bool on_expose_event (GdkEventExpose *); + bool on_button_press_event (GdkEventButton *); + bool on_button_release_event (GdkEventButton *); + bool on_motion_notify_event (GdkEventMotion *); + void on_size_allocate (Gtk::Allocation& alloc); 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; + boost::shared_ptr panner; + Glib::RefPtr layout; - typedef map Targets; + typedef std::map Targets; Targets targets; Targets pucks; Target *drag_target; + int drag_x; + int drag_y; int drag_index; bool drag_is_puck; bool allow_x; @@ -108,8 +126,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 (boost::shared_ptr, 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__ */