lincoln's patch to use QM onset detection in RFerret, and other tweaks
[ardour2.git] / gtk2_ardour / editor_summary.h
blob2b1e5be791da4467dac64c8cbed3d3e4384f7924
1 /*
2 Copyright (C) 2009 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 __gtk_ardour_editor_summary_h__
21 #define __gtk_ardour_editor_summary_h__
23 #include "cairo_widget.h"
24 #include "editor_component.h"
26 namespace ARDOUR {
27 class Session;
30 class Editor;
32 /** Class to provide a visual summary of the contents of an editor window; represents
33 * the whole session as a set of lines, one per region view.
35 class EditorSummary : public CairoWidget, public EditorComponent, public ARDOUR::SessionHandlePtr, public PBD::ScopedConnectionList
37 public:
38 EditorSummary (Editor *);
40 void set_session (ARDOUR::Session *);
41 void set_overlays_dirty ();
42 void routes_added (std::list<RouteTimeAxisView*> const &);
44 private:
46 enum Position {
47 LEFT,
48 LEFT_TOP,
49 TOP,
50 RIGHT_TOP,
51 RIGHT,
52 RIGHT_BOTTOM,
53 BOTTOM,
54 LEFT_BOTTOM,
55 INSIDE,
56 BELOW_OR_ABOVE,
57 TO_LEFT_OR_RIGHT,
58 OTHERWISE_OUTSIDE
61 bool on_expose_event (GdkEventExpose *);
62 void on_size_request (Gtk::Requisition *);
63 bool on_button_press_event (GdkEventButton *);
64 bool on_button_release_event (GdkEventButton *);
65 bool on_motion_notify_event (GdkEventMotion *);
66 bool on_scroll_event (GdkEventScroll *);
68 void centre_on_click (GdkEventButton *);
69 void render (cairo_t *);
70 void render_region (RegionView*, cairo_t*, double) const;
71 void get_editor (std::pair<double, double> *, std::pair<double, double> *) const;
72 void set_editor (std::pair<double, double> const &, double);
73 void set_editor (std::pair<double, double> const &, std::pair<double, double> const &);
74 void set_editor_x (std::pair<double, double> const &);
75 void set_editor_y (double);
76 void set_editor_y (std::pair<double, double> const &);
77 void playhead_position_changed (framepos_t);
78 double summary_y_to_editor (double) const;
79 double editor_y_to_summary (double) const;
80 Position get_position (double, double) const;
81 void set_cursor (Position);
82 void route_gui_changed (std::string);
84 framepos_t _start; ///< start frame of the overview
85 framepos_t _end; ///< end frame of the overview
87 /** fraction of the session length by which the overview size should extend past the start and end markers */
88 double _overhang_fraction;
90 double _x_scale; ///< pixels per frame for the x axis of the pixmap
91 double _track_height;
92 double _last_playhead;
94 std::pair<double, double> _start_editor_x;
95 std::pair<double, double> _start_editor_y;
96 double _start_mouse_x;
97 double _start_mouse_y;
99 Position _start_position;
101 bool _move_dragging;
102 bool _moved;
103 std::pair<double, double> _view_rectangle_x;
104 std::pair<double, double> _view_rectangle_y;
106 bool _zoom_dragging;
107 Position _zoom_position;
109 bool _old_follow_playhead;
111 PBD::ScopedConnectionList position_connection;
112 PBD::ScopedConnectionList region_property_connection;
115 #endif