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