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