always save/keep audio/MIDI setup states so that they are available for use *after...
[ardour.git] / gtk2_ardour / ardour_ui.h
1 /*
2     Copyright (C) 1999-2002 Paul Davis
3
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.
8
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.
13
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.
17
18 */
19
20 #ifndef __ardour_gui_h__
21 #define __ardour_gui_h__
22
23 #include <time.h>
24
25 /* need _BSD_SOURCE to get timersub macros */
26
27 #ifdef _BSD_SOURCE
28 #include <sys/time.h>
29 #else
30 #define _BSD_SOURCE
31 #include <sys/time.h>
32 #undef _BSD_SOURCE
33 #endif
34
35 #include <list>
36 #include <cmath>
37
38 #include <libgnomecanvasmm/canvas.h>
39
40 #include "pbd/xml++.h"
41 #include "pbd/controllable.h"
42 #include <gtkmm/box.h>
43 #include <gtkmm/frame.h>
44 #include <gtkmm/label.h>
45 #include <gtkmm/table.h>
46 #include <gtkmm/fixed.h>
47 #include <gtkmm/drawingarea.h>
48 #include <gtkmm/eventbox.h>
49 #include <gtkmm/menu.h>
50 #include <gtkmm/menuitem.h>
51 #include <gtkmm/button.h>
52 #include <gtkmm/togglebutton.h>
53 #include <gtkmm/treeview.h>
54 #include <gtkmm/menubar.h>
55 #include <gtkmm/textbuffer.h>
56 #include <gtkmm/adjustment.h>
57 #include <gtkmm2ext/gtk_ui.h>
58 #include <gtkmm2ext/click_box.h>
59 #include <gtkmm2ext/stateful_button.h>
60 #include <gtkmm2ext/bindable_button.h>
61
62 #include "ardour/ardour.h"
63 #include "ardour/types.h"
64 #include "ardour/utils.h"
65 #include "ardour/plugin.h"
66 #include "ardour/session_handle.h"
67
68 #include "video_timeline.h"
69
70 #include "ardour_button.h"
71 #include "ardour_dialog.h"
72 #include "ardour_window.h"
73 #include "editing.h"
74 #include "meterbridge.h"
75 #include "nsm.h"
76 #include "ui_config.h"
77 #include "enums.h"
78 #include "visibility_group.h"
79 #include "window_manager.h"
80
81 class About;
82 class AddRouteDialog;
83 class AddVideoDialog;
84 class VideoTimeLine;
85 class SystemExec;
86 class ArdourStartup;
87 class ArdourKeyboard;
88 class AudioClock;
89 class BigClockWindow;
90 class BundleManager;
91 class ButtonJoiner;
92 class ConnectionEditor;
93 class EngineControl;
94 class KeyEditor;
95 class LocationUIWindow;
96 class MainClock;
97 class Mixer_UI;
98 class PublicEditor;
99 class RCOptionEditor;
100 class RouteParams_UI;
101 class SessionOptionEditor;
102 class ShuttleControl;
103 class Splash;
104 class SpeakerDialog;
105 class ThemeManager;
106 class TimeInfoBox;
107 class MidiTracer;
108 class LevelMeterHBox;
109 class GlobalPortMatrixWindow;
110 class GUIObjectState;
111
112 namespace Gtkmm2ext {
113         class TearOff;
114 }
115
116 namespace ARDOUR {
117         class ControlProtocolInfo;
118         class IO;
119         class Port;
120         class Route;
121         class RouteGroup;
122         class Location;
123         class ProcessThread;
124 }
125
126 class ARDOUR_UI : public Gtkmm2ext::UI, public ARDOUR::SessionHandlePtr
127 {
128   public:
129         ARDOUR_UI (int *argcp, char **argvp[], const char* localedir);
130         ~ARDOUR_UI();
131
132         bool run_startup (bool should_be_new, std::string load_template);
133
134         void show_splash ();
135         void hide_splash ();
136
137         void launch_chat ();
138         void launch_manual ();
139         void launch_reference ();
140         void show_about ();
141         void hide_about ();
142
143         void idle_load (const std::string& path);
144         void finish();
145
146         int load_session (const std::string& path, const std::string& snapshot, std::string mix_template = std::string());
147         bool session_loaded;
148         int build_session (const std::string& path, const std::string& snapshot, ARDOUR::BusProfile&);
149         bool session_is_new() const { return _session_is_new; }
150
151         ARDOUR::Session* the_session() { return _session; }
152
153         bool get_smart_mode () const;
154         
155         int get_session_parameters (bool quit_on_cancel, bool should_be_new = false, std::string load_template = "");
156         int  build_session_from_nsd (const std::string& session_name, const std::string& session_path);
157         bool ask_about_loading_existing_session (const std::string& session_path);
158
159         /// @return true if session was successfully unloaded.
160         int unload_session (bool hide_stuff = false);
161         void close_session();
162
163         int  save_state_canfail (std::string state_name = "", bool switch_to_it = false);
164         void save_state (const std::string & state_name = "", bool switch_to_it = false);
165
166         static ARDOUR_UI *instance () { return theArdourUI; }
167         static UIConfiguration *config () { return ui_config; }
168
169         PublicEditor&     the_editor(){return *editor;}
170         Mixer_UI* the_mixer() { return mixer; }
171
172         void new_midi_tracer_window ();
173         void toggle_editing_space();
174         void toggle_keep_tearoffs();
175
176         Gtk::Tooltips& tooltips() { return _tooltips; }
177
178         Gtk::HBox& editor_transport_box() { return _editor_transport_box; }
179
180         static PublicEditor* _instance;
181         static sigc::signal<void,bool> Blink;
182
183         /** point_zero_one_seconds -- 10Hz ^= 100ms */
184         static sigc::signal<void>      RapidScreenUpdate;
185
186         /** point_zero_something_seconds -- currently 25Hz ^= 40ms */
187         static sigc::signal<void>      SuperRapidScreenUpdate;
188
189         /** Emitted frequently with the audible frame, false, and the edit point as
190          *  parameters respectively.
191          *
192          *  (either RapidScreenUpdate || SuperRapidScreenUpdate - user-config)
193          */
194         static sigc::signal<void, framepos_t, bool, framepos_t> Clock;
195
196         static void close_all_dialogs () { CloseAllDialogs(); }
197         static sigc::signal<void> CloseAllDialogs;
198
199         XMLNode* editor_settings() const;
200         XMLNode* mixer_settings () const;
201         XMLNode* keyboard_settings () const;
202         XMLNode* tearoff_settings (const char*) const;
203
204         void save_ardour_state ();
205         gboolean configure_handler (GdkEventConfigure* conf);
206
207         void halt_on_xrun_message ();
208         void xrun_handler (framepos_t);
209         void create_xrun_marker (framepos_t);
210
211         GUIObjectState* gui_object_state;
212
213         MainClock* primary_clock;
214         MainClock* secondary_clock;
215         void focus_on_clock ();
216         AudioClock*   big_clock;
217
218         TimeInfoBox* time_info_box;
219
220         VideoTimeLine *video_timeline;
221
222         void store_clock_modes ();
223         void restore_clock_modes ();
224         void reset_main_clocks ();
225
226         void synchronize_sync_source_and_video_pullup ();
227
228         void add_route (Gtk::Window* float_window);
229         void add_routes_part_two ();
230         void add_routes_thread ();
231
232         void add_video (Gtk::Window* float_window);
233         void remove_video ();
234         void start_video_server_menu (Gtk::Window* float_window);
235         bool start_video_server (Gtk::Window* float_window, bool popup_msg);
236         void stop_video_server (bool ask_confirm=false);
237         void flush_videotimeline_cache (bool localcacheonly=false);
238
239         void session_add_audio_track (
240                 int input_channels,
241                 int32_t output_channels,
242                 ARDOUR::TrackMode mode,
243                 ARDOUR::RouteGroup* route_group,
244                 uint32_t how_many,
245                 std::string const & name_template
246                 ) {
247
248                 session_add_audio_route (true, input_channels, output_channels, mode, route_group, how_many, name_template);
249         }
250
251         void session_add_audio_bus (int input_channels, int32_t output_channels, ARDOUR::RouteGroup* route_group,
252                                     uint32_t how_many, std::string const & name_template) {
253                 session_add_audio_route (false, input_channels, output_channels, ARDOUR::Normal, route_group, how_many, name_template);
254         }
255
256         void session_add_midi_track (ARDOUR::RouteGroup* route_group, uint32_t how_many, std::string const & name_template,
257                                      ARDOUR::PluginInfoPtr instrument) {
258                 session_add_midi_route (true, route_group, how_many, name_template, instrument);
259         }
260
261         void session_add_mixed_track (const ARDOUR::ChanCount& input, const ARDOUR::ChanCount& output, ARDOUR::RouteGroup* route_group, uint32_t how_many, std::string const & name_template,
262                                       ARDOUR::PluginInfoPtr instrument);
263
264         /*void session_add_midi_bus () {
265                 session_add_midi_route (false);
266         }*/
267
268         void attach_to_engine ();
269         void post_engine ();
270
271         gint exit_on_main_window_close (GdkEventAny *);
272
273         void maximise_editing_space ();
274         void restore_editing_space ();
275
276         void update_tearoff_visibility ();
277
278         void setup_profile ();
279         void setup_tooltips ();
280
281         void set_shuttle_fract (double);
282
283         void get_process_buffers ();
284         void drop_process_buffers ();
285
286         void reset_peak_display ();
287         void reset_route_peak_display (ARDOUR::Route*);
288         void reset_group_peak_display (ARDOUR::RouteGroup*);
289
290         const std::string& announce_string() const { return _announce_string; }
291
292         EngineControl* audio_midi_setup_widget();
293
294   protected:
295         friend class PublicEditor;
296
297         void toggle_auto_play ();
298         void toggle_auto_input ();
299         void toggle_punch ();
300         void unset_dual_punch ();
301         bool ignore_dual_punch;
302         void toggle_punch_in ();
303         void toggle_punch_out ();
304         void show_loop_punch_ruler_and_disallow_hide ();
305         void reenable_hide_loop_punch_ruler_if_appropriate ();
306         void toggle_auto_return ();
307         void toggle_click ();
308
309         void toggle_session_auto_loop ();
310
311         void toggle_rc_options_window ();
312         void toggle_session_options_window ();
313
314   private:
315         ArdourStartup*      _startup;
316         ARDOUR::AudioEngine *engine;
317         Gtk::Tooltips        _tooltips;
318         NSM_Client          *nsm;
319         bool                 _was_dirty;
320         bool                 _mixer_on_top;
321         bool first_time_engine_run;
322
323         void goto_editor_window ();
324         void goto_mixer_window ();
325         void toggle_mixer_window ();
326         void toggle_meterbridge ();
327         void toggle_editor_mixer ();
328
329         int  setup_windows ();
330         void setup_transport ();
331         void setup_clock ();
332
333         static ARDOUR_UI *theArdourUI;
334
335         void startup ();
336         void shutdown ();
337
338         int  ask_about_saving_session (const std::vector<std::string>& actions);
339
340         /* periodic safety backup, to be precise */
341         gint autosave_session();
342         void update_autosave();
343         sigc::connection _autosave_connection;
344
345         void map_transport_state ();
346         int32_t do_engine_start ();
347
348         void engine_halted (const char* reason, bool free_reason);
349         void engine_stopped ();
350         void engine_running ();
351
352         void use_config ();
353
354         static gint _blink  (void *);
355         void blink ();
356         gint blink_timeout_tag;
357         bool blink_on;
358         void start_blinking ();
359         void stop_blinking ();
360
361         void about_signal_response(int response);
362
363         Gtk::VBox     top_packer;
364
365         sigc::connection clock_signal_connection;
366         void         update_clocks ();
367         void         start_clocking ();
368         void         stop_clocking ();
369
370         bool main_window_state_event_handler (GdkEventWindowState*, bool window_was_editor);
371
372         void update_transport_clocks (framepos_t pos);
373         void record_state_changed ();
374
375         std::list<MidiTracer*> _midi_tracer_windows;
376
377         /* Transport Control */
378
379         void detach_tearoff (Gtk::Box* parent, Gtk::Widget* contents);
380         void reattach_tearoff (Gtk::Box* parent, Gtk::Widget* contents, int32_t order);
381
382         Gtkmm2ext::TearOff*      transport_tearoff;
383         Gtk::Frame               transport_frame;
384         Gtk::HBox                transport_tearoff_hbox;
385         Gtk::HBox               _editor_transport_box;
386         Gtk::HBox                transport_hbox;
387         Gtk::Fixed               transport_base;
388         Gtk::Fixed               transport_button_base;
389         Gtk::Frame               transport_button_frame;
390         Gtk::HBox                transport_button_hbox;
391         Gtk::VBox                transport_button_vbox;
392         Gtk::HBox                transport_option_button_hbox;
393         Gtk::VBox                transport_option_button_vbox;
394         Gtk::HBox                transport_clock_hbox;
395         Gtk::VBox                transport_clock_vbox;
396         Gtk::HBox                primary_clock_hbox;
397         Gtk::HBox                secondary_clock_hbox;
398
399         struct TransportControllable : public PBD::Controllable {
400             enum ToggleType {
401                     Roll = 0,
402                     Stop,
403                     RecordEnable,
404                     GotoStart,
405                     GotoEnd,
406                     AutoLoop,
407                     PlaySelection,
408             };
409
410             TransportControllable (std::string name, ARDOUR_UI&, ToggleType);
411             void set_value (double);
412             double get_value (void) const;
413
414             ARDOUR_UI& ui;
415             ToggleType type;
416         };
417
418         boost::shared_ptr<TransportControllable> roll_controllable;
419         boost::shared_ptr<TransportControllable> stop_controllable;
420         boost::shared_ptr<TransportControllable> goto_start_controllable;
421         boost::shared_ptr<TransportControllable> goto_end_controllable;
422         boost::shared_ptr<TransportControllable> auto_loop_controllable;
423         boost::shared_ptr<TransportControllable> play_selection_controllable;
424         boost::shared_ptr<TransportControllable> rec_controllable;
425
426         void toggle_always_play_range ();
427
428         void set_transport_controllable_state (const XMLNode&);
429         XMLNode& get_transport_controllable_state ();
430
431         ArdourButton roll_button;
432         ArdourButton stop_button;
433         ArdourButton goto_start_button;
434         ArdourButton goto_end_button;
435         ArdourButton auto_loop_button;
436         ArdourButton play_selection_button;
437         ArdourButton rec_button;
438
439         void toggle_external_sync ();
440         void toggle_time_master ();
441         void toggle_video_sync ();
442
443         ShuttleControl* shuttle_box;
444
445         ArdourButton auto_return_button;
446         ArdourButton follow_edits_button;
447         ArdourButton auto_input_button;
448         ArdourButton click_button;
449         ArdourButton sync_button;
450
451         ArdourButton auditioning_alert_button;
452         ArdourButton solo_alert_button;
453         ArdourButton feedback_alert_button;
454
455         Gtk::VBox alert_box;
456         Gtk::VBox meter_box;
457         LevelMeterHBox * editor_meter;
458         float            editor_meter_max_peak;
459         ArdourButton     editor_meter_peak_display;
460         bool             editor_meter_peak_button_release (GdkEventButton*);
461
462         void solo_blink (bool);
463         void sync_blink (bool);
464         void audition_blink (bool);
465         void feedback_blink (bool);
466
467         void soloing_changed (bool);
468         void auditioning_changed (bool);
469         void _auditioning_changed (bool);
470         
471         bool solo_alert_press (GdkEventButton* ev);
472         bool audition_alert_press (GdkEventButton* ev);
473         bool feedback_alert_press (GdkEventButton *);
474
475         void big_clock_value_changed ();
476         void primary_clock_value_changed ();
477         void secondary_clock_value_changed ();
478
479         /* called by Blink signal */
480
481         void transport_rec_enable_blink (bool onoff);
482
483         Gtk::Menu*        session_popup_menu;
484
485         struct RecentSessionModelColumns : public Gtk::TreeModel::ColumnRecord {
486             RecentSessionModelColumns() {
487                     add (visible_name);
488                     add (tip);
489                     add (fullpath);
490             }
491             Gtk::TreeModelColumn<std::string> visible_name;
492             Gtk::TreeModelColumn<std::string> tip;
493             Gtk::TreeModelColumn<std::string> fullpath;
494         };
495
496         RecentSessionModelColumns    recent_session_columns;
497         Gtk::TreeView                recent_session_display;
498         Glib::RefPtr<Gtk::TreeStore> recent_session_model;
499
500         ArdourDialog*     session_selector_window;
501         Gtk::FileChooserDialog* open_session_selector;
502
503         void build_session_selector();
504         void redisplay_recent_sessions();
505         void recent_session_row_activated (const Gtk::TreePath& path, Gtk::TreeViewColumn* col);
506
507         struct RecentSessionsSorter {
508                 bool operator() (std::pair<std::string,std::string> a, std::pair<std::string,std::string> b) const {
509                     return cmp_nocase(a.first, b.first) == -1;
510             }
511         };
512
513         /* menu bar and associated stuff */
514
515         Gtk::MenuBar* menu_bar;
516         Gtk::EventBox menu_bar_base;
517         Gtk::HBox     menu_hbox;
518
519         void use_menubar_as_top_menubar ();
520         void build_menu_bar ();
521
522         Gtk::Label   wall_clock_label;
523         gint update_wall_clock ();
524
525         Gtk::Label   disk_space_label;
526         void update_disk_space ();
527
528         Gtk::Label   timecode_format_label;
529         void update_timecode_format ();
530
531         Gtk::Label   cpu_load_label;
532         void update_cpu_load ();
533
534         Gtk::Label   buffer_load_label;
535         void update_buffer_load ();
536
537         Gtk::Label   sample_rate_label;
538         void update_sample_rate (ARDOUR::framecnt_t);
539
540         Gtk::Label    format_label;
541         void update_format ();
542         
543         gint every_second ();
544         gint every_point_one_seconds ();
545         gint every_point_zero_something_seconds ();
546
547         sigc::connection second_connection;
548         sigc::connection point_one_second_connection;
549         sigc::connection point_zero_something_second_connection;
550
551         void open_session ();
552         void open_recent_session ();
553         void save_template ();
554
555         void edit_metadata ();
556         void import_metadata ();
557
558         void session_add_audio_route (bool, int32_t, int32_t, ARDOUR::TrackMode, ARDOUR::RouteGroup *, uint32_t, std::string const &);
559         void session_add_midi_route (bool, ARDOUR::RouteGroup *, uint32_t, std::string const &, ARDOUR::PluginInfoPtr);
560
561         void set_transport_sensitivity (bool);
562
563         void transport_goto_zero ();
564         void transport_goto_start ();
565         void transport_goto_end ();
566         void transport_goto_wallclock ();
567         void transport_stop ();
568         void transport_record (bool roll);
569         void transport_roll ();
570         void transport_play_selection();
571         void transport_play_preroll(); 
572         void transport_forward (int option);
573         void transport_rewind (int option);
574         void transport_loop ();
575         void toggle_roll (bool with_abort, bool roll_out_of_bounded_mode);
576
577         bool _session_is_new;
578         void set_session (ARDOUR::Session *);
579         void connect_dependents_to_session (ARDOUR::Session *);
580         void we_have_dependents ();
581
582         void setup_session_options ();
583
584         guint32  last_key_press_time;
585
586         void snapshot_session (bool switch_to_it);
587         void rename_session ();
588
589         Mixer_UI   *mixer;
590         int         create_mixer ();
591
592         PublicEditor     *editor;
593         int         create_editor ();
594
595         Meterbridge  *meterbridge;
596         int         create_meterbridge ();
597         /* Dialogs that can be created via new<T> */
598
599         WM::Proxy<SpeakerDialog> speaker_config_window;
600         WM::Proxy<ThemeManager> theme_manager;
601         WM::Proxy<KeyEditor> key_editor;
602         WM::Proxy<RCOptionEditor> rc_option_editor;
603         WM::Proxy<AddRouteDialog> add_route_dialog;
604         WM::Proxy<About> about;
605         WM::Proxy<LocationUIWindow> location_ui;
606         WM::Proxy<RouteParams_UI> route_params;
607
608         /* Windows/Dialogs that require a creator method */
609
610         WM::ProxyWithConstructor<SessionOptionEditor> session_option_editor;
611         WM::ProxyWithConstructor<AddVideoDialog> add_video_dialog;
612         WM::ProxyWithConstructor<BundleManager> bundle_manager;
613         WM::ProxyWithConstructor<BigClockWindow> big_clock_window;
614         WM::ProxyWithConstructor<GlobalPortMatrixWindow> audio_port_matrix;
615         WM::ProxyWithConstructor<GlobalPortMatrixWindow> midi_port_matrix;
616
617         /* creator methods */
618
619         SessionOptionEditor*    create_session_option_editor ();
620         BundleManager*          create_bundle_manager ();
621         AddVideoDialog*         create_add_video_dialog ();
622         BigClockWindow*         create_big_clock_window(); 
623         GlobalPortMatrixWindow* create_global_port_matrix (ARDOUR::DataType);
624
625         static UIConfiguration *ui_config;
626
627         SystemExec *video_server_process;
628
629         void handle_locations_change (ARDOUR::Location*);
630
631         /* Keyboard Handling */
632
633         ArdourKeyboard* keyboard;
634
635         /* Keymap handling */
636
637         void install_actions ();
638
639         void toggle_record_enable (uint32_t);
640
641         uint32_t rec_enabled_streams;
642         void count_recenabled_streams (ARDOUR::Route&);
643
644         Splash* splash;
645
646         void pop_back_splash (Gtk::Window&);
647
648         /* cleanup */
649
650         Gtk::MenuItem *cleanup_item;
651
652         void display_cleanup_results (ARDOUR::CleanupReport& rep, const gchar* list_title, const bool msg_delete);
653         void cleanup ();
654         void flush_trash ();
655
656         bool have_configure_timeout;
657         ARDOUR::microseconds_t last_configure_time;
658         gint configure_timeout ();
659
660         ARDOUR::microseconds_t last_peak_grab;
661         ARDOUR::microseconds_t last_shuttle_request;
662
663         bool have_disk_speed_dialog_displayed;
664         void disk_speed_dialog_gone (int ignored_response, Gtk::MessageDialog*);
665         void disk_overrun_handler ();
666         void disk_underrun_handler ();
667
668         void session_format_mismatch (std::string, std::string);
669
670         void session_dialog (std::string);
671         int pending_state_dialog ();
672         int sr_mismatch_dialog (ARDOUR::framecnt_t, ARDOUR::framecnt_t);
673
674         void disconnect_from_jack ();
675         void reconnect_to_jack ();
676         void set_jack_buffer_size (ARDOUR::pframes_t);
677
678         Gtk::MenuItem* jack_disconnect_item;
679         Gtk::MenuItem* jack_reconnect_item;
680         Gtk::Menu*     jack_bufsize_menu;
681
682         Glib::RefPtr<Gtk::ActionGroup> common_actions;
683
684         void editor_realized ();
685
686         std::vector<std::string> positional_sync_strings;
687
688         void toggle_send_midi_feedback ();
689         void toggle_use_mmc ();
690         void toggle_send_mmc ();
691         void toggle_send_mtc ();
692         void toggle_send_midi_clock ();
693
694         void toggle_use_osc ();
695
696         void parameter_changed (std::string);
697         void session_parameter_changed (std::string);
698
699         bool first_idle ();
700
701         void no_memory_warning ();
702         void check_memory_locking ();
703
704         bool check_audioengine();
705         void audioengine_setup ();
706
707         void display_message (const char *prefix, gint prefix_len,
708                         Glib::RefPtr<Gtk::TextBuffer::Tag> ptag, Glib::RefPtr<Gtk::TextBuffer::Tag> mtag,
709                         const char *msg);
710         Gtk::Label status_bar_label;
711         bool status_bar_button_press (GdkEventButton*);
712         Gtk::ToggleButton error_log_button;
713
714         void loading_message (const std::string& msg);
715
716         PBD::ScopedConnectionList forever_connections;
717         PBD::ScopedConnection halt_connection; 
718
719         void step_edit_status_change (bool);
720
721         void platform_specific ();
722         void platform_setup ();
723
724         /* these are used only in response to a platform-specific "ShouldQuit" signal
725          */
726         bool idle_finish ();
727         void queue_finish ();
728         void fontconfig_dialog ();
729
730         int missing_file (ARDOUR::Session*s, std::string str, ARDOUR::DataType type);
731         int ambiguous_file (std::string file, std::string path, std::vector<std::string> hits);
732
733         bool click_button_clicked (GdkEventButton *);
734
735         VisibilityGroup _status_bar_visibility;
736
737         /** A ProcessThread so that we have some thread-local buffers for use by
738          *  PluginEqGui::impulse_analysis ().
739          */
740         ARDOUR::ProcessThread* _process_thread;
741
742         void feedback_detected ();
743
744         ArdourButton             midi_panic_button;
745         void                     midi_panic ();
746
747         void successful_graph_sort ();
748         bool _feedback_exists;
749
750         void resize_text_widgets ();
751
752         std::string _announce_string;
753         void check_announcements ();
754
755         EngineControl* _audio_midi_setup;
756 };
757
758 #endif /* __ardour_gui_h__ */
759