2008-02-16 17:43:18 -05:00
|
|
|
#ifndef __gtk_ardour_option_editor_h__
|
|
|
|
#define __gtk_ardour_option_editor_h__
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
/*
|
2008-08-04 18:37:24 -04:00
|
|
|
Copyright (C) 2001 Paul Davis
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
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
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2008-02-16 17:43:18 -05:00
|
|
|
#include <vector>
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-09-26 10:33:53 -04:00
|
|
|
#include <gtkmm/notebook.h>
|
|
|
|
#include <gtkmm/checkbutton.h>
|
|
|
|
#include <gtkmm/table.h>
|
|
|
|
#include <gtkmm/entry.h>
|
|
|
|
#include <gtkmm/box.h>
|
|
|
|
#include <gtkmm/label.h>
|
|
|
|
#include <gtkmm/adjustment.h>
|
2005-10-10 16:38:53 -04:00
|
|
|
#include <gtkmm/scale.h>
|
2005-09-26 10:33:53 -04:00
|
|
|
#include <gtkmm/spinbutton.h>
|
|
|
|
#include <gtkmm/radiobutton.h>
|
|
|
|
#include <gtkmm/comboboxtext.h>
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "ardour/session.h"
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
#include "ardour_dialog.h"
|
|
|
|
#include "editing.h"
|
|
|
|
#include "audio_clock.h"
|
|
|
|
|
|
|
|
class ARDOUR_UI;
|
|
|
|
class PublicEditor;
|
|
|
|
class Mixer_UI;
|
|
|
|
class IOSelector;
|
|
|
|
class GainMeter;
|
|
|
|
class PannerUI;
|
|
|
|
|
2007-10-11 18:07:47 -04:00
|
|
|
class OptionEditor : public ArdourDialog
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
OptionEditor (ARDOUR_UI&, PublicEditor&, Mixer_UI&);
|
|
|
|
~OptionEditor ();
|
|
|
|
|
|
|
|
void set_session (ARDOUR::Session *);
|
|
|
|
void save ();
|
|
|
|
|
|
|
|
private:
|
|
|
|
ARDOUR::Session *session;
|
|
|
|
ARDOUR_UI& ui;
|
|
|
|
PublicEditor& editor;
|
|
|
|
Mixer_UI& mixer;
|
|
|
|
|
|
|
|
Gtk::Notebook notebook;
|
|
|
|
|
|
|
|
/* Generic */
|
|
|
|
|
|
|
|
gint wm_close (GdkEventAny *);
|
2005-11-22 23:13:32 -05:00
|
|
|
bool focus_out_event_handler (GdkEventFocus*, void (OptionEditor::*pmf)());
|
2007-10-11 18:07:47 -04:00
|
|
|
void parameter_changed (const char* name);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
/* paths */
|
|
|
|
|
2006-07-26 15:22:06 -04:00
|
|
|
Gtk::Table path_table;
|
|
|
|
Gtk::Entry session_raid_entry;
|
2006-01-07 21:56:49 -05:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
void setup_path_options();
|
|
|
|
void add_session_paths ();
|
|
|
|
void remove_session_paths ();
|
|
|
|
void raid_path_changed ();
|
|
|
|
|
2007-10-11 18:07:47 -04:00
|
|
|
/* misc */
|
|
|
|
|
|
|
|
Gtk::VBox misc_packer;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
Gtk::Adjustment short_xfade_adjustment;
|
|
|
|
Gtk::HScale short_xfade_slider;
|
2006-03-21 10:27:57 -05:00
|
|
|
Gtk::Adjustment destructo_xfade_adjustment;
|
|
|
|
Gtk::HScale destructo_xfade_slider;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2007-10-11 18:07:47 -04:00
|
|
|
void setup_misc_options();
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
void short_xfade_adjustment_changed ();
|
2006-03-21 10:27:57 -05:00
|
|
|
void destructo_xfade_adjustment_changed ();
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2007-10-11 18:07:47 -04:00
|
|
|
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 ();
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
/* Sync */
|
|
|
|
|
|
|
|
Gtk::VBox sync_packer;
|
|
|
|
|
2005-09-26 10:33:53 -04:00
|
|
|
Gtk::ComboBoxText slave_type_combo;
|
2005-09-25 14:42:24 -04:00
|
|
|
AudioClock smpte_offset_clock;
|
|
|
|
Gtk::CheckButton smpte_offset_negative_button;
|
2007-10-11 18:07:47 -04:00
|
|
|
Gtk::CheckButton synced_timecode_button;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
void setup_sync_options ();
|
|
|
|
|
|
|
|
void smpte_offset_chosen ();
|
|
|
|
void smpte_offset_negative_clicked ();
|
2007-10-11 18:07:47 -04:00
|
|
|
void synced_timecode_toggled ();
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
/* MIDI */
|
|
|
|
|
|
|
|
Gtk::VBox midi_packer;
|
|
|
|
|
2005-11-12 17:07:07 -05:00
|
|
|
Gtk::RadioButton::Group mtc_button_group;
|
|
|
|
Gtk::RadioButton::Group mmc_button_group;
|
|
|
|
Gtk::RadioButton::Group midi_button_group;
|
2008-08-04 18:37:24 -04:00
|
|
|
Gtk::RadioButton::Group midi_clock_button_group;
|
2005-11-12 17:07:07 -05:00
|
|
|
|
2007-08-06 10:19:19 -04:00
|
|
|
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;
|
2008-10-09 10:15:45 -04:00
|
|
|
Gtk::Adjustment initial_program_change_adjustment;
|
|
|
|
Gtk::SpinButton initial_program_change_spinner;
|
2007-08-06 10:19:19 -04:00
|
|
|
|
|
|
|
void add_midi_port ();
|
|
|
|
void remove_midi_port (MIDI::Port*);
|
|
|
|
void redisplay_midi_ports ();
|
2007-02-20 16:26:20 -05:00
|
|
|
|
2006-11-17 11:14:44 -05:00
|
|
|
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*);
|
2008-08-04 18:37:24 -04:00
|
|
|
|
2007-08-06 10:19:19 -04:00
|
|
|
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*);
|
2008-08-04 18:37:24 -04:00
|
|
|
void midi_clock_port_chosen (MIDI::Port*,Gtk::RadioButton*, Gtk::Button*);
|
2007-08-06 10:19:19 -04:00
|
|
|
bool port_removable (MIDI::Port*);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2007-08-06 10:19:19 -04:00
|
|
|
void mmc_receive_device_id_adjusted ();
|
|
|
|
void mmc_send_device_id_adjusted ();
|
2007-02-20 16:26:20 -05:00
|
|
|
|
2008-10-09 10:15:45 -04:00
|
|
|
void initial_program_change_adjusted ();
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
void map_port_online (MIDI::Port*, Gtk::ToggleButton*);
|
|
|
|
|
|
|
|
void setup_midi_options();
|
|
|
|
|
|
|
|
enum PortIndex {
|
|
|
|
MtcIndex = 0,
|
|
|
|
MmcIndex = 1,
|
2008-08-04 18:37:24 -04:00
|
|
|
MidiIndex = 2,
|
|
|
|
MidiClockIndex = 3
|
2005-09-25 14:42:24 -04:00
|
|
|
};
|
|
|
|
|
2005-10-12 16:06:20 -04:00
|
|
|
std::map<MIDI::Port*,std::vector<Gtk::RadioButton*> > port_toggle_buttons;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
/* Click */
|
|
|
|
|
|
|
|
IOSelector* click_io_selector;
|
|
|
|
GainMeter* click_gpm;
|
|
|
|
PannerUI* click_panner;
|
2008-09-10 11:03:30 -04:00
|
|
|
bool first_click_setup;
|
|
|
|
Gtk::HBox click_hpacker;
|
2005-09-25 14:42:24 -04:00
|
|
|
Gtk::VBox click_packer;
|
|
|
|
Gtk::Table click_table;
|
|
|
|
Gtk::Entry click_path_entry;
|
|
|
|
Gtk::Entry click_emphasis_path_entry;
|
|
|
|
Gtk::Button click_browse_button;
|
|
|
|
Gtk::Button click_emphasis_browse_button;
|
|
|
|
|
|
|
|
void setup_click_editor ();
|
|
|
|
void clear_click_editor ();
|
|
|
|
|
2005-12-22 07:23:54 -05:00
|
|
|
void click_chosen (const string & paths);
|
|
|
|
void click_emphasis_chosen (const string & paths);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
void click_browse_clicked ();
|
|
|
|
void click_emphasis_browse_clicked ();
|
2008-08-04 18:37:24 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
void click_sound_changed ();
|
|
|
|
void click_emphasis_sound_changed ();
|
|
|
|
|
|
|
|
/* Auditioner */
|
|
|
|
|
|
|
|
Gtk::VBox audition_packer;
|
|
|
|
Gtk::HBox audition_hpacker;
|
|
|
|
Gtk::Label audition_label;
|
|
|
|
IOSelector* auditioner_io_selector;
|
|
|
|
GainMeter* auditioner_gpm;
|
|
|
|
PannerUI* auditioner_panner;
|
|
|
|
|
|
|
|
void setup_auditioner_editor ();
|
|
|
|
void clear_auditioner_editor ();
|
|
|
|
void connect_audition_editor ();
|
|
|
|
|
|
|
|
/* keyboard/mouse */
|
|
|
|
|
|
|
|
Gtk::Table keyboard_mouse_table;
|
2008-02-16 17:43:18 -05:00
|
|
|
Gtk::ComboBoxText keyboard_layout_selector;
|
2005-09-26 10:33:53 -04:00
|
|
|
Gtk::ComboBoxText edit_modifier_combo;
|
|
|
|
Gtk::ComboBoxText delete_modifier_combo;
|
|
|
|
Gtk::ComboBoxText snap_modifier_combo;
|
2005-09-25 14:42:24 -04:00
|
|
|
Gtk::Adjustment delete_button_adjustment;
|
|
|
|
Gtk::SpinButton delete_button_spin;
|
|
|
|
Gtk::Adjustment edit_button_adjustment;
|
|
|
|
Gtk::SpinButton edit_button_spin;
|
|
|
|
|
2008-02-16 17:43:18 -05:00
|
|
|
std::map<std::string,std::string> bindings_files;
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
void setup_keyboard_options ();
|
2005-11-15 21:57:22 -05:00
|
|
|
void delete_modifier_chosen ();
|
|
|
|
void edit_modifier_chosen ();
|
|
|
|
void snap_modifier_chosen ();
|
2005-09-25 14:42:24 -04:00
|
|
|
void edit_button_changed ();
|
|
|
|
void delete_button_changed ();
|
2008-02-16 17:43:18 -05:00
|
|
|
void bindings_changed ();
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-11-12 22:53:51 -05:00
|
|
|
void fixup_combo_size (Gtk::ComboBoxText&, std::vector<std::string>& strings);
|
2005-09-25 14:42:24 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __gtk_ardour_option_editor_h__ */
|
|
|
|
|
|
|
|
|