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