Remove most using declarations from header files.
[ardour.git] / gtk2_ardour / ardour_ui.h
1 /*
2     Copyright (C) 1999-2002 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #ifndef __ardour_gui_h__
21 #define __ardour_gui_h__
22
23 #include <time.h>
24
25 /* need _BSD_SOURCE to get timersub macros */
26
27 #ifdef _BSD_SOURCE
28 #include <sys/time.h>
29 #else
30 #define _BSD_SOURCE
31 #include <sys/time.h>
32 #undef _BSD_SOURCE
33 #endif
34
35 #include <list>
36 #include <cmath>
37
38 #include <libgnomecanvasmm/canvas.h>
39
40 #include "pbd/xml++.h"
41 #include "pbd/controllable.h"
42 #include <gtkmm/box.h>
43 #include <gtkmm/frame.h>
44 #include <gtkmm/label.h>
45 #include <gtkmm/table.h>
46 #include <gtkmm/fixed.h>
47 #include <gtkmm/drawingarea.h>
48 #include <gtkmm/eventbox.h>
49 #include <gtkmm/menu.h>
50 #include <gtkmm/menuitem.h>
51 #include <gtkmm/button.h>
52 #include <gtkmm/togglebutton.h>
53 #include <gtkmm/treeview.h>
54 #include <gtkmm/menubar.h>
55 #include <gtkmm/textbuffer.h>
56 #include <gtkmm/adjustment.h>
57 #include <gtkmm2ext/gtk_ui.h>
58 #include <gtkmm2ext/click_box.h>
59 #include <gtkmm2ext/stateful_button.h>
60 #include <gtkmm2ext/bindable_button.h>
61 #include "ardour/ardour.h"
62 #include "ardour/session.h"
63 #include "ardour/configuration.h"
64 #include "ardour/types.h"
65
66 #include "audio_clock.h"
67 #include "ardour_dialog.h"
68 #include "editing.h"
69 #include "ui_config.h"
70
71 class AudioClock;
72 class PublicEditor;
73 class Keyboard;
74 class OptionEditor;
75 class KeyEditor;
76 class Mixer_UI;
77 class ConnectionEditor;
78 class RouteParams_UI;
79 class About;
80 class Splash;
81 class AddRouteDialog;
82 class LocationUI;
83 class ThemeManager;
84 class BundleManager;
85 class ArdourStartup;
86
87 namespace Gtkmm2ext {
88         class TearOff;
89 }
90
91 namespace ARDOUR {
92         class AudioEngine;
93         class Route;
94         class Port;
95         class IO;
96         class ControlProtocolInfo;
97 }
98
99 namespace ALSA {
100         class MultiChannelDevice;
101 }
102
103 #define FRAME_NAME "BaseFrame"
104
105 extern sigc::signal<void>  ColorsChanged;
106 extern sigc::signal<void>  DPIReset;
107
108 class ARDOUR_UI : public Gtkmm2ext::UI
109 {
110   public:
111         ARDOUR_UI (int *argcp, char **argvp[]);
112         ~ARDOUR_UI();
113
114         void run_startup (bool should_be_new);
115
116         void show ();
117         bool shown() { return shown_flag; }
118
119         void show_splash ();
120         void hide_splash ();
121
122         void show_about ();
123         void hide_about ();
124
125         void finish();
126
127         int load_session (const Glib::ustring& path, const Glib::ustring& snapshot, Glib::ustring mix_template = Glib::ustring());
128         bool session_loaded;
129         int build_session (const Glib::ustring& path, const Glib::ustring& snapshot,
130                            uint32_t ctl_chns,
131                            uint32_t master_chns,
132                            ARDOUR::AutoConnectOption input_connect,
133                            ARDOUR::AutoConnectOption output_connect,
134                            uint32_t nphysin,
135                            uint32_t nphysout,
136                            nframes_t initial_length);
137         bool session_is_new() const { return _session_is_new; }
138
139         ARDOUR::Session* the_session() { return session; }
140
141         bool will_create_new_session_automatically() const {
142                 return _will_create_new_session_automatically;
143         }
144
145         void set_will_create_new_session_automatically (bool yn) {
146                 _will_create_new_session_automatically = yn;
147         }
148         
149         int get_session_parameters (bool should_be_new = false);
150         void parse_cmdline_path (const Glib::ustring& cmdline_path, Glib::ustring& session_name, Glib::ustring& session_path, bool& existing_session);
151         int  load_cmdline_session (const Glib::ustring& session_name, const Glib::ustring& session_path, bool& existing_session);
152         int  build_session_from_nsd (const Glib::ustring& session_name, const Glib::ustring& session_path);
153         bool ask_about_loading_existing_session (const Glib::ustring& session_path);
154
155         /// @return true if session was successfully unloaded.
156         int unload_session (bool hide_stuff = false);
157         void close_session();
158
159         int  save_state_canfail (std::string state_name = "");
160         void save_state (const std::string & state_name = "");
161
162         static double gain_to_slider_position (ARDOUR::gain_t g);
163         static ARDOUR::gain_t slider_position_to_gain (double pos);
164
165         static ARDOUR_UI *instance () { return theArdourUI; }
166         static UIConfiguration *config () { return ui_config; }
167
168         PublicEditor&     the_editor(){return *editor;}
169         Mixer_UI* the_mixer() { return mixer; }
170
171         ARDOUR::AudioEngine& the_engine() const { return *engine; }
172
173         void toggle_key_editor ();
174         void toggle_location_window ();
175         void toggle_theme_manager ();
176         void toggle_bundle_manager ();
177         void toggle_big_clock_window ();
178         void toggle_route_params_window ();
179         void toggle_editing_space();
180
181         Gtk::Tooltips& tooltips() { return _tooltips; }
182
183         static sigc::signal<void,bool> Blink;
184         static sigc::signal<void>      RapidScreenUpdate;
185         static sigc::signal<void>      SuperRapidScreenUpdate;
186         static sigc::signal<void,nframes_t, bool, nframes_t> Clock;
187
188         void name_io_setup (ARDOUR::AudioEngine&, std::string&, ARDOUR::IO& io, bool in);
189
190         XMLNode* editor_settings() const;
191         XMLNode* mixer_settings () const;
192         XMLNode* keyboard_settings () const;
193
194         void save_ardour_state ();
195         gboolean configure_handler (GdkEventConfigure* conf);
196
197         void do_transport_locate (nframes_t position);
198         void halt_on_xrun_message ();
199         void xrun_handler (nframes_t);
200         void create_xrun_marker (nframes_t);
201
202         AudioClock primary_clock;
203         AudioClock secondary_clock;
204         AudioClock preroll_clock;
205         AudioClock postroll_clock;
206
207         void store_clock_modes ();
208         void restore_clock_modes ();
209
210         void add_route (Gtk::Window* float_window);
211
212         void session_add_audio_track (int input_channels, int32_t output_channels, ARDOUR::TrackMode mode, uint32_t how_many) {
213                 session_add_audio_route (true, input_channels, output_channels, mode, how_many);
214         }
215
216         void session_add_audio_bus (int input_channels, int32_t output_channels, uint32_t how_many) {
217                 session_add_audio_route (false, input_channels, output_channels, ARDOUR::Normal, how_many);
218         }
219
220         void session_add_midi_track (uint32_t how_many) {
221                 session_add_midi_route (true, how_many);
222         }
223
224         /*void session_add_midi_bus () {
225                 session_add_midi_route (false);
226         }*/
227
228         int  create_engine ();
229         void post_engine ();
230
231         gint exit_on_main_window_close (GdkEventAny *);
232
233         void maximise_editing_space ();
234         void restore_editing_space ();
235
236         void set_native_file_header_format (ARDOUR::HeaderFormat sf);
237         void set_native_file_data_format (ARDOUR::SampleFormat sf);
238
239         void setup_profile ();
240         void setup_theme ();
241
242         void set_shuttle_fract (double);
243
244   protected:
245         friend class PublicEditor;
246
247         void toggle_clocking ();
248         void toggle_auto_play ();
249         void toggle_auto_input ();
250         void toggle_punch ();
251         void unset_dual_punch ();
252         bool ignore_dual_punch;
253         void toggle_punch_in ();
254         void toggle_punch_out ();
255         void toggle_auto_return ();
256         void toggle_click ();
257
258         void toggle_session_auto_loop ();
259
260         void toggle_options_window ();
261
262   private:
263         ArdourStartup*      _startup;
264         ARDOUR::AudioEngine *engine;
265         ARDOUR::Session      *session;
266         Gtk::Tooltips        _tooltips;
267
268         void                goto_editor_window ();
269         void                goto_mixer_window ();
270         void                toggle_editor_mixer_on_top ();
271         bool                _mixer_on_top;
272
273         Gtk::ToggleButton   preroll_button;
274         Gtk::ToggleButton   postroll_button;
275
276         int  setup_windows ();
277         void setup_transport ();
278         void setup_clock ();
279
280         static ARDOUR_UI *theArdourUI;
281
282         void backend_audio_error (bool we_set_params, Gtk::Window* toplevel = 0);
283         void startup ();
284         void shutdown ();
285
286         int  ask_about_saving_session (const std::string & why);
287
288         /* periodic safety backup, to be precise */
289         gint autosave_session();
290         void update_autosave();
291         sigc::connection _autosave_connection;
292
293         void queue_transport_change ();
294         void map_transport_state ();
295         int32_t do_engine_start ();
296
297         void engine_halted ();
298         void engine_stopped ();
299         void engine_running ();
300
301         void use_config ();
302
303         static gint _blink  (void *);
304         void blink ();
305         gint blink_timeout_tag;
306         bool blink_on;
307         void start_blinking ();
308         void stop_blinking ();
309
310         void about_signal_response(int response);
311
312   private:
313         Gtk::VBox     top_packer;
314
315         sigc::connection clock_signal_connection;
316         void         update_clocks ();
317         void         start_clocking ();
318         void         stop_clocking ();
319
320         void manage_window (Gtk::Window&);
321
322         AudioClock   big_clock;
323         Gtk::Window* big_clock_window;
324
325         void float_big_clock (Gtk::Window* parent);
326         bool main_window_state_event_handler (GdkEventWindowState*, bool window_was_editor);
327
328         void update_transport_clocks (nframes_t pos);
329         void record_state_changed ();
330
331         /* Transport Control */
332
333         void detach_tearoff (Gtk::Box* parent, Gtk::Widget* contents);
334         void reattach_tearoff (Gtk::Box* parent, Gtk::Widget* contents, int32_t order);
335
336         Gtkmm2ext::TearOff*      transport_tearoff;
337         Gtk::Frame               transport_frame;
338         Gtk::HBox                transport_tearoff_hbox;
339         Gtk::HBox                transport_hbox;
340         Gtk::Fixed               transport_base;
341         Gtk::Fixed               transport_button_base;
342         Gtk::Frame               transport_button_frame;
343         Gtk::HBox                transport_button_hbox;
344         Gtk::VBox                transport_button_vbox;
345         Gtk::HBox                transport_option_button_hbox;
346         Gtk::VBox                transport_option_button_vbox;
347         Gtk::HBox                transport_clock_hbox;
348         Gtk::VBox                transport_clock_vbox;
349         Gtk::HBox                primary_clock_hbox;
350         Gtk::HBox                secondary_clock_hbox;
351
352
353         struct TransportControllable : public PBD::Controllable {
354             enum ToggleType {
355                     Roll = 0,
356                     Stop,
357                     RecordEnable,
358                     GotoStart,
359                     GotoEnd,
360                     AutoLoop,
361                     PlaySelection,
362                     ShuttleControl
363
364             };
365
366             TransportControllable (std::string name, ARDOUR_UI&, ToggleType);
367             void set_value (float);
368             float get_value (void) const;
369
370             void set_id (const std::string&);
371
372             ARDOUR_UI& ui;
373             ToggleType type;
374         };
375
376         boost::shared_ptr<TransportControllable> roll_controllable;
377         boost::shared_ptr<TransportControllable> stop_controllable;
378         boost::shared_ptr<TransportControllable> goto_start_controllable;
379         boost::shared_ptr<TransportControllable> goto_end_controllable;
380         boost::shared_ptr<TransportControllable> auto_loop_controllable;
381         boost::shared_ptr<TransportControllable> play_selection_controllable;
382         boost::shared_ptr<TransportControllable> rec_controllable;
383         boost::shared_ptr<TransportControllable> shuttle_controllable;
384         BindingProxy shuttle_controller_binding_proxy;
385
386         void set_transport_controllable_state (const XMLNode&);
387         XMLNode& get_transport_controllable_state ();
388
389         BindableButton roll_button;
390         BindableButton stop_button;
391         BindableButton goto_start_button;
392         BindableButton goto_end_button;
393         BindableButton auto_loop_button;
394         BindableButton play_selection_button;
395         BindableButton rec_button;
396
397         Gtk::ComboBoxText sync_option_combo;
398
399         void sync_option_changed ();
400         void toggle_time_master ();
401         void toggle_video_sync ();
402
403         Gtk::DrawingArea  shuttle_box;
404         Gtk::EventBox     speed_display_box;
405         Gtk::Label        speed_display_label;
406         Gtk::Button       shuttle_units_button;
407         Gtk::ComboBoxText shuttle_style_button;
408         Gtk::Menu*        shuttle_unit_menu;
409         Gtk::Menu*        shuttle_style_menu;
410         float             shuttle_max_speed;
411         Gtk::Menu*        shuttle_context_menu;
412
413         void build_shuttle_context_menu ();
414         void show_shuttle_context_menu ();
415         void shuttle_style_changed();
416         void shuttle_unit_clicked ();
417         void set_shuttle_max_speed (float);
418         void update_speed_display ();
419         float last_speed_displayed;
420
421         gint shuttle_box_button_press (GdkEventButton*);
422         gint shuttle_box_button_release (GdkEventButton*);
423         gint shuttle_box_scroll (GdkEventScroll*);
424         gint shuttle_box_motion (GdkEventMotion*);
425         gint shuttle_box_expose (GdkEventExpose*);
426         gint mouse_shuttle (double x, bool force);
427         void use_shuttle_fract (bool force);
428
429         bool   shuttle_grabbed;
430         double shuttle_fract;
431
432         Gtkmm2ext::StatefulToggleButton punch_in_button;
433         Gtkmm2ext::StatefulToggleButton punch_out_button;
434         Gtkmm2ext::StatefulToggleButton auto_return_button;
435         Gtkmm2ext::StatefulToggleButton auto_play_button;
436         Gtkmm2ext::StatefulToggleButton auto_input_button;
437         Gtkmm2ext::StatefulToggleButton click_button;
438         Gtkmm2ext::StatefulToggleButton time_master_button;
439
440         Gtk::ToggleButton auditioning_alert_button;
441         Gtk::ToggleButton solo_alert_button;
442
443         Gtk::VBox alert_box;
444
445         void solo_blink (bool);
446         void audition_blink (bool);
447
448         void soloing_changed (bool);
449         void auditioning_changed (bool);
450         void _auditioning_changed (bool);
451
452         void solo_alert_toggle ();
453         void audition_alert_toggle ();
454
455         void big_clock_value_changed ();
456         void primary_clock_value_changed ();
457         void secondary_clock_value_changed ();
458
459         /* called by Blink signal */
460
461         void transport_rec_enable_blink (bool onoff);
462
463         Gtk::Menu*        session_popup_menu;
464
465         struct RecentSessionModelColumns : public Gtk::TreeModel::ColumnRecord {
466             RecentSessionModelColumns() {
467                     add (visible_name);
468                     add (fullpath);
469             }
470             Gtk::TreeModelColumn<Glib::ustring> visible_name;
471             Gtk::TreeModelColumn<Glib::ustring> fullpath;
472         };
473
474         RecentSessionModelColumns    recent_session_columns;
475         Gtk::TreeView                recent_session_display;
476         Glib::RefPtr<Gtk::TreeStore> recent_session_model;
477
478         ArdourDialog*     session_selector_window;
479         Gtk::FileChooserDialog* open_session_selector;
480
481         void build_session_selector();
482         void redisplay_recent_sessions();
483         void recent_session_row_activated (const Gtk::TreePath& path, Gtk::TreeViewColumn* col);
484
485         struct RecentSessionsSorter {
486                 bool operator() (std::pair<std::string,std::string> a, std::pair<std::string,std::string> b) const {
487                     return cmp_nocase(a.first, b.first) == -1;
488             }
489         };
490
491         /* menu bar and associated stuff */
492
493         Gtk::MenuBar* menu_bar;
494         Gtk::EventBox menu_bar_base;
495         Gtk::HBox     menu_hbox;
496
497         void use_menubar_as_top_menubar ();
498         void build_menu_bar ();
499         void build_control_surface_menu ();
500
501         Gtk::Label   wall_clock_label;
502         Gtk::EventBox wall_clock_box;
503         gint update_wall_clock ();
504
505         Gtk::Label   disk_space_label;
506         Gtk::EventBox disk_space_box;
507         void update_disk_space ();
508
509         Gtk::Label   cpu_load_label;
510         Gtk::EventBox cpu_load_box;
511         void update_cpu_load ();
512
513         Gtk::Label   buffer_load_label;
514         Gtk::EventBox buffer_load_box;
515         void update_buffer_load ();
516
517         Gtk::Label   sample_rate_label;
518         Gtk::EventBox sample_rate_box;
519         void update_sample_rate (nframes_t);
520
521         gint every_second ();
522         gint every_point_one_seconds ();
523         gint every_point_zero_one_seconds ();
524
525         sigc::connection second_connection;
526         sigc::connection point_one_second_connection;
527         sigc::connection point_oh_five_second_connection;
528         sigc::connection point_zero_one_second_connection;
529
530         gint session_menu (GdkEventButton *);
531
532         bool _will_create_new_session_automatically;
533
534         void open_session ();
535         void open_recent_session ();
536         void save_template ();
537         
538         void edit_metadata ();
539         void import_metadata ();
540
541         void session_add_audio_route (bool disk, int32_t input_channels, int32_t output_channels, ARDOUR::TrackMode mode, uint32_t how_many);
542         void session_add_midi_route (bool disk, uint32_t how_many);
543
544         void set_transport_sensitivity (bool);
545
546         void remove_last_capture ();
547
548         void transport_goto_zero ();
549         void transport_goto_start ();
550         void transport_goto_end ();
551         void transport_goto_wallclock ();
552         void transport_stop ();
553         void transport_stop_and_forget_capture ();
554         void transport_record (bool roll);
555         void transport_roll ();
556         void transport_play_selection();
557         void transport_forward (int option);
558         void transport_rewind (int option);
559         void transport_loop ();
560
561         void transport_rolling ();
562         void transport_rewinding ();
563         void transport_forwarding ();
564         void transport_stopped ();
565
566         bool _session_is_new;
567         void connect_to_session (ARDOUR::Session *);
568         void connect_dependents_to_session (ARDOUR::Session *);
569         void we_have_dependents ();
570
571         void setup_session_options ();
572
573         guint32  last_key_press_time;
574
575         void snapshot_session ();
576
577         Mixer_UI   *mixer;
578         int         create_mixer ();
579
580         PublicEditor     *editor;
581         int         create_editor ();
582
583         RouteParams_UI *route_params;
584         int             create_route_params ();
585
586         BundleManager *bundle_manager;
587         void create_bundle_manager ();
588
589         LocationUI *location_ui;
590         int         create_location_ui ();
591         void        handle_locations_change (ARDOUR::Location*);
592
593         static UIConfiguration *ui_config;
594         ThemeManager *theme_manager;
595
596         /* Key bindings editor */
597
598         KeyEditor *key_editor;
599
600         /* Options window */
601
602         OptionEditor *option_editor;
603
604         /* route dialog */
605
606         AddRouteDialog *add_route_dialog;
607
608         /* Keyboard Handling */
609
610         Keyboard* keyboard;
611
612         /* Keymap handling */
613
614         void install_actions ();
615
616         void toggle_record_enable (uint32_t);
617
618         uint32_t rec_enabled_streams;
619         void count_recenabled_streams (ARDOUR::Route&);
620
621         About* about;
622         Splash* splash;
623         void pop_back_splash ();
624         bool shown_flag;
625
626         /* cleanup */
627
628         Gtk::MenuItem *cleanup_item;
629
630         void display_cleanup_results (ARDOUR::Session::cleanup_report& rep, const gchar* list_title, const std::string & msg);
631         void cleanup ();
632         void flush_trash ();
633
634         bool have_configure_timeout;
635         ARDOUR::microseconds_t last_configure_time;
636         gint configure_timeout ();
637
638         ARDOUR::microseconds_t last_peak_grab;
639         ARDOUR::microseconds_t last_shuttle_request;
640
641         struct DiskBufferStat {
642             time_t when;
643             uint32_t capture;
644             uint32_t playback;
645
646             DiskBufferStat (time_t w, uint32_t c, uint32_t p) 
647             : when (w), capture (c), playback (p) {}
648         };
649         
650         std::list<DiskBufferStat> disk_buffer_stats;
651         void push_buffer_stats (uint32_t, uint32_t);
652         void write_buffer_stats ();
653
654         bool have_disk_speed_dialog_displayed;
655         void disk_speed_dialog_gone (int ignored_response, Gtk::MessageDialog*);
656         void disk_overrun_handler ();
657         void disk_underrun_handler ();
658
659         void session_dialog (std::string);
660         int pending_state_dialog ();
661         int sr_mismatch_dialog (nframes_t, nframes_t);
662
663         void disconnect_from_jack ();
664         void reconnect_to_jack ();
665         void set_jack_buffer_size (nframes_t);
666
667         Gtk::MenuItem* jack_disconnect_item;
668         Gtk::MenuItem* jack_reconnect_item;
669         Gtk::Menu*     jack_bufsize_menu;
670
671         Glib::RefPtr<Gtk::ActionGroup> common_actions;
672
673         void editor_realized ();
674
675         std::vector<std::string> positional_sync_strings;
676
677         void toggle_send_midi_feedback ();
678         void toggle_use_mmc ();
679         void toggle_send_mmc ();
680         void toggle_send_mtc ();
681         void toggle_send_midi_clock ();
682
683         void toggle_use_osc ();
684
685         void toggle_denormal_protection ();
686
687         void set_input_auto_connect (ARDOUR::AutoConnectOption);
688         void set_output_auto_connect (ARDOUR::AutoConnectOption);
689         void set_solo_model (ARDOUR::SoloModel);
690         void set_monitor_model (ARDOUR::MonitorModel);
691         void set_remote_model (ARDOUR::RemoteModel);
692         void set_denormal_model (ARDOUR::DenormalModel);
693
694         void toggle_sync_order_keys ();
695         void toggle_new_plugins_active();
696         void toggle_StopPluginsWithTransport();
697         void toggle_DoNotRunPluginsWhileRecording();
698         void toggle_VerifyRemoveLastCapture();
699         void toggle_PeriodicSafetyBackups();
700         void toggle_StopRecordingOnXrun();
701         void toggle_CreateXrunMarker();
702         void toggle_StopTransportAtEndOfSession();
703         void toggle_GainReduceFastTransport();
704         void toggle_LatchedSolo();
705         void toggle_ShowSoloMutes();
706         void toggle_SoloMuteOverride();
707         void toggle_LatchedRecordEnable ();
708         void toggle_RegionEquivalentsOverlap ();
709         void toggle_PrimaryClockDeltaEditCursor ();
710         void toggle_SecondaryClockDeltaEditCursor ();
711         void toggle_ShowTrackMeters ();
712         void toggle_only_copy_imported_files ();
713         void toggle_use_narrow_ms();
714         void toggle_NameNewMarkers ();
715         void toggle_rubberbanding_snaps_to_grid ();
716         void toggle_auto_analyse_audio ();
717         void toggle_TapeMachineMode();
718
719         void mtc_port_changed ();
720         void map_solo_model ();
721         void map_monitor_model ();
722         void map_denormal_model ();
723         void map_denormal_protection ();
724         void map_remote_model ();
725         void map_file_header_format ();
726         void map_file_data_format ();
727         void map_input_auto_connect ();
728         void map_output_auto_connect ();
729         void map_only_copy_imported_files ();
730         void parameter_changed (const char*);
731
732         void set_meter_hold (ARDOUR::MeterHold);
733         void set_meter_falloff (ARDOUR::MeterFalloff);
734         void map_meter_hold ();
735         void map_meter_falloff ();
736
737         void toggle_control_protocol (ARDOUR::ControlProtocolInfo*);
738         void toggle_control_protocol_feedback (ARDOUR::ControlProtocolInfo*, const char* group_name, std::string action_name);
739
740         bool first_idle ();
741
742         void no_memory_warning ();
743         void check_memory_locking ();
744
745         bool check_audioengine();
746         void audioengine_setup ();
747
748         void display_message (const char *prefix, gint prefix_len,
749                               Glib::RefPtr<Gtk::TextBuffer::Tag> ptag, Glib::RefPtr<Gtk::TextBuffer::Tag> mtag, const char *msg);
750         Gtk::Label status_bar_label;
751         Gtk::ToggleButton error_log_button;
752
753         void loading_message (const std::string& msg);
754         void end_loading_messages ();
755
756         void platform_specific ();
757         void platform_setup ();
758         void fontconfig_dialog ();
759 };
760
761 #endif /* __ardour_gui_h__ */
762