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