summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2014-01-06 15:32:37 -0500
committerDavid Robillard <d@drobilla.net>2014-01-10 20:51:54 -0500
commit0fe968a140cab6270b9480059cb173e7f7b33322 (patch)
tree0ff3e1a832e33c9d2fb1ddeb6bca09970d236207
parent0bdf4c25cfee8cf2408d2b1367f2c5e5c8c509b1 (diff)
Fix whitespace (no functional changes).
-rw-r--r--gtk2_ardour/automation_line.cc45
-rw-r--r--gtk2_ardour/automation_line.h64
-rw-r--r--gtk2_ardour/midi_automation_line.cc6
-rw-r--r--gtk2_ardour/midi_automation_line.h8
4 files changed, 57 insertions, 66 deletions
diff --git a/gtk2_ardour/automation_line.cc b/gtk2_ardour/automation_line.cc
index 7e60bff2e3..993b4779dd 100644
--- a/gtk2_ardour/automation_line.cc
+++ b/gtk2_ardour/automation_line.cc
@@ -63,8 +63,8 @@ using namespace Gnome; // for Canvas
* This will not be deleted by AutomationLine.
*/
AutomationLine::AutomationLine (const string& name, TimeAxisView& tv, ArdourCanvas::Group& parent,
- boost::shared_ptr<AutomationList> al,
- Evoral::TimeConverter<double, framepos_t>* converter)
+ boost::shared_ptr<AutomationList> al,
+ Evoral::TimeConverter<double, framepos_t>* converter)
: trackview (tv)
, _name (name)
, alist (al)
@@ -173,7 +173,7 @@ AutomationLine::control_point_box_size ()
{
if (alist->interpolation() == AutomationList::Discrete) {
return max((_height*4.0) / (double)(alist->parameter().max() - alist->parameter().min()),
- 4.0);
+ 4.0);
}
if (_height > TimeAxisView::preset_height (HeightLarger)) {
@@ -251,8 +251,7 @@ AutomationLine::modify_point_y (ControlPoint& cp, double y)
trackview.editor().session()->begin_reversible_command (_("automation event move"));
trackview.editor().session()->add_command (
- new MementoCommand<AutomationList> (memento_command_binder(), &get_state(), 0)
- );
+ new MementoCommand<AutomationList> (memento_command_binder(), &get_state(), 0));
cp.move_to (x, y, ControlPoint::Full);
@@ -269,8 +268,7 @@ AutomationLine::modify_point_y (ControlPoint& cp, double y)
update_pending = false;
trackview.editor().session()->add_command (
- new MementoCommand<AutomationList> (memento_command_binder(), 0, &alist->get_state())
- );
+ new MementoCommand<AutomationList> (memento_command_binder(), 0, &alist->get_state()));
trackview.editor().session()->commit_reversible_command ();
trackview.editor().session()->set_dirty ();
@@ -434,8 +432,7 @@ AutomationLine::start_drag_single (ControlPoint* cp, double x, float fraction)
{
trackview.editor().session()->begin_reversible_command (_("automation event move"));
trackview.editor().session()->add_command (
- new MementoCommand<AutomationList> (memento_command_binder(), &get_state(), 0)
- );
+ new MementoCommand<AutomationList> (memento_command_binder(), &get_state(), 0));
_drag_points.clear ();
_drag_points.push_back (cp);
@@ -461,8 +458,7 @@ AutomationLine::start_drag_line (uint32_t i1, uint32_t i2, float fraction)
{
trackview.editor().session()->begin_reversible_command (_("automation range move"));
trackview.editor().session()->add_command (
- new MementoCommand<AutomationList> (memento_command_binder (), &get_state(), 0)
- );
+ new MementoCommand<AutomationList> (memento_command_binder (), &get_state(), 0));
_drag_points.clear ();
@@ -482,8 +478,7 @@ AutomationLine::start_drag_multiple (list<ControlPoint*> cp, float fraction, XML
{
trackview.editor().session()->begin_reversible_command (_("automation range move"));
trackview.editor().session()->add_command (
- new MementoCommand<AutomationList> (memento_command_binder(), state, 0)
- );
+ new MementoCommand<AutomationList> (memento_command_binder(), state, 0));
_drag_points = cp;
start_drag_common (0, fraction);
@@ -721,8 +716,7 @@ AutomationLine::end_drag (bool with_push, uint32_t final_index)
update_pending = false;
trackview.editor().session()->add_command (
- new MementoCommand<AutomationList>(memento_command_binder (), 0, &alist->get_state())
- );
+ new MementoCommand<AutomationList>(memento_command_binder (), 0, &alist->get_state()));
trackview.editor().session()->set_dirty ();
did_push = false;
@@ -826,8 +820,7 @@ AutomationLine::remove_point (ControlPoint& cp)
alist->erase (cp.model());
trackview.editor().session()->add_command(
- new MementoCommand<AutomationList> (memento_command_binder (), &before, &alist->get_state())
- );
+ new MementoCommand<AutomationList> (memento_command_binder (), &before, &alist->get_state()));
trackview.editor().session()->commit_reversible_command ();
trackview.editor().session()->set_dirty ();
@@ -939,7 +932,7 @@ AutomationLine::reset_callback (const Evoral::ControlList& events)
if (std::isnan (tx) || std::isnan (ty)) {
warning << string_compose (_("Ignoring illegal points on AutomationLine \"%1\""),
- _name) << endmsg;
+ _name) << endmsg;
continue;
}
@@ -1045,8 +1038,7 @@ AutomationLine::clear ()
alist->clear();
trackview.editor().session()->add_command (
- new MementoCommand<AutomationList> (memento_command_binder (), &before, &alist->get_state())
- );
+ new MementoCommand<AutomationList> (memento_command_binder (), &before, &alist->get_state()));
}
void
@@ -1130,8 +1122,8 @@ AutomationLine::view_to_model_coord_y (double& y) const
y = max (0.0, y);
y = min (2.0, y);
} else if (alist->parameter().type() == PanAzimuthAutomation ||
- alist->parameter().type() == PanElevationAutomation ||
- alist->parameter().type() == PanWidthAutomation) {
+ alist->parameter().type() == PanElevationAutomation ||
+ alist->parameter().type() == PanWidthAutomation) {
y = 1.0 - y;
} else if (alist->parameter().type() == PluginAutomation) {
y = y * (double)(alist->get_max_y()- alist->get_min_y()) + alist->get_min_y();
@@ -1148,8 +1140,8 @@ AutomationLine::model_to_view_coord (double& x, double& y) const
alist->parameter().type() == EnvelopeAutomation) {
y = gain_to_slider_position_with_max (y, Config->get_max_gain());
} else if (alist->parameter().type() == PanAzimuthAutomation ||
- alist->parameter().type() == PanElevationAutomation ||
- alist->parameter().type() == PanWidthAutomation) {
+ alist->parameter().type() == PanElevationAutomation ||
+ alist->parameter().type() == PanWidthAutomation) {
// vertical coordinate axis reversal
y = 1.0 - y;
} else if (alist->parameter().type() == PluginAutomation) {
@@ -1175,7 +1167,7 @@ AutomationLine::interpolation_changed (AutomationList::InterpolationStyle style)
void
AutomationLine::add_visible_control_point (uint32_t view_index, uint32_t pi, double tx, double ty,
- AutomationList::iterator model, uint32_t npoints)
+ AutomationList::iterator model, uint32_t npoints)
{
ControlPoint::ShapeType shape;
@@ -1229,8 +1221,7 @@ AutomationLine::connect_to_list ()
alist->StateChanged.connect (_list_connections, invalidator (*this), boost::bind (&AutomationLine::list_changed, this), gui_context());
alist->InterpolationChanged.connect (
- _list_connections, invalidator (*this), boost::bind (&AutomationLine::interpolation_changed, this, _1), gui_context()
- );
+ _list_connections, invalidator (*this), boost::bind (&AutomationLine::interpolation_changed, this, _1), gui_context());
}
MementoCommandBinder<AutomationList>*
diff --git a/gtk2_ardour/automation_line.h b/gtk2_ardour/automation_line.h
index cafeeee2ac..405fc63e11 100644
--- a/gtk2_ardour/automation_line.h
+++ b/gtk2_ardour/automation_line.h
@@ -56,7 +56,7 @@ namespace Gnome {
/** A GUI representation of an ARDOUR::AutomationList */
class AutomationLine : public sigc::trackable, public PBD::StatefulDestructible
{
- public:
+public:
enum VisibleAspects {
Line = 0x1,
ControlPoints = 0x2,
@@ -64,8 +64,8 @@ class AutomationLine : public sigc::trackable, public PBD::StatefulDestructible
};
AutomationLine (const std::string& name, TimeAxisView&, ArdourCanvas::Group&,
- boost::shared_ptr<ARDOUR::AutomationList>,
- Evoral::TimeConverter<double, ARDOUR::framepos_t>* converter = 0);
+ boost::shared_ptr<ARDOUR::AutomationList>,
+ Evoral::TimeConverter<double, ARDOUR::framepos_t>* converter = 0);
virtual ~AutomationLine ();
void queue_reset ();
@@ -80,11 +80,11 @@ class AutomationLine : public sigc::trackable, public PBD::StatefulDestructible
bool control_points_adjacent (double xval, uint32_t& before, uint32_t& after);
/* dragging API */
- virtual void start_drag_single (ControlPoint*, double, float);
- virtual void start_drag_line (uint32_t, uint32_t, float);
- virtual void start_drag_multiple (std::list<ControlPoint*>, float, XMLNode *);
- virtual std::pair<double, float> drag_motion (double, float, bool, bool with_push, uint32_t& final_index);
- virtual void end_drag (bool with_push, uint32_t final_index);
+ virtual void start_drag_single (ControlPoint*, double, float);
+ virtual void start_drag_line (uint32_t, uint32_t, float);
+ virtual void start_drag_multiple (std::list<ControlPoint*>, float, XMLNode *);
+ virtual std::pair<double, float> drag_motion (double, float, bool, bool with_push, uint32_t& final_index);
+ virtual void end_drag (bool with_push, uint32_t final_index);
ControlPoint* nth (uint32_t);
ControlPoint const * nth (uint32_t) const;
@@ -113,9 +113,9 @@ class AutomationLine : public sigc::trackable, public PBD::StatefulDestructible
ArdourCanvas::Item& grab_item() const { return *line; }
std::string get_verbose_cursor_string (double) const;
- std::string get_verbose_cursor_relative_string (double, double) const;
+ std::string get_verbose_cursor_relative_string (double, double) const;
std::string fraction_to_string (double) const;
- std::string fraction_to_relative_string (double, double) const;
+ std::string fraction_to_relative_string (double, double) const;
double string_to_fraction (std::string const &) const;
void view_to_model_coord (double& x, double& y) const;
void view_to_model_coord_y (double &) const;
@@ -145,7 +145,7 @@ class AutomationLine : public sigc::trackable, public PBD::StatefulDestructible
std::pair<ARDOUR::framepos_t, ARDOUR::framepos_t> get_point_x_range () const;
void set_maximum_time (ARDOUR::framecnt_t);
- ARDOUR::framecnt_t maximum_time () const {
+ ARDOUR::framecnt_t maximum_time () const {
return _maximum_time;
}
@@ -154,7 +154,7 @@ class AutomationLine : public sigc::trackable, public PBD::StatefulDestructible
framepos_t session_position (ARDOUR::AutomationList::const_iterator) const;
- protected:
+protected:
std::string _name;
guint32 _height;
@@ -167,12 +167,12 @@ class AutomationLine : public sigc::trackable, public PBD::StatefulDestructible
VisibleAspects _visible;
- bool _uses_gain_mapping;
- bool terminal_points_can_slide;
- bool update_pending;
- bool have_timeout;
- bool no_draw;
- bool _is_boolean;
+ bool _uses_gain_mapping;
+ bool terminal_points_can_slide;
+ bool update_pending;
+ bool have_timeout;
+ bool no_draw;
+ bool _is_boolean;
/** true if we did a push at any point during the current drag */
bool did_push;
@@ -182,26 +182,26 @@ class AutomationLine : public sigc::trackable, public PBD::StatefulDestructible
ArdourCanvas::Points line_points; /* coordinates for canvas line */
std::vector<ControlPoint*> control_points; /* visible control points */
- class ContiguousControlPoints : public std::list<ControlPoint*> {
- public:
- ContiguousControlPoints (AutomationLine& al);
- double clamp_dx (double dx);
- void move (double dx, double dy);
- void compute_x_bounds ();
- private:
- AutomationLine& line;
- double before_x;
- double after_x;
+ class ContiguousControlPoints : public std::list<ControlPoint*> {
+public:
+ ContiguousControlPoints (AutomationLine& al);
+ double clamp_dx (double dx);
+ void move (double dx, double dy);
+ void compute_x_bounds ();
+private:
+ AutomationLine& line;
+ double before_x;
+ double after_x;
};
- friend class ContiguousControlPoints;
+ friend class ContiguousControlPoints;
typedef boost::shared_ptr<ContiguousControlPoints> CCP;
- std::vector<CCP> contiguous_points;
+ std::vector<CCP> contiguous_points;
void sync_model_with_view_point (ControlPoint&);
void sync_model_with_view_points (std::list<ControlPoint*>);
- void start_drag_common (double, float);
+ void start_drag_common (double, float);
virtual void change_model (ARDOUR::AutomationList::iterator, double x, double y);
@@ -210,7 +210,7 @@ class AutomationLine : public sigc::trackable, public PBD::StatefulDestructible
virtual bool event_handler (GdkEvent*);
- private:
+private:
std::list<ControlPoint*> _drag_points; ///< points we are dragging
std::list<ControlPoint*> _push_points; ///< additional points we are dragging if "push" is enabled
bool _drag_had_movement; ///< true if the drag has seen movement, otherwise false
diff --git a/gtk2_ardour/midi_automation_line.cc b/gtk2_ardour/midi_automation_line.cc
index 359c516485..a61c17601a 100644
--- a/gtk2_ardour/midi_automation_line.cc
+++ b/gtk2_ardour/midi_automation_line.cc
@@ -30,9 +30,9 @@ MidiAutomationLine::MidiAutomationLine (
boost::shared_ptr<ARDOUR::MidiRegion> region,
Evoral::Parameter parameter,
Evoral::TimeConverter<double, ARDOUR::framepos_t>* converter)
- : AutomationLine (name, tav, group, list, converter)
- , _region (region)
- , _parameter (parameter)
+ : AutomationLine (name, tav, group, list, converter)
+ , _region (region)
+ , _parameter (parameter)
{
}
diff --git a/gtk2_ardour/midi_automation_line.h b/gtk2_ardour/midi_automation_line.h
index aafe966028..2e1195a16b 100644
--- a/gtk2_ardour/midi_automation_line.h
+++ b/gtk2_ardour/midi_automation_line.h
@@ -27,10 +27,10 @@ class MidiAutomationLine : public AutomationLine
{
public:
MidiAutomationLine (const std::string&, TimeAxisView&, ArdourCanvas::Group&,
- boost::shared_ptr<ARDOUR::AutomationList>,
- boost::shared_ptr<ARDOUR::MidiRegion>,
- Evoral::Parameter,
- Evoral::TimeConverter<double, ARDOUR::framepos_t>* converter = 0);
+ boost::shared_ptr<ARDOUR::AutomationList>,
+ boost::shared_ptr<ARDOUR::MidiRegion>,
+ Evoral::Parameter,
+ Evoral::TimeConverter<double, ARDOUR::framepos_t>* converter = 0);
MementoCommandBinder<ARDOUR::AutomationList>* memento_command_binder ();