* first implementation of MIDI Clock Slave support
[ardour.git] / gtk2_ardour / option_editor.h
index 77e55dce7a6aea08010258b7945f0f980f4751fe..c6f13049b0adae59ce81463f82d5424531861bba 100644 (file)
@@ -1,5 +1,8 @@
+#ifndef __gtk_ardour_option_editor_h__
+#define __gtk_ardour_option_editor_h__
+
 /*
-    Copyright (C) 2001 Paul Davis 
+    Copyright (C) 2001 Paul Davis
 
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
     along with this program; if not, write to the Free Software
     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
-    $Id$
 */
 
-#ifndef __gtk_ardour_option_editor_h__
-#define __gtk_ardour_option_editor_h__
+#include <vector>
 
 #include <gtkmm/notebook.h>
 #include <gtkmm/checkbutton.h>
@@ -46,7 +47,7 @@ class IOSelector;
 class GainMeter;
 class PannerUI;
 
-class OptionEditor : public Gtk::Dialog
+class OptionEditor : public ArdourDialog
 {
   public:
        OptionEditor (ARDOUR_UI&, PublicEditor&, Mixer_UI&);
@@ -65,138 +66,94 @@ class OptionEditor : public Gtk::Dialog
 
        /* Generic */
 
-       void session_control_changed (ARDOUR::Session::ControlType);
-       void queue_session_control_changed (ARDOUR::Session::ControlType);
-       void map_some_session_state (Gtk::CheckButton& button, bool (ARDOUR::Session::*get)() const);
        gint wm_close (GdkEventAny *);
-       void just_close_win();
        bool focus_out_event_handler (GdkEventFocus*, void (OptionEditor::*pmf)());
+       void parameter_changed (const char* name);
 
        /* paths */
 
-       Gtk::Table              path_table;
-
-       Gtk::Entry              session_raid_entry;
-
-       Gtk::ComboBoxText       native_format_combo;
-
-       Glib::RefPtr<Gtk::ListStore> sfdb_paths;
-       Gtk::TreeView sfdb_path_view;
-
-       struct SoundFilePathColumns : public Gtk::TreeModel::ColumnRecord
-       {
-         public:
-           Gtk::TreeModelColumn<std::string> paths;
-
-               SoundFilePathColumns() { add (paths); }
-       };
-       SoundFilePathColumns sfdb_path_columns;
+       Gtk::Table      path_table;
+       Gtk::Entry      session_raid_entry;
 
        void setup_path_options();
        void add_session_paths ();
        void remove_session_paths ();
-       void native_format_chosen ();
        void raid_path_changed ();
 
-       /* fades */
+       /* misc */
 
-       // Gtk::Table           fade_table;
+       Gtk::VBox        misc_packer;
 
-       Gtk::VBox        fade_packer;
-       Gtk::CheckButton auto_xfade_button;
-       Gtk::CheckButton xfade_active_button;
-       Gtk::Label       layer_mode_label;
-       Gtk::ComboBoxText layer_mode_combo;
-       Gtk::Label       xfade_model_label;
-       Gtk::ComboBoxText xfade_model_combo;
        Gtk::Adjustment  short_xfade_adjustment;
        Gtk::HScale      short_xfade_slider;
+       Gtk::Adjustment  destructo_xfade_adjustment;
+       Gtk::HScale      destructo_xfade_slider;
+
+       void setup_misc_options();
 
-       void auto_xfade_clicked ();
-       void xfade_active_clicked ();
-       void layer_mode_chosen ();
-       void xfade_model_chosen ();
-       void setup_fade_options();
        void short_xfade_adjustment_changed ();
+       void destructo_xfade_adjustment_changed ();
+
+       Gtk::Adjustment history_depth;
+       Gtk::Adjustment saved_history_depth;
+       Gtk::SpinButton     history_depth_spinner;
+       Gtk::SpinButton     saved_history_depth_spinner;
+       Gtk::CheckButton    limit_history_button;
+       Gtk::CheckButton    save_history_button;
 
-       /* solo */
-
-       Gtk::VBox        solo_packer;
-       Gtk::CheckButton solo_latched_button;
-       Gtk::CheckButton solo_via_bus_button;
-
-       void solo_latched_clicked();
-       void solo_via_bus_clicked ();
-       
-       void setup_solo_options();
-
-       /* display */
-
-       Gtk::VBox        display_packer;
-       Gtk::CheckButton show_waveforms_button;
-       Gtk::CheckButton show_waveforms_recording_button;
-       Gtk::CheckButton mixer_strip_width_button;
-       Gtk::CheckButton show_measures_button;
-       Gtk::CheckButton follow_playhead_button;
-       Gtk::ComboBoxText meter_hold_combo;
-       Gtk::ComboBoxText meter_falloff_combo;
-
-       void setup_display_options();
-       void show_waveforms_clicked ();
-       void show_waveforms_recording_clicked ();
-       void show_measures_clicked ();
-       void strip_width_clicked ();
-       void follow_playhead_clicked ();
-       void meter_hold_chosen ();
-       void meter_falloff_chosen ();
-       
-       void display_control_changed (Editing::DisplayControl);
+       void history_depth_changed();
+       void saved_history_depth_changed();
+       void save_history_toggled ();
+       void limit_history_toggled ();
 
        /* Sync */
 
        Gtk::VBox sync_packer;
 
-       Gtk::CheckButton send_mtc_button;
-       Gtk::CheckButton send_mmc_button;
-       Gtk::CheckButton jack_time_master_button;
        Gtk::ComboBoxText slave_type_combo;
-       Gtk::ComboBoxText smpte_fps_combo;
        AudioClock smpte_offset_clock;
        Gtk::CheckButton smpte_offset_negative_button;
+       Gtk::CheckButton synced_timecode_button;
 
        void setup_sync_options ();
-       gint send_mtc_toggled (GdkEventButton*, Gtk::CheckButton*);
 
-       void slave_type_chosen ();
-       void jack_time_master_clicked ();
-       void jack_transport_master_clicked ();
-       void smpte_fps_chosen ();
        void smpte_offset_chosen ();
        void smpte_offset_negative_clicked ();
+       void synced_timecode_toggled ();
 
        /* MIDI */
 
        Gtk::VBox  midi_packer;
-       Gtk::CheckButton midi_feedback_button;
-       Gtk::CheckButton midi_control_button;
-       Gtk::CheckButton mmc_control_button;
 
        Gtk::RadioButton::Group mtc_button_group;
        Gtk::RadioButton::Group mmc_button_group;
        Gtk::RadioButton::Group midi_button_group;
+       Gtk::RadioButton::Group midi_clock_button_group;
+
+       Gtk::Table      midi_port_table;
+       std::vector<Gtk::Widget*> midi_port_table_widgets;
+       Gtk::Adjustment mmc_receive_device_id_adjustment;
+       Gtk::SpinButton mmc_receive_device_id_spinner;
+       Gtk::Adjustment mmc_send_device_id_adjustment;
+       Gtk::SpinButton mmc_send_device_id_spinner;
+       Gtk::Button     add_midi_port_button;
+
+       void add_midi_port ();
+       void remove_midi_port (MIDI::Port*);
+       void redisplay_midi_ports ();
 
-       void send_mmc_toggled (Gtk::CheckButton*);
-       void mmc_control_toggled (Gtk::CheckButton*);
-       void midi_control_toggled (Gtk::CheckButton*);
-       void midi_feedback_toggled (Gtk::CheckButton*);
+       void port_online_toggled (MIDI::Port*,Gtk::ToggleButton*);
+       void port_trace_in_toggled (MIDI::Port*,Gtk::ToggleButton*);
+       void port_trace_out_toggled (MIDI::Port*,Gtk::ToggleButton*);
 
-       gint port_online_toggled (GdkEventButton*,MIDI::Port*,Gtk::ToggleButton*);
-       gint port_trace_in_toggled (GdkEventButton*,MIDI::Port*,Gtk::ToggleButton*);
-       gint port_trace_out_toggled (GdkEventButton*,MIDI::Port*,Gtk::ToggleButton*);
-       
-       gint mmc_port_chosen (GdkEventButton*,MIDI::Port*,Gtk::RadioButton*);
-       gint mtc_port_chosen (GdkEventButton*,MIDI::Port*,Gtk::RadioButton*);
-       gint midi_port_chosen (GdkEventButton*,MIDI::Port*,Gtk::RadioButton*);
+       void mmc_port_chosen (MIDI::Port*,Gtk::RadioButton*, Gtk::Button*);
+       void mtc_port_chosen (MIDI::Port*,Gtk::RadioButton*, Gtk::Button*);
+       void midi_port_chosen (MIDI::Port*,Gtk::RadioButton*, Gtk::Button*);
+       void midi_clock_port_chosen (MIDI::Port*,Gtk::RadioButton*, Gtk::Button*);
+       bool port_removable (MIDI::Port*);
+
+       void mmc_receive_device_id_adjusted ();
+       void mmc_send_device_id_adjusted ();
 
        void map_port_online (MIDI::Port*, Gtk::ToggleButton*);
 
@@ -205,7 +162,8 @@ class OptionEditor : public Gtk::Dialog
        enum PortIndex {
                MtcIndex = 0,
                MmcIndex = 1,
-               MidiIndex = 2
+               MidiIndex = 2,
+               MidiClockIndex = 3
        };
 
        std::map<MIDI::Port*,std::vector<Gtk::RadioButton*> > port_toggle_buttons;
@@ -225,12 +183,12 @@ class OptionEditor : public Gtk::Dialog
        void setup_click_editor ();
        void clear_click_editor ();
 
-       void click_chosen (std::string paths);
-       void click_emphasis_chosen (std::string paths);
+       void click_chosen (const string & paths);
+       void click_emphasis_chosen (const string & paths);
 
        void click_browse_clicked ();
        void click_emphasis_browse_clicked ();
-       
+
        void click_sound_changed ();
        void click_emphasis_sound_changed ();
 
@@ -250,6 +208,7 @@ class OptionEditor : public Gtk::Dialog
        /* keyboard/mouse */
 
        Gtk::Table keyboard_mouse_table;
+       Gtk::ComboBoxText keyboard_layout_selector;
        Gtk::ComboBoxText edit_modifier_combo;
        Gtk::ComboBoxText delete_modifier_combo;
        Gtk::ComboBoxText snap_modifier_combo;
@@ -258,48 +217,15 @@ class OptionEditor : public Gtk::Dialog
        Gtk::Adjustment edit_button_adjustment;
        Gtk::SpinButton edit_button_spin;
 
+       std::map<std::string,std::string> bindings_files;
+
        void setup_keyboard_options ();
        void delete_modifier_chosen ();
        void edit_modifier_chosen ();
        void snap_modifier_chosen ();
        void edit_button_changed ();
        void delete_button_changed ();
-
-       /* Miscellany */
-
-       Gtk::VBox misc_packer;
-
-       Gtk::CheckButton auto_connect_inputs_button;
-
-       Gtk::RadioButton auto_connect_output_physical_button;
-       Gtk::RadioButton auto_connect_output_master_button;
-       Gtk::RadioButton auto_connect_output_manual_button;
-       Gtk::RadioButton::Group auto_connect_output_button_group;
-
-       Gtk::CheckButton hw_monitor_button;
-       Gtk::CheckButton sw_monitor_button;
-       Gtk::CheckButton plugins_stop_button;
-       Gtk::CheckButton plugins_on_rec_button;
-       Gtk::CheckButton verify_remove_last_capture_button;
-       Gtk::CheckButton stop_rec_on_xrun_button;
-       Gtk::CheckButton stop_at_end_button;
-       Gtk::CheckButton debug_keyboard_button;
-       Gtk::CheckButton speed_quieten_button;
-
-       void setup_misc_options ();
-       void plugins_stop_with_transport_clicked ();
-       void verify_remove_last_capture_clicked ();
-       void plugins_on_while_recording_clicked ();
-       void auto_connect_inputs_clicked ();
-       void auto_connect_output_physical_clicked ();
-       void auto_connect_output_master_clicked ();
-       void auto_connect_output_manual_clicked ();
-       void hw_monitor_clicked ();
-       void sw_monitor_clicked ();
-       void stop_rec_on_xrun_clicked ();
-       void stop_at_end_clicked ();
-       void debug_keyboard_clicked ();
-       void speed_quieten_clicked ();
+       void bindings_changed ();
 
        void fixup_combo_size (Gtk::ComboBoxText&, std::vector<std::string>& strings);
 };