summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/stripable.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2016-06-05 15:11:43 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2016-06-05 16:33:01 -0400
commitd58cb3daa3f0e091a11e3846b28e83bcf0f93587 (patch)
tree236589d3d5d43da42f3086c1bb88d9be4f02f05f /libs/ardour/ardour/stripable.h
parente3e77475cd3e248652ccabd66aaf9ba6edeec3f1 (diff)
extensive changes to PresentationInfo API
Now handles color, partially.
Diffstat (limited to 'libs/ardour/ardour/stripable.h')
-rw-r--r--libs/ardour/ardour/stripable.h22
1 files changed, 2 insertions, 20 deletions
diff --git a/libs/ardour/ardour/stripable.h b/libs/ardour/ardour/stripable.h
index b21b98f2bb..e49767f50d 100644
--- a/libs/ardour/ardour/stripable.h
+++ b/libs/ardour/ardour/stripable.h
@@ -76,16 +76,8 @@ class LIBARDOUR_API Stripable : public SessionObject {
/* set just the order */
- void set_presentation_group_order (PresentationInfo::order_t, bool notify_class_listeners = true);
- void set_presentation_group_order_explicit (PresentationInfo::order_t);
-
- /* for things concerned about *this* route's RID */
-
- PBD::Signal0<void> PresentationInfoChanged;
-
- /* for things concerned about *any* route's RID changes */
-
- static PBD::Signal0<void> PresentationInfoChange;
+ void set_presentation_order (PresentationInfo::order_t, bool notify_class_listeners = true);
+ void set_presentation_order_explicit (PresentationInfo::order_t);
/***************************************************************
* Pure interface begins here
@@ -182,16 +174,6 @@ class LIBARDOUR_API Stripable : public SessionObject {
protected:
PresentationInfo _presentation_info;
-
- /* set the entire info. This should only be used in cases where the
- * derived could not supply the correct Flag and/or order information
- * in its constructor.
- */
-
- void set_presentation_info (PresentationInfo id, bool notify_class_listeners = true);
- void set_presentation_info_explicit (PresentationInfo);
-
- void add_state (XMLNode&) const;
};
struct PresentationInfoSorter {