Zoom session when the mouse pointer is moved up and down during a playhead drag.
[ardour2.git] / gtk2_ardour / imageframe_time_axis_group.h
blobc1ec26e912b8a391e919221bc163f52436a6c07e
1 /*
2 Copyright (C) 2003 Paul Davis
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 #ifndef __ardour_imageframe_time_axis_group_h__
21 #define __ardour_imageframe_time_axis_group_h__
23 #include <list>
24 #include <cmath>
26 #include <gdkmm/color.h>
28 #include <libgnomecanvas/libgnomecanvas.h>
29 #include <jack/jack.h>
30 #include "ardour/types.h"
31 #include "imageframe_time_axis_view.h"
33 class PublicEditor ;
34 class ImageFrameView ;
36 /**
37 * ImageFrameTimeAxisGroup defines a group/scene of ImageFrame view that can appear upon a time axis
38 * At the moment this is a bit bare, we really want to add some kind of time constraints upon
39 * items atht are added to the group, ie bounded by the start and end of the scene, which itself
40 * needs fleshed out.
41 * A viewable object may also be useful...
44 class ImageFrameTimeAxisGroup : public sigc::trackable
46 public:
47 //---------------------------------------------------------------------------------------//
48 // Constructor / Desctructor
50 /**
51 * Constructs a new ImageFrameTimeAxisGroup.
53 * @param iftav the parent ImageFrameTimeAxis of this view helper
54 * @param group_id the unique name/id of this group
56 ImageFrameTimeAxisGroup(ImageFrameTimeAxisView& iftav, const std::string & group_id) ;
58 /**
59 * Destructor
60 * Responsible for destroying any Items that may have been added to this group
63 virtual ~ImageFrameTimeAxisGroup() ;
66 //---------------------------------------------------------------------------------------//
67 // Name/Id Accessors/Mutators
69 /**
70 * Set the name/Id of this group.
72 * @param new_name the new name of this group
73 * @param src the identity of the object that initiated the change
75 void set_group_name(const std::string & new_name, void* src) ;
77 /**
78 * Returns the id of this group
79 * The group id must be unique upon a time axis
81 * @return the id of this group
83 std::string get_group_name() const ;
86 //---------------------------------------------------------------------------------------//
87 // Parent/Child helper object accessors
89 /**
90 * Returns the TimeAxisView thatt his object is acting as a helper for
92 * @return the TimeAxisView that this object is acting as a view helper for
94 ImageFrameTimeAxisView& get_view() const { return _view_helper ; }
98 //---------------------------------------------------------------------------------------//
99 // ui methods & data
102 * Sets the height of the time axis view and the item upon it
104 * @param height the new height
106 int set_item_heights(gdouble) ;
109 * Sets the current samples per unit.
110 * this method tells each item upon the time axis of the change
112 * @param spu the new samples per canvas unit value
114 int set_item_samples_per_units(gdouble spu) ;
117 * Sets the color of the items contained uopn this view helper
119 * @param color the new base color
121 void apply_item_color(Gdk::Color&) ;
124 //---------------------------------------------------------------------------------------//
125 // child ImageFrameView methods
128 * Adds an ImageFrameView to the list of items upon this time axis view helper
129 * the new ImageFrameView is returned
131 * @param item_id the unique id of the new item
132 * @param image_id the id/name of the image data we are usin
133 * @param start the position the new item should be placed upon the time line
134 * @param duration the duration the new item should be placed upon the timeline
135 * @param rgb_data the rgb data of the image
136 * @param width the original image width of the rgb_data (not the size to display)
137 * @param height the irigianl height of the rgb_data
138 * @param num_channels the number of channles within the rgb_data
139 * @param src the identity of the object that initiated the change
141 ImageFrameView* add_imageframe_item(const std::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) ;
144 * Returns the named ImageFrameView or 0 if the named view does not exist on this view helper
146 * @param item_id the unique id of the item to search for
147 * @return the named ImageFrameView, or 0 if it is not held upon this view
149 ImageFrameView* get_named_imageframe_item(const std::string & item_id) ;
152 * Removes the currently selected ImageFrameView
154 * @param src the identity of the object that initiated the change
155 * @see add_imageframe_view
157 void remove_selected_imageframe_item(void* src) ;
160 * Removes and returns the named ImageFrameView from the list of ImageFrameViews held by this view helper
162 * @param item_id the ImageFrameView unique id to remove
163 * @param src the identity of the object that initiated the change
164 * @see add_imageframe_view
166 ImageFrameView* remove_named_imageframe_item(const std::string & item_id, void* src) ;
169 * Removes ifv from the list of ImageFrameViews upon this TimeAxis.
170 * if ifv is not upon this TimeAxis, this method takes no action
172 * @param ifv the ImageFrameView to remove
174 void remove_imageframe_item(ImageFrameView*, void* src) ;
177 //---------------------------------------------------------------------------------------//
178 // Selected group methods
181 // removed in favour of a track level selectewd item
182 // this is simply easier to manage a singularly selected item, rather than
183 // a selected item within each group
186 * Sets the currently selected item upon this time axis
188 * @param ifv the item to set selected
190 //void set_selected_imageframe_item(ImageFrameView* ifv) ;
193 * Sets the currently selected item upon this time axis to the named item
195 * @param item_id the name/id of the item to set selected
197 //void set_selected_imageframe_item(std::string item_id) ;
200 * Returns the currently selected item upon this time axis
202 * @return the currently selected item pon this time axis
204 //ImageFrameView* get_selected_imageframe_item() ;
207 * Returns whether this grou pis currently selected
209 * @returns true if this group is currently selected
211 bool get_selected() const ;
214 * Sets he selected state of this group
216 * @param yn set true if this group is selected, false otherwise
218 void set_selected(bool yn) ;
220 //---------------------------------------------------------------------------------------//
221 // Handle group removal
224 * Handles the Removal of this VisualTimeAxis
225 * This _needs_ to be called to alert others of the removal properly, ie where the source
226 * of the removal came from.
228 * XXX Although im not too happy about this method of doing things, I cant think of a cleaner method
229 * just now to capture the source of the removal
231 * @param src the identity of the object that initiated the change
233 virtual void remove_this_group(void* src) ;
235 //---------------------------------------------------------------------------------//
236 // Emitted Signals
238 static sigc::signal<void,ImageFrameTimeAxisGroup*> CatchDeletion;
241 * Emitted when this Group has been removed
242 * This is different to the CatchDeletion signal in that this signal
243 * is emitted during the deletion of this Time Axis, and not during
244 * the destructor, this allows us to capture the source of the deletion
245 * event
247 sigc::signal<void,std::string,void*> GroupRemoved ;
249 /** Emitted when we have changed the name of this TimeAxis */
250 sigc::signal<void,std::string,std::string,void*> NameChanged ;
252 /** Emitted when an ImageFrameView is added to this group */
253 sigc::signal<void, ImageFrameView*, void*> ImageFrameAdded ;
255 /** Emitted when an ImageFrameView is removed from this group */
256 sigc::signal<void, const std::string &, const std::string &, const std::string &, void*> ImageFrameRemoved ;
258 protected:
261 private:
263 * convenience method to re-get the samples per unit and tell items upon this view
266 void reset_samples_per_unit() ;
269 * Callback used to remove this group during the gtk idle loop
270 * This is used to avoid deleting the obejct while inside the remove_this_group
271 * method
273 * @param group the ImageFrameTimeAxisGroup to remove
274 * @param src the identity of the object that initiated the change
276 static gint idle_remove_this_group(ImageFrameTimeAxisGroup* group, void* src) ;
278 /** The list of ImageFrameViews held by this view helper */
279 typedef std::list<ImageFrameView *> ImageFrameViewList ;
280 ImageFrameViewList imageframe_views ;
282 /** the currently selected time axis item upon this time axis */
283 ImageFrameView* selected_imageframe_item ;
285 /** the view helper that this object is acting as a container upon on */
286 ImageFrameTimeAxisView& _view_helper ;
288 /** the is of this group */
289 std::string _group_id ;
291 /* XXX why are these different? */
292 Gdk::Color region_color ;
293 uint32_t stream_base_color ;
295 /** indicates if this group is currently selected */
296 bool is_selected ;
298 } ; /* class ImageFrameTimeAxisGroup */
300 #endif /* __ardour_imageframe_time_axis_group_h__ */