move gui_changed() signal from Route to Stripable
This commit is contained in:
parent
5c6846a169
commit
fcf49de774
@ -368,10 +368,6 @@ public:
|
|||||||
/** Emitted with the process lock held */
|
/** Emitted with the process lock held */
|
||||||
PBD::Signal0<void> io_changed;
|
PBD::Signal0<void> io_changed;
|
||||||
|
|
||||||
/* gui's call this for their own purposes. */
|
|
||||||
|
|
||||||
PBD::Signal2<void,std::string,void*> gui_changed;
|
|
||||||
|
|
||||||
/* stateful */
|
/* stateful */
|
||||||
|
|
||||||
XMLNode& get_state();
|
XMLNode& get_state();
|
||||||
|
@ -79,11 +79,14 @@ class LIBARDOUR_API Stripable : public SessionObject {
|
|||||||
void set_presentation_order (PresentationInfo::order_t, bool notify_class_listeners = true);
|
void set_presentation_order (PresentationInfo::order_t, bool notify_class_listeners = true);
|
||||||
void set_presentation_order_explicit (PresentationInfo::order_t);
|
void set_presentation_order_explicit (PresentationInfo::order_t);
|
||||||
|
|
||||||
|
/* gui's call this for their own purposes. */
|
||||||
|
|
||||||
|
PBD::Signal2<void,std::string,void*> gui_changed;
|
||||||
|
|
||||||
/***************************************************************
|
/***************************************************************
|
||||||
* Pure interface begins here
|
* Pure interface begins here
|
||||||
***************************************************************/
|
***************************************************************/
|
||||||
|
|
||||||
|
|
||||||
virtual boost::shared_ptr<PeakMeter> peak_meter() = 0;
|
virtual boost::shared_ptr<PeakMeter> peak_meter() = 0;
|
||||||
virtual boost::shared_ptr<const PeakMeter> peak_meter() const = 0;
|
virtual boost::shared_ptr<const PeakMeter> peak_meter() const = 0;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user