/* Copyright (C) 2014 Waves Audio Ltd. 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. */ #include #include // class TracksControlPanel : public WavesDialog { public: void refresh_session_settings_info (); private: // attributes uint32_t _desired_sample_rate; bool _have_control; // this flag is set for emidiate return during combo-box change callbacks // when we don need to process current combo-box change uint32_t _ignore_changes; std::string _current_device; // Sync stuff PBD::ScopedConnectionList update_connections; PBD::ScopedConnection running_connection; PBD::ScopedConnection stopped_connection; // methods virtual void init(); DeviceConnectionControl& add_device_capture_control(std::string port_name, bool active, uint16_t capture_number, std::string track_name); DeviceConnectionControl& add_device_playback_control(std::string port_name, bool active, uint16_t playback_number); MidiDeviceConnectionControl& add_midi_device_control(const std::string& midi_device_name, const std::string& capture_name, bool capture_active, const std::string& playback_name, bool playback_active); void on_audio_settings (WavesButton*); void on_midi_settings (WavesButton*); void on_session_settings (WavesButton*); void on_multi_out (WavesButton*); void on_stereo_out (WavesButton*); void on_browse_button (WavesButton*); void save_default_session_path(); void save_auto_lock_time(); void save_auto_save_time(); void save_pre_record_buffer(); void on_ok(WavesButton*); void on_cancel(WavesButton*); void on_apply(WavesButton*); void update_configs(); void update_session_config(); void on_capture_active_changed (DeviceConnectionControl* capture_control, bool active); void on_playback_active_changed (DeviceConnectionControl* playback_control, bool active); void on_midi_capture_active_changed (MidiDeviceConnectionControl* control, bool active); void on_midi_playback_active_changed (MidiDeviceConnectionControl* control, bool active); void on_all_inputs_on_button(WavesButton*); void on_all_inputs_off_button(WavesButton*); void on_all_outputs_on_button(WavesButton*); void on_all_outputs_off_button(WavesButton*); void on_name_tracks_after_driver(WavesButton*); void on_reset_tracks_name_to_default(WavesButton*); void on_yes_button(WavesButton*); void on_no_button(WavesButton*); void on_control_panel_button(WavesButton*); ARDOUR::TracksAutoNamingRule _tracks_naming_rule; void engine_changed (); void device_changed (bool show_confirm_dial); void buffer_size_changed (); void sample_rate_changed (); void engine_running (); void engine_stopped (); void file_type_changed (); void bit_depth_changed (); void frame_rate_changed (); void populate_engine_combo (); void populate_device_combo (); void populate_sample_rate_combo (); void populate_buffer_size_combo (); void populate_output_mode (); void populate_input_channels(); void populate_output_channels(); void populate_midi_ports(); void populate_default_session_path(); // Session Settings void populate_file_type_combo(); void populate_bit_depth_combo(); void populate_frame_rate_combo(); void populate_auto_lock_timer_combo(); void populate_save_lock_timer_combo(); void populate_pre_record_buffer_combo(); // Engine State update callback handlers void on_port_registration_update(); void on_buffer_size_update (); void on_device_list_update (bool current_device_disconnected); void on_parameter_changed (const std::string& parameter_name); void on_audio_input_configuration_changed (); void on_audio_output_configuration_changed (); void on_midi_input_configuration_changed (); void on_midi_output_configuration_changed (); void cleanup_input_channels_list(); void cleanup_output_channels_list(); void cleanup_midi_device_list(); std::string bufsize_as_string (uint32_t sz); std::string get_device_name() const { return _device_combo.get_active_text (); }; ARDOUR::framecnt_t get_sample_rate() const; ARDOUR::pframes_t get_buffer_size () const; uint32_t get_input_channels () const { return 0; }; uint32_t get_output_channels () const { return 0; }; uint32_t get_input_latency () const { return 0; }; uint32_t get_output_latency () const { return 0; }; std::string _default_path_name; void show_buffer_duration (); //};