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_marker_time_axis_view_h__
21 #define __ardour_marker_time_axis_view_h__
24 #include <gdkmm/color.h>
25 #include <libgnomecanvasmm/group.h>
27 #include "ardour/location.h"
28 #include "simplerect.h"
33 class ImageFrameView
;
36 class TimeAxisViewItem
;
39 * A view helper for handling MarkerView objects.
40 * This object is responsible for the time axis canvas view, and
41 * maintains the list of items that have been added to it
43 class MarkerTimeAxisView
: public sigc::trackable
46 //---------------------------------------------------------------------------------------//
47 // Constructor / Desctructor
50 * Construct a new MarkerTimeAxisView helper time axis helper
52 * @param mta the TimeAxsiView that this objbect is the helper for
54 MarkerTimeAxisView(MarkerTimeAxis
& mta
) ;
58 * Reposinsibly for destroying all marker items that may have been added to this time axis view
61 ~MarkerTimeAxisView () ;
63 //---------------------------------------------------------------------------------------//
64 // Parent/Child helper object accessors
67 * Returns the TimeAxisView thatt his object is acting as a helper for
69 * @return the TimeAxisView that this object is acting as a view helper for
71 MarkerTimeAxis
& trackview() { return _trackview
; }
76 ArdourCanvas::Item
*canvas_item() { return canvas_group
; }
79 //---------------------------------------------------------------------------------------//
83 * Sets the height of the time axis view and the item upon it
85 * @param height the new height
87 int set_height(gdouble height
) ;
90 * Sets the position of this view helper on the canvas
92 * @param x the x position upon the canvas
93 * @param y the y position upon the canvas
95 int set_position(gdouble x
, gdouble y
) ;
98 * Sets the current samples per unit.
99 * this method tells each item upon the time axis of the change
101 * @param spu the new samples per canvas unit value
103 int set_samples_per_unit(gdouble spu
) ;
106 * Returns the current samples per unit of this time axis view helper
108 * @return the current samples per unit of this time axis view helper
110 gdouble
get_samples_per_unit() { return _samples_per_unit
; }
113 * Sets the color of the items contained upon this view helper
115 * @param color the new base color
117 void apply_color(Gdk::Color
& color
) ;
119 //---------------------------------------------------------------------------------------//
120 // Child MarkerView Accessors/Mutators
123 * Adds a marker view to the list of items upon this time axis view helper
124 * the new MarkerView is returned
126 * @param ifv the ImageFrameView that the new item is marking up
127 * @param mark_text the text to be displayed uopn the new marker item
128 * @param mark_id the unique id of the new item
129 * @param start the position the new item should be placed upon the time line
130 * @param duration the duration the new item should be placed upon the timeline
131 * @param src the identity of the object that initiated the change
133 MarkerView
* add_marker_view(ImageFrameView
* ifv
, std::string mark_type
, std::string mark_id
, nframes_t start
, nframes_t dur
, void* src
) ;
136 * Returns the named MarkerView or 0 if the named marker does not exist
138 * @param item_id the unique id of the item to search for
139 * @return the named MarkerView, or 0 if it is not held upon this view
141 MarkerView
* get_named_marker_view(std::string item_id
) ;
144 * Removes the currently selected MarverView
145 * Note that this method actually destroys the MarkerView too.
146 * We assume that since we own the object, we are allowed to do this
148 * @param src the identity of the object that initiated the change
149 * @see add_marker_view
151 void remove_selected_marker_view(void* src
) ;
154 * Removes and returns the named MarkerView from the list of MarkerView held by this view helper
156 * @param item_id the MarkerView unique id to remove
157 * @param src the identity of the object that initiated the change
158 * @see add_marker_view
160 MarkerView
* remove_named_marker_view(std::string item_id
, void* src
) ;
163 * Removes mv from the list of MarkerView upon this TimeAxis
165 * @param mv the MarkerView to remove
166 * @param src the identity of the object that initiated the change
168 void remove_marker_view(MarkerView
* item
, void* src
) ;
170 //---------------------------------------------------------------------------------------//
171 // Selected item methods
174 * Sets the currently selected item upon this time axis
176 * @param mv the item to set selected
178 void set_selected_time_axis_item(MarkerView
* mv
) ;
181 * Clears any selected item upon this time axis
184 void clear_selected_time_axis_item() ;
187 * Returnsthe currently selected item upon this time axis
189 * @return the currently selected item pon this time axis
191 MarkerView
* get_selected_time_axis_item() ;
195 * Sets the duration of the selected MarkerView to the specified number of seconds
197 * @param sec the duration to set the MArkerView to, in seconds
199 void set_marker_duration_sec(double sec
) ;
201 //---------------------------------------------------------------------------------//
204 /** Emitted when a MarkerView is Added */
205 sigc::signal
<void,MarkerView
*,void*> MarkerViewAdded
;
207 /** Emitted when a MarkerView Item is removed */
208 sigc::signal
<void,std::string
,void*> MarkerViewRemoved
;
212 * convenience method to re-get the samples per unit and tell items upon this view
215 void reset_samples_per_unit() ;
217 /** The list of items held by this time axis view helper */
218 typedef std::list
<MarkerView
*> MarkerViewList
;
219 MarkerViewList marker_view_list
;
221 /** the currently selected time axis item upon this time axis */
222 MarkerView
* selected_time_axis_item
;
224 /* the TimeAxisView that this object is acting as the view helper for */
225 MarkerTimeAxis
& _trackview
;
227 ArdourCanvas::Group
*canvas_group
;
228 ArdourCanvas::SimpleRect
*canvas_rect
; /* frame around the whole thing */
230 /** the current samples per unit */
231 double _samples_per_unit
;
233 /* XXX why are these different? */
234 Gdk::Color region_color
;
235 uint32_t stream_base_color
;
237 }; /* class MarkerTimeAxisView */
239 #endif /* __ardour_marker_time_axis_view_h__ */