X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fardour%2Fardour%2Fsession_object.h;h=eacb0c49e92e2433d0f77caa5ef006346b859ff7;hb=848e75aaeaa04a81883ed30bcd04abd862f9d1fd;hp=3a796c75b5711e65e38e635488728479cc752b10;hpb=e033ac94f08c2963b0dac13020ea6b6a6b99db01;p=ardour.git diff --git a/libs/ardour/ardour/session_object.h b/libs/ardour/ardour/session_object.h index 3a796c75b5..eacb0c49e9 100644 --- a/libs/ardour/ardour/session_object.h +++ b/libs/ardour/ardour/session_object.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2000-2007 Paul Davis + Copyright (C) 2000-2010 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 @@ -22,40 +22,49 @@ #include #include "pbd/statefuldestructible.h" +#include "pbd/signals.h" +#include "pbd/properties.h" + +#include "ardour/ardour.h" +#include "ardour/session_handle.h" namespace ARDOUR { +namespace Properties { + extern PBD::PropertyDescriptor name; +} + class Session; -/** An object associated with a Session. - * - * This is a few common things factored out of IO which weren't IO specific - * (to fix the problem with e.g. PluginInsert being an IO which it shouldn't be). +/** A named object associated with a Session. Objects derived from this class are + expected to be destroyed before the session calls drop_references(). */ -class SessionObject : public PBD::StatefulDestructible + +class SessionObject : public SessionHandleRef, public PBD::StatefulDestructible { -public: - SessionObject(Session& session, const std::string& name) - : _session(session) - , _name(name) - {} + public: + static void make_property_quarks (); - Session& session() const { return _session; } - const std::string& name() const { return _name; } + SessionObject (Session& session, const std::string& name) + : SessionHandleRef (session) + , _name (Properties::name, name) + { + add_property (_name); + } + + Session& session() const { return _session; } + std::string name() const { return _name; } virtual bool set_name (const std::string& str) { if (_name != str) { _name = str; - NameChanged(); + PropertyChanged (PBD::PropertyChange (Properties::name)); } return true; } - sigc::signal NameChanged; - -protected: - Session& _session; - std::string _name; + protected: + PBD::Property _name; }; } // namespace ARDOUR