Fix thinkos in cubasish theme
[ardour.git] / gtk2_ardour / panner_interface.cc
index 53a7535f4d2181e9d5a4897590f3e69b3f116430..99986f99da40df98a833f982b953db41ecf4c55d 100644 (file)
@@ -1,28 +1,32 @@
 /*
-    Copyright (C) 2011 Paul Davis
-
-    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., 675 Mass Ave, Cambridge, MA 02139, USA.
-
-*/
+ * Copyright (C) 2011-2012 Carl Hetherington <carl@carlh.net>
+ * Copyright (C) 2014-2017 Robin Gareus <robin@gareus.org>
+ *
* 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.h>
 #include "gtkmm2ext/keyboard.h"
+#include "gtkmm2ext/persistent_tooltip.h"
+
+#include "pbd/controllable.h"
+
 #include "panner_interface.h"
-#include "global_signals.h"
+#include "panner_editor.h"
 
-#include "i18n.h"
+#include "pbd/i18n.h"
 
 using namespace std;
 using namespace Gtk;
@@ -31,107 +35,119 @@ using namespace Gtkmm2ext;
 
 PannerInterface::PannerInterface (boost::shared_ptr<Panner> p)
        : _panner (p)
-       , _drag_data_window (0)
-       , _drag_data_label (0)
-        , _dragging (false)
+       , _tooltip (this)
+       , _send_mode (false)
+       , _editor (0)
 {
-        set_flags (Gtk::CAN_FOCUS);
+       set_flags (Gtk::CAN_FOCUS);
 
-        add_events (Gdk::ENTER_NOTIFY_MASK|Gdk::LEAVE_NOTIFY_MASK|
-                    Gdk::KEY_PRESS_MASK|Gdk::KEY_RELEASE_MASK|
-                    Gdk::BUTTON_PRESS_MASK|Gdk::BUTTON_RELEASE_MASK|
-                    Gdk::SCROLL_MASK|
-                    Gdk::POINTER_MOTION_MASK);
+       add_events (Gdk::ENTER_NOTIFY_MASK|Gdk::LEAVE_NOTIFY_MASK|
+                   Gdk::KEY_PRESS_MASK|Gdk::KEY_RELEASE_MASK|
+                   Gdk::BUTTON_PRESS_MASK|Gdk::BUTTON_RELEASE_MASK|
+                   Gdk::SCROLL_MASK|
+                   Gdk::POINTER_MOTION_MASK);
 
 }
 
 PannerInterface::~PannerInterface ()
 {
-       delete _drag_data_window;
+       delete _editor;
 }
 
-void
-PannerInterface::show_drag_data_window ()
+bool
+PannerInterface::on_enter_notify_event (GdkEventCrossing *)
 {
-        if (!_drag_data_window) {
-               _drag_data_window = new Window (WINDOW_POPUP);
-               _drag_data_window->set_name (X_("ContrastingPopup"));
-               _drag_data_window->set_position (WIN_POS_MOUSE);
-               _drag_data_window->set_decorated (false);
-               
-               _drag_data_label = manage (new Label);
-               _drag_data_label->set_use_markup (true);
-               
-               _drag_data_window->set_border_width (6);
-               _drag_data_window->add (*_drag_data_label);
-               _drag_data_label->show ();
-               
-               Window* toplevel = dynamic_cast<Window*> (get_toplevel());
-               if (toplevel) {
-                       _drag_data_window->set_transient_for (*toplevel);
-               }
+       grab_focus ();
+       Keyboard::magic_widget_grab_focus ();
+
+       if (!proxy_controllable ().expired ()) {
+               PBD::Controllable::GUIFocusChanged (proxy_controllable ());
        }
+       return false;
+}
 
-       set_drag_data ();
-       
-        if (!_drag_data_window->is_visible ()) {
-                /* move the window a little away from the mouse */
-                int rx, ry;
-                get_window()->get_origin (rx, ry);
-                _drag_data_window->move (rx, ry + get_height());
-                _drag_data_window->present ();
-        }
+bool
+PannerInterface::on_leave_notify_event (GdkEventCrossing *)
+{
+       Keyboard::magic_widget_drop_focus ();
+       if (!proxy_controllable ().expired ()) {
+               PBD::Controllable::GUIFocusChanged (boost::weak_ptr<PBD::Controllable> ());
+       }
+       return false;
+}
+
+bool
+PannerInterface::on_key_release_event (GdkEventKey*)
+{
+       return false;
 }
 
 void
-PannerInterface::hide_drag_data_window ()
+PannerInterface::value_change ()
 {
-        if (_drag_data_window) {
-                _drag_data_window->hide ();
-        }
+       set_tooltip ();
+       queue_draw ();
 }
 
 bool
-PannerInterface::on_enter_notify_event (GdkEventCrossing *)
+PannerInterface::on_button_press_event (GdkEventButton* ev)
 {
-       grab_focus ();
-       Keyboard::magic_widget_grab_focus ();
+       if (Gtkmm2ext::Keyboard::is_edit_event (ev)) {
+               edit ();
+               return true;
+       }
 
-       _drag_data_timeout = Glib::signal_timeout().connect (sigc::mem_fun (*this, &PannerInterface::drag_data_timeout), 500);
-       
        return false;
 }
 
 bool
-PannerInterface::drag_data_timeout ()
+PannerInterface::on_button_release_event (GdkEventButton* ev)
 {
-       show_drag_data_window ();
+       if (Gtkmm2ext::Keyboard::is_edit_event (ev)) {
+               /* We edited on the press, so claim the release */
+               return true;
+       }
+
        return false;
 }
 
-bool
-PannerInterface::on_leave_notify_event (GdkEventCrossing *)
+void
+PannerInterface::edit ()
 {
-       Keyboard::magic_widget_drop_focus ();
+       delete _editor;
+       _editor = editor ();
+       _editor->show ();
+}
 
-       _drag_data_timeout.disconnect ();
-       if (!_dragging) {
-               hide_drag_data_window ();
+void
+PannerInterface::set_send_drawing_mode(bool onoff) {
+       if (_send_mode != onoff) {
+               _send_mode = onoff;
+               queue_draw ();
        }
-       
-       return false;
 }
 
-bool
-PannerInterface::on_key_release_event (GdkEventKey*)
+PannerPersistentTooltip::PannerPersistentTooltip (Gtk::Widget* w)
+       : PersistentTooltip (w, true)
+       , _dragging (false)
 {
-       return false;
+
 }
 
 void
-PannerInterface::value_change ()
+PannerPersistentTooltip::target_start_drag ()
 {
-       set_drag_data ();
-       queue_draw ();
+       _dragging = true;
 }
 
+void
+PannerPersistentTooltip::target_stop_drag ()
+{
+       _dragging = false;
+}
+
+bool
+PannerPersistentTooltip::dragging () const
+{
+       return _dragging;
+}