X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=gtk2_ardour%2Fimageframe_time_axis_group.h;h=ba7790c04aa0bb831c8dc0b7082aff26ca8d4afb;hb=430bc18ba29ca4cb0d60fc9da53c88661b690920;hp=090a464b4b89aa487495df275765a6c903ced67f;hpb=a0663fbd278f4514ba26c4a4c0e2aa5ec2964dd9;p=ardour.git diff --git a/gtk2_ardour/imageframe_time_axis_group.h b/gtk2_ardour/imageframe_time_axis_group.h index 090a464b4b..ba7790c04a 100644 --- a/gtk2_ardour/imageframe_time_axis_group.h +++ b/gtk2_ardour/imageframe_time_axis_group.h @@ -15,7 +15,6 @@ along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - $Id$ */ #ifndef __ardour_imageframe_time_axis_group_h__ @@ -24,9 +23,11 @@ #include #include -#include +#include + #include #include +#include #include "imageframe_time_axis_view.h" class PublicEditor ; @@ -52,7 +53,7 @@ class ImageFrameTimeAxisGroup : public sigc::trackable * @param iftav the parent ImageFrameTimeAxis of this view helper * @param group_id the unique name/id of this group */ - ImageFrameTimeAxisGroup(ImageFrameTimeAxisView& iftav, std::string group_id) ; + ImageFrameTimeAxisGroup(ImageFrameTimeAxisView& iftav, const string & group_id) ; /** * Destructor @@ -71,7 +72,7 @@ class ImageFrameTimeAxisGroup : public sigc::trackable * @param new_name the new name of this group * @param src the identity of the object that initiated the change */ - void set_group_name(std::string new_name, void* src) ; + void set_group_name(const string & new_name, void* src) ; /** * Returns the id of this group @@ -137,7 +138,7 @@ class ImageFrameTimeAxisGroup : public sigc::trackable * @param num_channels the number of channles within the rgb_data * @param src the identity of the object that initiated the change */ - ImageFrameView* add_imageframe_item(std::string item_id, jack_nframes_t start, jack_nframes_t duration, unsigned char* rgb_data, uint32_t width, uint32_t height, uint32_t num_channels, void* src) ; + ImageFrameView* add_imageframe_item(const string & item_id, nframes_t start, nframes_t duration, unsigned char* rgb_data, uint32_t width, uint32_t height, uint32_t num_channels, void* src) ; /** * Returns the named ImageFrameView or 0 if the named view does not exist on this view helper @@ -145,7 +146,7 @@ class ImageFrameTimeAxisGroup : public sigc::trackable * @param item_id the unique id of the item to search for * @return the named ImageFrameView, or 0 if it is not held upon this view */ - ImageFrameView* get_named_imageframe_item(std::string item_id) ; + ImageFrameView* get_named_imageframe_item(const string & item_id) ; /** * Removes the currently selected ImageFrameView @@ -162,7 +163,7 @@ class ImageFrameTimeAxisGroup : public sigc::trackable * @param src the identity of the object that initiated the change * @see add_imageframe_view */ - ImageFrameView* remove_named_imageframe_item(std::string item_id, void* src) ; + ImageFrameView* remove_named_imageframe_item(const string & item_id, void* src) ; /** * Removes ifv from the list of ImageFrameViews upon this TimeAxis. @@ -252,7 +253,7 @@ class ImageFrameTimeAxisGroup : public sigc::trackable sigc::signal ImageFrameAdded ; /** Emitted when an ImageFrameView is removed from this group */ - sigc::signal ImageFrameRemoved ; + sigc::signal ImageFrameRemoved ; protected: