rename EditorSummary::Position as Editor::SummaryPosition

This commit is contained in:
Paul Davis 2021-02-28 15:54:46 -07:00
parent e5d505365f
commit 485b74e0b9
2 changed files with 7 additions and 7 deletions

View File

@ -581,7 +581,7 @@ EditorSummary::get_editor (pair<double, double>* x, pair<double, double>* y) con
} }
/** Get an expression of the position of a point with respect to the view rectangle */ /** Get an expression of the position of a point with respect to the view rectangle */
EditorSummary::Position EditorSummary::SummaryPosition
EditorSummary::get_position (double x, double y) const EditorSummary::get_position (double x, double y) const
{ {
/* how close the mouse has to be to the edge of the view rectangle to be considered `on it', /* how close the mouse has to be to the edge of the view rectangle to be considered `on it',
@ -619,7 +619,7 @@ EditorSummary::reset_to_extents()
void void
EditorSummary::set_cursor (Position p) EditorSummary::set_cursor (SummaryPosition p)
{ {
switch (p) { switch (p) {
case LEFT: case LEFT:

View File

@ -49,7 +49,7 @@ private:
void parameter_changed (std::string); void parameter_changed (std::string);
void on_size_allocate (Gtk::Allocation& alloc); void on_size_allocate (Gtk::Allocation& alloc);
enum Position { enum SummaryPosition {
LEFT, LEFT,
RIGHT, RIGHT,
BOTTOM, BOTTOM,
@ -79,8 +79,8 @@ private:
void set_editor_x (std::pair<double, double>); void set_editor_x (std::pair<double, double>);
void playhead_position_changed (samplepos_t); void playhead_position_changed (samplepos_t);
double editor_y_to_summary (double) const; double editor_y_to_summary (double) const;
Position get_position (double, double) const; SummaryPosition get_position (double, double) const;
void set_cursor (Position); void set_cursor (SummaryPosition);
void route_gui_changed (PBD::PropertyChange const&); void route_gui_changed (PBD::PropertyChange const&);
bool suspending_editor_updates () const; bool suspending_editor_updates () const;
double playhead_sample_to_position (samplepos_t) const; double playhead_sample_to_position (samplepos_t) const;
@ -103,7 +103,7 @@ private:
double _start_mouse_x; double _start_mouse_x;
double _start_mouse_y; double _start_mouse_y;
Position _start_position; SummaryPosition _start_position;
bool _move_dragging; bool _move_dragging;
@ -125,7 +125,7 @@ private:
bool _pending_editor_changed; bool _pending_editor_changed;
bool _zoom_trim_dragging; bool _zoom_trim_dragging;
Position _zoom_trim_position; SummaryPosition _zoom_trim_position;
bool _old_follow_playhead; bool _old_follow_playhead;
cairo_surface_t* _image; cairo_surface_t* _image;