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