mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-04 20:55:48 +01:00
highlight send-panner
This commit is contained in:
parent
472d0ad2c6
commit
1f46e75ac9
9 changed files with 62 additions and 2 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue