put the issue of using a monitor section into ~/.config/ardour.rc, not the session...
[ardour2.git] / gtk2_ardour / audio_time_axis.h
blob80450e9f61aa38e44342f1f1260b538c5dee33d4
1 /*
2 Copyright (C) 2000-2006 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 __ardour_audio_time_axis_h__
21 #define __ardour_audio_time_axis_h__
23 #include <gtkmm/table.h>
24 #include <gtkmm/button.h>
25 #include <gtkmm/box.h>
26 #include <gtkmm/menu.h>
27 #include <gtkmm/menuitem.h>
28 #include <gtkmm/radiomenuitem.h>
29 #include <gtkmm/checkmenuitem.h>
31 #include <gtkmm2ext/selector.h>
32 #include <list>
34 #include "ardour/types.h"
36 #include "ardour_dialog.h"
37 #include "route_ui.h"
38 #include "enums.h"
39 #include "editing.h"
40 #include "route_time_axis.h"
41 #include "canvas.h"
43 namespace ARDOUR {
44 class Session;
45 class AudioDiskstream;
46 class RouteGroup;
47 class IOProcessor;
48 class Processor;
49 class Location;
50 class AudioPlaylist;
53 class PublicEditor;
54 class AudioThing;
55 class AudioStreamView;
56 class Selection;
57 class Selectable;
58 class RegionView;
59 class AudioRegionView;
60 class AutomationLine;
61 class AutomationGainLine;
62 class AutomationPanLine;
63 class TimeSelection;
64 class AutomationTimeAxisView;
66 class AudioTimeAxisView : public RouteTimeAxisView
68 public:
69 AudioTimeAxisView (PublicEditor&, ARDOUR::Session*, boost::shared_ptr<ARDOUR::Route>, ArdourCanvas::Canvas& canvas);
70 virtual ~AudioTimeAxisView ();
72 AudioStreamView* audio_view();
74 void set_show_waveforms_recording (bool yn);
75 void show_all_xfades ();
76 void hide_all_xfades ();
77 void hide_dependent_views (TimeAxisViewItem&);
78 void reveal_dependent_views (TimeAxisViewItem&);
80 /* Overridden from parent to store display state */
81 guint32 show_at (double y, int& nth, Gtk::VBox *parent);
82 void hide ();
84 void create_automation_child (const Evoral::Parameter& param, bool show);
86 void first_idle ();
88 private:
89 friend class AudioStreamView;
90 friend class AudioRegionView;
92 void route_active_changed ();
94 void append_extra_display_menu_items ();
95 Gtk::Menu* build_mode_menu();
97 void show_all_automation ();
98 void show_existing_automation ();
99 void hide_all_automation ();
101 void gain_hidden ();
102 void pan_hidden ();
104 void ensure_pan_views (bool show = true);
105 void update_control_names ();
108 #endif /* __ardour_audio_time_axis_h__ */