highlight send-panner

This commit is contained in:
Robin Gareus 2014-06-17 15:51:49 +02:00
parent 472d0ad2c6
commit 1f46e75ac9
9 changed files with 62 additions and 2 deletions

View file

@ -34,6 +34,7 @@ using namespace Gtkmm2ext;
PannerInterface::PannerInterface (boost::shared_ptr<Panner> p)
: _panner (p)
, _tooltip (this)
, _send_mode (false)
, _editor (0)
{
set_flags (Gtk::CAN_FOCUS);
@ -109,6 +110,14 @@ PannerInterface::edit ()
_editor->show ();
}
void
PannerInterface::set_send_drawing_mode(bool onoff) {
if (_send_mode != onoff) {
_send_mode = onoff;
queue_draw ();
}
}
PannerPersistentTooltip::PannerPersistentTooltip (Gtk::Widget* w)
: PersistentTooltip (w)
, _dragging (false)