update main window title appropriately
[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
39 #include "pbd/xml++.h"
40 #include "pbd/controllable.h"
41 #include <gtkmm/box.h>
42 #include <gtkmm/frame.h>
43 #include <gtkmm/label.h>
44 #include <gtkmm/table.h>
45 #include <gtkmm/fixed.h>
46 #include <gtkmm/drawingarea.h>
47 #include <gtkmm/eventbox.h>
48 #include <gtkmm/menu.h>
49 #include <gtkmm/menuitem.h>
50 #include <gtkmm/button.h>
51 #include <gtkmm/togglebutton.h>
52 #include <gtkmm/treeview.h>
53 #include <gtkmm/menubar.h>
54 #include <gtkmm/textbuffer.h>
55 #include <gtkmm/adjustment.h>
56
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 #include "gtkmm2ext/bindings.h"
62
63 #include "ardour/ardour.h"
64 #include "ardour/types.h"
65 #include "ardour/utils.h"
66 #include "ardour/plugin.h"
67 #include "ardour/session_handle.h"
68 #include "ardour/system_exec.h"
69
70 #include "video_timeline.h"
71
72 #include "add_route_dialog.h"
73 #include "ardour_button.h"
74 #include "ardour_dialog.h"
75 #include "ardour_window.h"
76 #include "editing.h"
77 #include "enums.h"
78 #include "visibility_group.h"
79 #include "window_manager.h"
80
81 #ifdef COMPILER_MSVC
82 #include "about.h"
83 #include "add_video_dialog.h"
84 #include "big_clock_window.h"
85 #include "bundle_manager.h"
86 #include "engine_dialog.h"
87 #include "export_video_dialog.h"
88 #include "global_port_matrix.h"
89 #include "keyeditor.h"
90 #include "location_ui.h"
91 #include "rc_option_editor.h"
92 #include "route_params_ui.h"
93 #include "session_option_editor.h"
94 #include "speaker_dialog.h"
95 #else
96 class About;
97 class AddRouteDialog;
98 class AddVideoDialog;
99 class BigClockWindow;
100 class BundleManager;
101 class EngineControl;
102 class ExportVideoDialog;
103 class KeyEditor;
104 class LocationUIWindow;
105 class RCOptionEditor;
106 class RouteParams_UI;
107 class SessionOptionEditor;
108 class SpeakerDialog;
109 class GlobalPortMatrixWindow;
110 #endif
111
112 class VideoTimeLine;
113 class ArdourKeyboard;
114 class AudioClock;
115 class ButtonJoiner;
116 class ConnectionEditor;
117 class DuplicateRouteDialog;
118 class MainClock;
119 class Mixer_UI;
120 class ArdourPrompter;
121 class PublicEditor;
122 class SaveAsDialog;
123 class SessionDialog;
124 class SessionOptionEditor;
125 class ShuttleControl;
126 class Splash;
127 class TimeInfoBox;
128 class Meterbridge;
129 class MidiTracer;
130 class NSM_Client;
131 class LevelMeterHBox;
132 class GUIObjectState;
133
134 namespace ARDOUR {
135         class ControlProtocolInfo;
136         class IO;
137         class Port;
138         class Route;
139         class RouteGroup;
140         class Location;
141         class ProcessThread;
142 }
143
144 namespace Gtkmm2ext {
145         class TearOff;
146 }
147
148 namespace Gtk {
149         class ProgressBar;
150 }
151
152 class ARDOUR_UI : public Gtkmm2ext::UI, public ARDOUR::SessionHandlePtr
153 {
154     public:
155         ARDOUR_UI (int *argcp, char **argvp[], const char* localedir);
156         ~ARDOUR_UI();
157
158         bool run_startup (bool should_be_new, std::string load_template);
159
160         void show_splash ();
161         void hide_splash ();
162
163         void launch_chat ();
164         void launch_manual ();
165         void launch_reference ();
166         void launch_tracker ();
167         void launch_subscribe ();
168         void launch_cheat_sheet ();
169         void launch_website ();
170         void launch_website_dev ();
171         void launch_forums ();
172         void launch_howto_report ();
173         void show_about ();
174         void hide_about ();
175
176         void load_from_application_api (const std::string& path);
177         void finish();
178
179         int load_session (const std::string& path, const std::string& snapshot, std::string mix_template = std::string());
180         bool session_loaded;
181         int build_session (const std::string& path, const std::string& snapshot, ARDOUR::BusProfile&);
182         bool session_is_new() const { return _session_is_new; }
183
184         ARDOUR::Session* the_session() { return _session; }
185
186         bool get_smart_mode () const;
187
188         int get_session_parameters (bool quit_on_cancel, bool should_be_new = false, std::string load_template = "");
189         int  build_session_from_dialog (SessionDialog&, const std::string& session_name, const std::string& session_path);
190         bool ask_about_loading_existing_session (const std::string& session_path);
191
192         /// @return true if session was successfully unloaded.
193         int unload_session (bool hide_stuff = false);
194         void close_session();
195
196         int  save_state_canfail (std::string state_name = "", bool switch_to_it = false);
197         void save_state (const std::string & state_name = "", bool switch_to_it = false);
198
199         static ARDOUR_UI *instance () { return theArdourUI; }
200
201         PublicEditor&     the_editor() { return *editor;}
202         Mixer_UI* the_mixer() { return mixer; }
203
204         void new_midi_tracer_window ();
205         void toggle_editing_space();
206         void toggle_mixer_space();
207         void toggle_mixer_list();
208         void toggle_monitor_section_visibility ();
209         void toggle_keep_tearoffs();
210
211         static PublicEditor* _instance;
212
213         /** Emitted frequently with the audible frame, false, and the edit point as
214          *  parameters respectively.
215          *
216          *  (either RapidScreenUpdate || SuperRapidScreenUpdate - user-config)
217          */
218         static sigc::signal<void, framepos_t, bool, framepos_t> Clock;
219
220         static void close_all_dialogs () { CloseAllDialogs(); }
221         static sigc::signal<void> CloseAllDialogs;
222
223         XMLNode* editor_settings() const;
224         XMLNode* mixer_settings () const;
225         XMLNode* keyboard_settings () const;
226         XMLNode* tearoff_settings (const char*) const;
227
228         void save_ardour_state ();
229         gboolean configure_handler (GdkEventConfigure* conf);
230
231         void halt_on_xrun_message ();
232         void xrun_handler (framepos_t);
233         void create_xrun_marker (framepos_t);
234
235         GUIObjectState* gui_object_state;
236
237         MainClock* primary_clock;
238         MainClock* secondary_clock;
239         void focus_on_clock ();
240         AudioClock*   big_clock;
241
242         TimeInfoBox* time_info_box;
243
244         VideoTimeLine *video_timeline;
245
246         void store_clock_modes ();
247         void restore_clock_modes ();
248         void reset_main_clocks ();
249
250         void synchronize_sync_source_and_video_pullup ();
251
252         void add_route (Gtk::Window* float_window);
253         void add_routes_part_two ();
254         void add_routes_thread ();
255
256         void start_duplicate_routes ();
257
258         void add_video (Gtk::Window* float_window);
259         void remove_video ();
260         void start_video_server_menu (Gtk::Window* float_window);
261         bool start_video_server (Gtk::Window* float_window, bool popup_msg);
262         void stop_video_server (bool ask_confirm=false);
263         void flush_videotimeline_cache (bool localcacheonly=false);
264         void export_video (bool range = false);
265
266         void session_add_audio_track (
267                 int input_channels,
268                 int32_t output_channels,
269                 ARDOUR::TrackMode mode,
270                 ARDOUR::RouteGroup* route_group,
271                 uint32_t how_many,
272                 std::string const & name_template
273                 ) {
274
275                 session_add_audio_route (true, input_channels, output_channels, mode, route_group, how_many, name_template);
276         }
277
278         void session_add_audio_bus (int input_channels, int32_t output_channels, ARDOUR::RouteGroup* route_group,
279                                     uint32_t how_many, std::string const & name_template) {
280                 session_add_audio_route (false, input_channels, output_channels, ARDOUR::Normal, route_group, how_many, name_template);
281         }
282
283         void session_add_midi_track (ARDOUR::RouteGroup* route_group, uint32_t how_many, std::string const & name_template,
284                                      ARDOUR::PluginInfoPtr instrument) {
285                 session_add_midi_route (true, route_group, how_many, name_template, instrument);
286         }
287
288         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,
289                                       ARDOUR::PluginInfoPtr instrument);
290
291         /*void session_add_midi_bus () {
292                 session_add_midi_route (false);
293         }*/
294
295         void attach_to_engine ();
296         void post_engine ();
297
298         gint exit_on_main_window_close (GdkEventAny *);
299
300         void maximise_editing_space ();
301         void restore_editing_space ();
302
303         void show_ui_prefs ();
304
305         bool check_audioengine(Gtk::Window&);
306
307         void update_tearoff_visibility ();
308
309         void setup_profile ();
310         void setup_tooltips ();
311
312         void set_shuttle_fract (double);
313
314         void get_process_buffers ();
315         void drop_process_buffers ();
316
317         void reset_peak_display ();
318         void reset_route_peak_display (ARDOUR::Route*);
319         void reset_group_peak_display (ARDOUR::RouteGroup*);
320
321         const std::string& announce_string() const { return _announce_string; }
322
323         void hide_application ();
324
325         Gtk::Notebook& tabs();
326         Gtk::Window& main_window () { return _main_window; }
327
328         void setup_toplevel_window (Gtk::Window&, const std::string& name, void* owner);
329         
330         /* called from a static C function */
331
332         GtkNotebook* tab_window_root_drop (GtkNotebook* src,
333                                            GtkWidget* w,
334                                            gint x,
335                                            gint y,
336                                            gpointer user_data);
337
338         bool tabbed_window_state_event_handler (GdkEventWindowState*, void* object);
339         bool key_event_handler (GdkEventKey*, Gtk::Window* window);
340
341   protected:
342         friend class PublicEditor;
343
344         void toggle_auto_play ();
345         void toggle_auto_input ();
346         void toggle_punch ();
347         void unset_dual_punch ();
348         bool ignore_dual_punch;
349         void toggle_punch_in ();
350         void toggle_punch_out ();
351         void show_loop_punch_ruler_and_disallow_hide ();
352         void reenable_hide_loop_punch_ruler_if_appropriate ();
353         void toggle_auto_return ();
354         void toggle_click ();
355         void toggle_audio_midi_setup ();
356         void toggle_session_auto_loop ();
357         void toggle_rc_options_window ();
358         void toggle_session_options_window ();
359
360   private:
361         Gtk::Window   _main_window;
362         Gtk::VBox      main_vpacker;
363         Gtk::HBox      status_bar_hpacker;
364         Gtk::Notebook _tabs;
365         PublicEditor*  editor;
366         Mixer_UI*      mixer;
367         Gtk::Tooltips _tooltips;
368         NSM_Client*    nsm;
369         bool          _was_dirty;
370         bool          _mixer_on_top;
371         bool          _initial_verbose_plugin_scan;
372         bool           first_time_engine_run;
373
374         Gtkmm2ext::Bindings _global_bindings;
375         
376         void goto_editor_window ();
377         void goto_mixer_window ();
378         void toggle_mixer_window ();
379         void toggle_meterbridge ();
380         void toggle_editor_mixer ();
381
382         int  setup_windows ();
383         void setup_transport ();
384         void setup_clock ();
385
386         static ARDOUR_UI *theArdourUI;
387         SessionDialog *_session_dialog;
388
389         int starting ();
390
391         int  ask_about_saving_session (const std::vector<std::string>& actions);
392
393         void save_session_at_its_request (std::string);
394         /* periodic safety backup, to be precise */
395         gint autosave_session();
396         void update_autosave();
397         sigc::connection _autosave_connection;
398
399         void session_dirty_changed ();
400         void update_title ();
401         
402         void map_transport_state ();
403         int32_t do_engine_start ();
404
405         void engine_halted (const char* reason, bool free_reason);
406         void engine_stopped ();
407         void engine_running ();
408
409         void use_config ();
410
411         void about_signal_response(int response);
412
413         Gtk::VBox     top_packer;
414
415         sigc::connection clock_signal_connection;
416         void         update_clocks ();
417         void         start_clocking ();
418         void         stop_clocking ();
419
420         void update_transport_clocks (framepos_t pos);
421         void record_state_changed ();
422
423         std::list<MidiTracer*> _midi_tracer_windows;
424
425         void detach_tearoff (Gtk::Box* parent, Gtk::Widget* contents);
426         void reattach_tearoff (Gtk::Box* parent, Gtk::Widget* contents, int32_t order);
427         void reattach_all_tearoffs ();
428
429         /* Transport Control */
430
431         Gtkmm2ext::TearOff*      transport_tearoff;
432         Gtk::Frame               transport_frame;
433         Gtk::HBox                transport_tearoff_hbox;
434         Gtk::HBox                transport_hbox;
435         Gtk::Fixed               transport_base;
436         Gtk::Fixed               transport_button_base;
437         Gtk::Frame               transport_button_frame;
438         Gtk::HBox                transport_button_hbox;
439         Gtk::VBox                transport_button_vbox;
440         Gtk::HBox                transport_option_button_hbox;
441         Gtk::VBox                transport_option_button_vbox;
442         Gtk::HBox                transport_clock_hbox;
443         Gtk::VBox                transport_clock_vbox;
444         Gtk::HBox                primary_clock_hbox;
445         Gtk::HBox                secondary_clock_hbox;
446
447         struct TransportControllable : public PBD::Controllable {
448             enum ToggleType {
449                     Roll = 0,
450                     Stop,
451                     RecordEnable,
452                     GotoStart,
453                     GotoEnd,
454                     AutoLoop,
455                     PlaySelection,
456             };
457
458             TransportControllable (std::string name, ARDOUR_UI&, ToggleType);
459             void set_value (double, PBD::Controllable::GroupControlDisposition group_override);
460             double get_value (void) const;
461
462             ARDOUR_UI& ui;
463             ToggleType type;
464         };
465
466         boost::shared_ptr<TransportControllable> roll_controllable;
467         boost::shared_ptr<TransportControllable> stop_controllable;
468         boost::shared_ptr<TransportControllable> goto_start_controllable;
469         boost::shared_ptr<TransportControllable> goto_end_controllable;
470         boost::shared_ptr<TransportControllable> auto_loop_controllable;
471         boost::shared_ptr<TransportControllable> play_selection_controllable;
472         boost::shared_ptr<TransportControllable> rec_controllable;
473
474         void toggle_follow_edits ();
475
476         void set_transport_controllable_state (const XMLNode&);
477         XMLNode& get_transport_controllable_state ();
478
479         ArdourButton roll_button;
480         ArdourButton stop_button;
481         ArdourButton goto_start_button;
482         ArdourButton goto_end_button;
483         ArdourButton auto_loop_button;
484         ArdourButton play_selection_button;
485         ArdourButton rec_button;
486
487         void toggle_external_sync ();
488         void toggle_time_master ();
489         void toggle_video_sync ();
490
491         ShuttleControl* shuttle_box;
492
493         ArdourButton auto_return_button;
494         ArdourButton follow_edits_button;
495         ArdourButton auto_input_button;
496         ArdourButton click_button;
497         ArdourButton sync_button;
498
499         ArdourButton auditioning_alert_button;
500         ArdourButton solo_alert_button;
501         ArdourButton feedback_alert_button;
502         ArdourButton error_alert_button;
503
504         Gtk::VBox alert_box;
505         Gtk::VBox meter_box;
506         LevelMeterHBox * editor_meter;
507         float            editor_meter_max_peak;
508         ArdourButton     editor_meter_peak_display;
509         bool             editor_meter_peak_button_release (GdkEventButton*);
510
511         void blink_handler (bool);
512         sigc::connection blink_connection;
513
514         void cancel_solo ();
515         void solo_blink (bool);
516         void sync_blink (bool);
517         void audition_blink (bool);
518         void feedback_blink (bool);
519         void error_blink (bool);
520
521         void set_flat_buttons();
522
523         void soloing_changed (bool);
524         void auditioning_changed (bool);
525         void _auditioning_changed (bool);
526
527         bool solo_alert_press (GdkEventButton* ev);
528         bool audition_alert_press (GdkEventButton* ev);
529         bool feedback_alert_press (GdkEventButton *);
530         bool error_alert_press (GdkEventButton *);
531
532         void big_clock_value_changed ();
533         void primary_clock_value_changed ();
534         void secondary_clock_value_changed ();
535
536         /* called by Blink signal */
537
538         void transport_rec_enable_blink (bool onoff);
539
540         Gtk::Menu*        session_popup_menu;
541
542         /* menu bar and associated stuff */
543
544         Gtk::MenuBar* menu_bar;
545         Gtk::EventBox menu_bar_base;
546         Gtk::HBox     menu_hbox;
547
548         void use_menubar_as_top_menubar ();
549         void build_menu_bar ();
550
551         Gtk::Label   wall_clock_label;
552         gint update_wall_clock ();
553
554         Gtk::Label   disk_space_label;
555         void update_disk_space ();
556
557         Gtk::Label   timecode_format_label;
558         void update_timecode_format ();
559
560         Gtk::Label   cpu_load_label;
561         void update_cpu_load ();
562
563         Gtk::Label   xrun_label;
564         void update_xrun_count ();
565
566         Gtk::Label   peak_thread_work_label;
567         void update_peak_thread_work ();
568
569         Gtk::Label   buffer_load_label;
570         void update_buffer_load ();
571
572         Gtk::Label   sample_rate_label;
573         void update_sample_rate (ARDOUR::framecnt_t);
574
575         Gtk::Label    format_label;
576         void update_format ();
577
578         void every_second ();
579         void every_point_one_seconds ();
580         void every_point_zero_something_seconds ();
581
582         sigc::connection second_connection;
583         sigc::connection point_one_second_connection;
584         sigc::connection point_zero_something_second_connection;
585         sigc::connection fps_connection;
586
587         void set_fps_timeout_connection ();
588
589         void open_session ();
590         void open_recent_session ();
591         bool process_save_template_prompter (ArdourPrompter& prompter);
592         void save_template ();
593
594         void edit_metadata ();
595         void import_metadata ();
596
597         void session_add_audio_route (bool, int32_t, int32_t, ARDOUR::TrackMode, ARDOUR::RouteGroup *, uint32_t, std::string const &);
598         void session_add_midi_route (bool, ARDOUR::RouteGroup *, uint32_t, std::string const &, ARDOUR::PluginInfoPtr);
599
600         void set_transport_sensitivity (bool);
601
602         //stuff for ProTools-style numpad
603         void transport_numpad_event (int num);
604         void transport_numpad_decimal ();
605         bool _numpad_locate_happening;
606         int _pending_locate_num;
607         gint transport_numpad_timeout ();
608         sigc::connection _numpad_timeout_connection;
609
610         void transport_goto_nth_marker (int nth);
611         void transport_goto_zero ();
612         void transport_goto_start ();
613         void transport_goto_end ();
614         void transport_goto_wallclock ();
615         void transport_stop ();
616         void transport_record (bool roll);
617         void transport_roll ();
618         void transport_play_selection();
619         void transport_play_preroll();
620         void transport_forward (int option);
621         void transport_rewind (int option);
622         void transport_loop ();
623         void toggle_roll (bool with_abort, bool roll_out_of_bounded_mode);
624         bool trx_record_enable_all_tracks ();
625
626         bool _session_is_new;
627         void set_session (ARDOUR::Session *);
628         void connect_dependents_to_session (ARDOUR::Session *);
629         void we_have_dependents ();
630
631         void setup_session_options ();
632
633         guint32  last_key_press_time;
634
635         bool process_snapshot_session_prompter (ArdourPrompter& prompter, bool switch_to_it);
636         void snapshot_session (bool switch_to_it);
637
638         void quick_snapshot_session (bool switch_to_it);  //does not promtp for name, just makes a timestamped file
639
640         SaveAsDialog* save_as_dialog;
641
642         bool save_as_progress_update (float fraction, int64_t cnt, int64_t total, Gtk::Label* label, Gtk::ProgressBar* bar);
643         void save_session_as ();
644         void rename_session ();
645         void setup_order_hint (AddRouteDialog::InsertAt);
646
647         int         create_mixer ();
648         int         create_editor ();
649
650         Meterbridge  *meterbridge;
651         int         create_meterbridge ();
652
653         /* Dialogs that can be created via new<T> */
654
655         RCOptionEditor* rc_option_editor;
656         Gtk::HBox rc_option_editor_placeholder;
657         
658         WM::Proxy<SpeakerDialog> speaker_config_window;
659         WM::Proxy<KeyEditor> key_editor;
660         WM::Proxy<AddRouteDialog> add_route_dialog;
661         WM::Proxy<About> about;
662         WM::Proxy<LocationUIWindow> location_ui;
663         WM::Proxy<RouteParams_UI> route_params;
664         WM::Proxy<EngineControl> audio_midi_setup;
665         WM::Proxy<ExportVideoDialog> export_video_dialog;
666
667         /* Windows/Dialogs that require a creator method */
668
669         WM::ProxyWithConstructor<SessionOptionEditor> session_option_editor;
670         WM::ProxyWithConstructor<AddVideoDialog> add_video_dialog;
671         WM::ProxyWithConstructor<BundleManager> bundle_manager;
672         WM::ProxyWithConstructor<BigClockWindow> big_clock_window;
673         WM::ProxyWithConstructor<GlobalPortMatrixWindow> audio_port_matrix;
674         WM::ProxyWithConstructor<GlobalPortMatrixWindow> midi_port_matrix;
675
676         /* creator methods */
677
678         SessionOptionEditor*    create_session_option_editor ();
679         BundleManager*          create_bundle_manager ();
680         AddVideoDialog*         create_add_video_dialog ();
681         BigClockWindow*         create_big_clock_window();
682         GlobalPortMatrixWindow* create_global_port_matrix (ARDOUR::DataType);
683
684         ARDOUR::SystemExec *video_server_process;
685
686         void handle_locations_change (ARDOUR::Location*);
687
688         /* Keyboard Handling */
689
690         ArdourKeyboard* keyboard;
691
692         /* Keymap handling */
693
694         void install_actions ();
695
696         void toggle_record_enable (uint32_t);
697
698         uint32_t rec_enabled_streams;
699         void count_recenabled_streams (ARDOUR::Route&);
700
701         Splash* splash;
702
703         void pop_back_splash (Gtk::Window&);
704
705         /* cleanup */
706
707         Gtk::MenuItem *cleanup_item;
708
709         void display_cleanup_results (ARDOUR::CleanupReport& rep, const gchar* list_title, const bool msg_delete);
710         void cleanup ();
711         void cleanup_peakfiles ();
712         void flush_trash ();
713
714         bool have_configure_timeout;
715         ARDOUR::microseconds_t last_configure_time;
716         gint configure_timeout ();
717
718         ARDOUR::microseconds_t last_peak_grab;
719         ARDOUR::microseconds_t last_shuttle_request;
720
721         bool have_disk_speed_dialog_displayed;
722         void disk_speed_dialog_gone (int ignored_response, Gtk::MessageDialog*);
723         void disk_overrun_handler ();
724         void disk_underrun_handler ();
725         void gui_idle_handler ();
726
727         void cancel_plugin_scan ();
728         void cancel_plugin_timeout ();
729         void plugin_scan_dialog (std::string type, std::string plugin, bool);
730         void plugin_scan_timeout (int);
731
732         void session_format_mismatch (std::string, std::string);
733
734         void session_dialog (std::string);
735         int pending_state_dialog ();
736         int sr_mismatch_dialog (ARDOUR::framecnt_t, ARDOUR::framecnt_t);
737
738         Gtk::MenuItem* jack_disconnect_item;
739         Gtk::MenuItem* jack_reconnect_item;
740         Gtk::Menu*     jack_bufsize_menu;
741
742         Glib::RefPtr<Gtk::ActionGroup> common_actions;
743
744         void editor_realized ();
745
746         std::vector<std::string> positional_sync_strings;
747
748         void toggle_send_midi_feedback ();
749         void toggle_use_mmc ();
750         void toggle_send_mmc ();
751         void toggle_send_mtc ();
752         void toggle_send_midi_clock ();
753
754         void toggle_use_osc ();
755
756         void parameter_changed (std::string);
757         void session_parameter_changed (std::string);
758
759         bool first_idle ();
760
761         void check_memory_locking ();
762
763         void audioengine_setup ();
764
765         void display_message (const char *prefix, gint prefix_len,
766                         Glib::RefPtr<Gtk::TextBuffer::Tag> ptag, Glib::RefPtr<Gtk::TextBuffer::Tag> mtag,
767                         const char *msg);
768         Gtk::Label status_bar_label;
769         bool status_bar_button_press (GdkEventButton*);
770
771         void loading_message (const std::string& msg);
772
773         PBD::ScopedConnectionList forever_connections;
774         PBD::ScopedConnection halt_connection;
775
776         void step_edit_status_change (bool);
777
778         void platform_specific ();
779         void platform_setup ();
780
781         /* these are used only in response to a platform-specific "ShouldQuit" signal
782          */
783         bool idle_finish ();
784         void queue_finish ();
785         void fontconfig_dialog ();
786
787         int missing_file (ARDOUR::Session*s, std::string str, ARDOUR::DataType type);
788         int ambiguous_file (std::string file, std::vector<std::string> hits);
789
790         bool click_button_clicked (GdkEventButton *);
791
792         VisibilityGroup _status_bar_visibility;
793
794         /** A ProcessThread so that we have some thread-local buffers for use by
795          *  PluginEqGui::impulse_analysis ().
796          */
797         ARDOUR::ProcessThread* _process_thread;
798
799         void feedback_detected ();
800
801         ArdourButton             midi_panic_button;
802         void                     midi_panic ();
803
804         void successful_graph_sort ();
805         bool _feedback_exists;
806
807         enum ArdourLogLevel {
808                 LogLevelNone = 0,
809                 LogLevelInfo,
810                 LogLevelWarning,
811                 LogLevelError
812         };
813
814         ArdourLogLevel _log_not_acknowledged;
815
816         void resize_text_widgets ();
817
818         bool xrun_button_release (GdkEventButton* ev);
819
820         std::string _announce_string;
821         void check_announcements ();
822
823         int do_audio_midi_setup (uint32_t);
824         void audioengine_became_silent ();
825
826         DuplicateRouteDialog* duplicate_routes_dialog;
827
828         void grab_focus_after_dialog ();
829
830         void tabs_switch (GtkNotebookPage*, guint page_number);
831         void tabs_page_added (Gtk::Widget*, guint page_number);
832         void tabs_page_removed (Gtk::Widget*, guint page_number);
833         bool key_press_focus_accelerator_handler (Gtk::Window& window, GdkEventKey* ev, Gtkmm2ext::Bindings*);
834 };
835
836 #endif /* __ardour_gui_h__ */