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