correct check for presence of / or \ in a session name
[ardour.git] / gtk2_ardour / option_editor.h
index 4d6736aa84a4a6b046f64d74bb48198a89ceda81..ed6d752e6e6bfe1e082950159dadaeaedbdb9e3e 100644 (file)
@@ -1,3 +1,6 @@
+#ifndef __gtk_ardour_option_editor_h__
+#define __gtk_ardour_option_editor_h__
+
 /*
     Copyright (C) 2001 Paul Davis 
 
     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&);
@@ -67,56 +68,58 @@ class OptionEditor : public Gtk::Dialog
 
        gint wm_close (GdkEventAny *);
        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;
-
-       struct SoundFilePathColumns : public Gtk::TreeModel::ColumnRecord {
-           public:
-                 SoundFilePathColumns() { add (paths); }
-                 Gtk::TreeModelColumn<std::string> paths;
-                           
-       };
-
-       SoundFilePathColumns sfdb_path_columns;
-       Glib::RefPtr<Gtk::ListStore> sfdb_paths;
-       Gtk::TreeView sfdb_path_view;
+       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::VBox        misc_packer;
 
-       Gtk::VBox        fade_packer;
        Gtk::Adjustment  short_xfade_adjustment;
        Gtk::HScale      short_xfade_slider;
        Gtk::Adjustment  destructo_xfade_adjustment;
        Gtk::HScale      destructo_xfade_slider;
 
-       void setup_fade_options();
+       void setup_misc_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;
+
+       void history_depth_changed();
+       void saved_history_depth_changed();
+       void save_history_toggled ();
+       void limit_history_toggled ();
+
        /* Sync */
 
        Gtk::VBox sync_packer;
 
        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 ();
 
-       void smpte_fps_chosen ();
        void smpte_offset_chosen ();
        void smpte_offset_negative_clicked ();
+       void synced_timecode_toggled ();
 
        /* MIDI */
 
@@ -126,13 +129,33 @@ class OptionEditor : public Gtk::Dialog
        Gtk::RadioButton::Group mmc_button_group;
        Gtk::RadioButton::Group midi_button_group;
 
-       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*);
+       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;
+       Gtk::Adjustment initial_program_change_adjustment;
+       Gtk::SpinButton initial_program_change_spinner;
+
+       void add_midi_port ();
+       void remove_midi_port (MIDI::Port*);
+       void redisplay_midi_ports ();
+
+       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*);
        
-       void mmc_port_chosen (MIDI::Port*,Gtk::RadioButton*);
-       void mtc_port_chosen (MIDI::Port*,Gtk::RadioButton*);
-       void midi_port_chosen (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*);
+       bool port_removable (MIDI::Port*);
+
+       void mmc_receive_device_id_adjusted ();
+       void mmc_send_device_id_adjusted ();
+
+       void initial_program_change_adjusted ();
 
        void map_port_online (MIDI::Port*, Gtk::ToggleButton*);
 
@@ -151,6 +174,8 @@ class OptionEditor : public Gtk::Dialog
        IOSelector*   click_io_selector;
        GainMeter* click_gpm;
        PannerUI*     click_panner;
+       bool          first_click_setup;
+       Gtk::HBox     click_hpacker;
        Gtk::VBox     click_packer;
        Gtk::Table    click_table;
        Gtk::Entry    click_path_entry;
@@ -186,6 +211,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;
@@ -194,14 +220,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 ();
-
-       void fixup_combo_size (Gtk::ComboBoxText&, std::vector<std::string>& strings);
+       void bindings_changed ();
 };
 
 #endif /* __gtk_ardour_option_editor_h__ */