the missing flush call for plugins
[ardour2.git] / gtk2_ardour / marker_time_axis_view.cc
blobfaa8fb0eaded2b72218b31b64fc3bdedf7510efc
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 #include <algorithm>
22 #include <gtkmm.h>
23 #include <gtkmm2ext/gtk_ui.h>
25 #include "marker_time_axis_view.h"
26 #include "marker_time_axis.h"
27 #include "marker_view.h"
28 #include "imageframe_view.h"
29 #include "imageframe_time_axis.h"
30 #include "canvas-simplerect.h"
31 #include "public_editor.h"
32 #include "rgb_macros.h"
33 #include "gui_thread.h"
34 #include "ardour_ui.h"
36 #include "i18n.h"
38 using namespace ARDOUR ;
39 using namespace Editing;
41 //---------------------------------------------------------------------------------------//
42 // Constructor / Desctructor
44 /**
45 * Construct a new MarkerTimeAxisView helper time axis helper
47 * @param mta the TimeAxsiView that this objbect is the helper for
49 MarkerTimeAxisView::MarkerTimeAxisView(MarkerTimeAxis& tv)
50 : _trackview (tv)
52 region_color = _trackview.color();
53 stream_base_color = ARDOUR_UI::config()->canvasvar_MarkerTrack.get();
55 canvas_group = new ArdourCanvas::Group (*_trackview.canvas_display);
57 canvas_rect = new ArdourCanvas::SimpleRect (*canvas_group);
58 canvas_rect->property_x1() = 0.0;
59 canvas_rect->property_y1() = 0.0;
60 canvas_rect->property_x2() = max_frames;
61 canvas_rect->property_y2() = (double)20;
62 canvas_rect->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_MarkerTrack.get();
63 canvas_rect->property_fill_color_rgba() = stream_base_color;
65 canvas_rect->signal_event().connect (bind (mem_fun (_trackview.editor, &PublicEditor::canvas_marker_time_axis_view_event), canvas_rect, &_trackview));
67 _samples_per_unit = _trackview.editor.get_current_zoom() ;
69 _trackview.editor.ZoomChanged.connect (mem_fun(*this, &MarkerTimeAxisView::reset_samples_per_unit));
72 /**
73 * Destructor
74 * Reposinsibly for destroying all marker items that may have been added to this time axis view
77 MarkerTimeAxisView::~MarkerTimeAxisView()
79 // destroy everything upon this view
80 for(MarkerViewList::iterator iter = marker_view_list.begin(); iter != marker_view_list.end(); ++iter)
82 MarkerView* mv = (*iter) ;
84 MarkerViewList::iterator next = iter ;
85 next++ ;
86 marker_view_list.erase(iter) ;
88 delete mv ;
89 mv = 0 ;
91 iter = next ;
94 if(canvas_rect)
96 delete canvas_rect;
97 canvas_rect = 0 ;
100 if(canvas_group)
102 delete canvas_group;
103 canvas_group = 0 ;
108 //---------------------------------------------------------------------------------------//
109 // ui methods & data
112 * Sets the height of the time axis view and the item upon it
114 * @param height the new height
117 MarkerTimeAxisView::set_height(gdouble h)
119 if (h < 10.0 || h > 1000.0)
121 return -1 ;
124 canvas_rect->property_y2() = h;
126 for (MarkerViewList::iterator i = marker_view_list.begin(); i != marker_view_list.end(); ++i)
128 (*i)->set_height(h) ;
131 return 0;
135 * Sets the position of this view helper on the canvas
137 * @param x the x position upon the canvas
138 * @param y the y position upon the canvas
141 MarkerTimeAxisView::set_position(gdouble x, gdouble y)
143 canvas_group->property_x() = x;
144 canvas_group->property_y() = y;
145 return 0;
149 * Sets the current samples per unit.
150 * this method tells each item upon the time axis of the change
152 * @param spu the new samples per canvas unit value
155 MarkerTimeAxisView::set_samples_per_unit(gdouble spp)
157 if(spp < 1.0) {
158 return -1 ;
161 _samples_per_unit = spp ;
163 for(MarkerViewList::iterator i = marker_view_list.begin(); i != marker_view_list.end(); ++i)
165 (*i)->set_samples_per_unit(spp) ;
167 return(0) ;
171 * Sets the color of the items contained upon this view helper
173 * @param color the new base color
175 void
176 MarkerTimeAxisView::apply_color(Gdk::Color& color)
178 region_color = color;
180 for (MarkerViewList::iterator i = marker_view_list.begin(); i != marker_view_list.end(); i++)
182 (*i)->set_color (region_color) ;
187 //---------------------------------------------------------------------------------------//
188 // Child MarkerView Accessors/Mutators
191 * Adds a marker view to the list of items upon this time axis view helper
192 * the new MarkerView is returned
194 * @param ifv the ImageFrameView that the new item is marking up
195 * @param mark_text the text to be displayed uopn the new marker item
196 * @param mark_id the unique id of the new item
197 * @param start the position the new item should be placed upon the time line
198 * @param duration the duration the new item should be placed upon the timeline
199 * @param src the identity of the object that initiated the change
201 MarkerView*
202 MarkerTimeAxisView::add_marker_view(ImageFrameView* ifv, std::string mark_type, std::string mark_id, nframes_t start, nframes_t dur, void* src)
204 if(ifv->has_marker_view_item(mark_id))
206 return(0) ;
209 MarkerView* mv = new MarkerView(canvas_group,
210 &_trackview,
211 ifv,
212 _trackview.editor.get_current_zoom(),
213 region_color,
214 mark_type,
215 mark_id,
216 start,
217 dur) ;
219 ifv->add_marker_view_item(mv, src) ;
220 marker_view_list.push_front(mv) ;
222 mv->GoingAway.connect(bind (mem_fun(*this,&MarkerTimeAxisView::remove_marker_view), (void*)this)) ;
224 MarkerViewAdded(mv,src) ; /* EMIT_SIGNAL */
226 return(mv) ;
230 * Returns the named MarkerView or 0 if the named marker does not exist
232 * @param item_id the unique id of the item to search for
233 * @return the named MarkerView, or 0 if it is not held upon this view
235 MarkerView*
236 MarkerTimeAxisView::get_named_marker_view(std::string item_id)
238 MarkerView* mv = 0 ;
240 for(MarkerViewList::iterator i = marker_view_list.begin(); i != marker_view_list.end(); ++i)
242 if(((MarkerView*)*i)->get_item_name() == item_id)
244 mv = ((MarkerView*)*i) ;
245 break ;
248 return(mv) ;
252 * Removes the currently selected MarverView
253 * Note that this method actually destroys the MarkerView too.
254 * We assume that since we own the object, we are allowed to do this
256 * @param src the identity of the object that initiated the change
257 * @see add_marker_view
259 void
260 MarkerTimeAxisView::remove_selected_marker_view(void* src)
262 std::string removed ;
264 if (selected_time_axis_item)
266 MarkerViewList::iterator i ;
267 if((i = find (marker_view_list.begin(), marker_view_list.end(), selected_time_axis_item)) != marker_view_list.end())
269 marker_view_list.erase(i) ;
271 MarkerViewRemoved(selected_time_axis_item->get_item_name(),src) ; /* EMIT_SIGNAL */
273 delete(selected_time_axis_item) ;
274 selected_time_axis_item = 0 ;
277 else
279 //No selected marker view
284 * Removes and returns the named MarkerView from the list of MarkerView held by this view helper
286 * @param item_id the MarkerView unique id to remove
287 * @param src the identity of the object that initiated the change
288 * @see add_marker_view
290 MarkerView*
291 MarkerTimeAxisView::remove_named_marker_view(std::string item_id, void* src)
293 MarkerView* mv = 0 ;
295 MarkerViewList::iterator i = marker_view_list.begin() ;
297 for(MarkerViewList::iterator iter = marker_view_list.begin(); iter != marker_view_list.end(); ++iter)
299 if(((MarkerView*)*i)->get_item_name() == item_id)
301 mv = ((MarkerView*)*i) ;
302 marker_view_list.erase(i) ;
304 MarkerViewRemoved(mv->get_item_name(), src) ; /* EMIT_SIGNAL */
306 // break from the for loop
307 break;
309 i++ ;
312 return(mv) ;
316 * Removes mv from the list of MarkerView upon this TimeAxis
318 * @param mv the MarkerView to remove
319 * @param src the identity of the object that initiated the change
321 void
322 MarkerTimeAxisView::remove_marker_view(MarkerView* mv, void* src)
324 ENSURE_GUI_THREAD(bind (mem_fun(*this, &MarkerTimeAxisView::remove_marker_view), mv, src));
326 MarkerViewList::iterator i;
328 if((i = find (marker_view_list.begin(), marker_view_list.end(), mv)) != marker_view_list.end()) {
329 marker_view_list.erase(i) ;
331 // Assume this remove happened locally, else use remove_named_marker_time_axis
332 // let listeners know that the named MarkerTimeAxis has been removed
333 MarkerViewRemoved(mv->get_item_name(), src) ; /* EMIT_SIGNAL */
339 * Sets the duration of the selected MarkerView to the specified number of seconds
341 * @param sec the duration to set the MArkerView to, in seconds
343 void
344 MarkerTimeAxisView::set_marker_duration_sec(double sec)
346 if(get_selected_time_axis_item() != 0)
348 get_selected_time_axis_item()->set_duration((nframes_t) (sec * _trackview.editor.current_session()->frame_rate()), this) ;
353 //---------------------------------------------------------------------------------------//
354 // Selected item methods
357 * Sets the currently selected item upon this time axis
359 * @param mv the item to set selected
361 void
362 MarkerTimeAxisView::set_selected_time_axis_item(MarkerView* mv)
364 selected_time_axis_item = mv ;
368 * Clears any selected item upon this time axis
371 void
372 MarkerTimeAxisView::clear_selected_time_axis_item()
374 selected_time_axis_item = 0 ;
378 * Returnsthe currently selected item upon this time axis
380 * @return the currently selected item pon this time axis
382 MarkerView*
383 MarkerTimeAxisView::get_selected_time_axis_item()
385 return(selected_time_axis_item) ;
392 * convenience method to re-get the samples per unit and tell items upon this view
395 void
396 MarkerTimeAxisView::reset_samples_per_unit ()
398 set_samples_per_unit(_trackview.editor.get_current_zoom()) ;