summaryrefslogtreecommitdiff
path: root/gtk2_ardour/marker_time_axis_view.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-10-14 16:10:01 +0000
committerDavid Robillard <d@drobilla.net>2009-10-14 16:10:01 +0000
commitbb9cc45cd22af67ac275a5e73accbe14fee664d8 (patch)
treee52977d3eae6ff07b856088041a080a2fa3e5b79 /gtk2_ardour/marker_time_axis_view.h
parent8c4ce1e2ce35571aed5a686671431fdfffae7f8c (diff)
Strip trailing whitespace and fix other whitespace errors (e.g. space/tab mixing). Whitespace changes only.
Vimmers, try let c_space_errors = 1 in your .vimrc to highlight this kind of stuff in red. I don't know the emacs equivalent... git-svn-id: svn://localhost/ardour2/branches/3.0@5773 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/marker_time_axis_view.h')
-rw-r--r--gtk2_ardour/marker_time_axis_view.h64
1 files changed, 32 insertions, 32 deletions
diff --git a/gtk2_ardour/marker_time_axis_view.h b/gtk2_ardour/marker_time_axis_view.h
index ae7cddfd59..caf022178b 100644
--- a/gtk2_ardour/marker_time_axis_view.h
+++ b/gtk2_ardour/marker_time_axis_view.h
@@ -1,5 +1,5 @@
/*
- Copyright (C) 2003 Paul Davis
+ Copyright (C) 2003 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
@@ -38,44 +38,44 @@ class TimeAxisViewItem ;
/**
* A view helper for handling MarkerView objects.
* This object is responsible for the time axis canvas view, and
- * maintains the list of items that have been added to it
+ * maintains the list of items that have been added to it
*/
class MarkerTimeAxisView : public sigc::trackable
{
public:
//---------------------------------------------------------------------------------------//
// Constructor / Desctructor
-
+
/**
* Construct a new MarkerTimeAxisView helper time axis helper
*
* @param mta the TimeAxsiView that this objbect is the helper for
*/
MarkerTimeAxisView(MarkerTimeAxis& mta) ;
-
+
/**
* Destructor
* Reposinsibly for destroying all marker items that may have been added to this time axis view
*
*/
~MarkerTimeAxisView () ;
-
+
//---------------------------------------------------------------------------------------//
// Parent/Child helper object accessors
-
+
/**
* Returns the TimeAxisView thatt his object is acting as a helper for
*
* @return the TimeAxisView that this object is acting as a view helper for
*/
MarkerTimeAxis& trackview() { return _trackview; }
-
+
/**
*
*/
ArdourCanvas::Item *canvas_item() { return canvas_group; }
-
-
+
+
//---------------------------------------------------------------------------------------//
// ui methods & data
@@ -85,7 +85,7 @@ class MarkerTimeAxisView : public sigc::trackable
* @param height the new height
*/
int set_height(gdouble height) ;
-
+
/**
* Sets the position of this view helper on the canvas
*
@@ -93,22 +93,22 @@ class MarkerTimeAxisView : public sigc::trackable
* @param y the y position upon the canvas
*/
int set_position(gdouble x, gdouble y) ;
-
+
/**
* Sets the current samples per unit.
* this method tells each item upon the time axis of the change
- *
+ *
* @param spu the new samples per canvas unit value
*/
int set_samples_per_unit(gdouble spu) ;
-
+
/**
* Returns the current samples per unit of this time axis view helper
*
* @return the current samples per unit of this time axis view helper
*/
gdouble get_samples_per_unit() { return _samples_per_unit; }
-
+
/**
* Sets the color of the items contained upon this view helper
*
@@ -118,7 +118,7 @@ class MarkerTimeAxisView : public sigc::trackable
//---------------------------------------------------------------------------------------//
// Child MarkerView Accessors/Mutators
-
+
/**
* Adds a marker view to the list of items upon this time axis view helper
* the new MarkerView is returned
@@ -131,7 +131,7 @@ class MarkerTimeAxisView : public sigc::trackable
* @param src the identity of the object that initiated the change
*/
MarkerView* add_marker_view(ImageFrameView* ifv, std::string mark_type, std::string mark_id, nframes_t start, nframes_t dur, void* src) ;
-
+
/**
* Returns the named MarkerView or 0 if the named marker does not exist
*
@@ -139,7 +139,7 @@ class MarkerTimeAxisView : public sigc::trackable
* @return the named MarkerView, or 0 if it is not held upon this view
*/
MarkerView* get_named_marker_view(std::string item_id) ;
-
+
/**
* Removes the currently selected MarverView
* Note that this method actually destroys the MarkerView too.
@@ -149,7 +149,7 @@ class MarkerTimeAxisView : public sigc::trackable
* @see add_marker_view
*/
void remove_selected_marker_view(void* src) ;
-
+
/**
* Removes and returns the named MarkerView from the list of MarkerView held by this view helper
*
@@ -158,7 +158,7 @@ class MarkerTimeAxisView : public sigc::trackable
* @see add_marker_view
*/
MarkerView* remove_named_marker_view(std::string item_id, void* src) ;
-
+
/**
* Removes mv from the list of MarkerView upon this TimeAxis
*
@@ -166,7 +166,7 @@ class MarkerTimeAxisView : public sigc::trackable
* @param src the identity of the object that initiated the change
*/
void remove_marker_view(MarkerView* item, void* src) ;
-
+
//---------------------------------------------------------------------------------------//
// Selected item methods
@@ -176,21 +176,21 @@ class MarkerTimeAxisView : public sigc::trackable
* @param mv the item to set selected
*/
void set_selected_time_axis_item(MarkerView* mv) ;
-
+
/**
* Clears any selected item upon this time axis
*
*/
void clear_selected_time_axis_item() ;
-
+
/**
* Returnsthe currently selected item upon this time axis
*
* @return the currently selected item pon this time axis
*/
MarkerView* get_selected_time_axis_item() ;
-
-
+
+
/**
* Sets the duration of the selected MarkerView to the specified number of seconds
*
@@ -200,30 +200,30 @@ class MarkerTimeAxisView : public sigc::trackable
//---------------------------------------------------------------------------------//
// Emitted Signals
-
+
/** Emitted when a MarkerView is Added */
sigc::signal<void,MarkerView*,void*> MarkerViewAdded ;
-
+
/** Emitted when a MarkerView Item is removed */
sigc::signal<void,std::string,void*> MarkerViewRemoved ;
-
+
private:
/**
* convenience method to re-get the samples per unit and tell items upon this view
*
*/
void reset_samples_per_unit() ;
-
+
/** The list of items held by this time axis view helper */
typedef std::list<MarkerView *> MarkerViewList ;
MarkerViewList marker_view_list;
-
+
/** the currently selected time axis item upon this time axis */
MarkerView* selected_time_axis_item ;
-
+
/* the TimeAxisView that this object is acting as the view helper for */
MarkerTimeAxis& _trackview ;
-
+
ArdourCanvas::Group *canvas_group ;
ArdourCanvas::SimpleRect *canvas_rect ; /* frame around the whole thing */
@@ -233,7 +233,7 @@ class MarkerTimeAxisView : public sigc::trackable
/* XXX why are these different? */
Gdk::Color region_color;
uint32_t stream_base_color;
-
+
}; /* class MarkerTimeAxisView */
#endif /* __ardour_marker_time_axis_view_h__ */