/* * Copyright (C) 2021 Robin Gareus * * 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., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #ifndef __gtk_ardour_trigger_clip_picker_h__ #define __gtk_ardour_trigger_clip_picker_h__ #include #include #include #include #include #include #include #include #include #include #include "ardour/types.h" #include "ardour/session_handle.h" #include "widgets/ardour_dropdown.h" #include "widgets/ardour_button.h" #include "widgets/ardour_knob.h" #include "instrument_selector.h" class PluginUIWindow; class TriggerClipPicker : public Gtk::VBox, public ARDOUR::SessionHandlePtr { public: TriggerClipPicker (); ~TriggerClipPicker (); void set_session (ARDOUR::Session*); ARDOUR::PluginInfoPtr instrument_plugin () const { return _auditioner_combo.selected_instrument (); } private: void list_dir (std::string const&, Gtk::TreeNodeChildren const* pc = NULL); void open_dir (); void open_downloader (); void edit_path (); bool refill_dropdown (); void parameter_changed (std::string const&); void clip_added (std::string const&, void*); void row_selected (); void cursor_changed (); void row_activated (Gtk::TreeModel::Path const&, Gtk::TreeViewColumn*); bool test_expand (Gtk::TreeModel::iterator const&, Gtk::TreeModel::Path const&); void row_collapsed (Gtk::TreeModel::iterator const&, Gtk::TreeModel::Path const&); void drag_data_get (Glib::RefPtr const&, Gtk::SelectionData&, guint, guint); void drag_begin (Glib::RefPtr const&); void drag_end (Glib::RefPtr const&); bool drag_motion (Glib::RefPtr const&, int, int, guint); void drag_data_received (Glib::RefPtr const&, int, int, Gtk::SelectionData const&, guint, guint); bool maybe_add_dir (std::string const&); void audition_selected (); void audition (std::string const&); void audition_active (bool); void audition_progress (ARDOUR::samplecnt_t, ARDOUR::samplecnt_t); void audition_processors_changed (); void audition_processor_going_away (); void audition_processor_idle (); bool audition_processor_viz (bool); void audition_show_plugin_ui (); void stop_audition (); void autoplay_toggled (); void refresh_library (); void open_library (); bool seek_button_press (GdkEventButton*); bool seek_button_release (GdkEventButton*); void auditioner_combo_changed (); void on_theme_changed (); void mark_auditioned (Gtk::TreeModel::iterator); void reset_audition_marks (bool force = false); ArdourWidgets::ArdourDropdown _clip_dir_menu; Gtk::FileChooserDialog _fcd; struct Columns : public Gtk::TreeModel::ColumnRecord { Columns () { add (name); add (path); add (read); add (file); add (color); add (auditioned); } Gtk::TreeModelColumn name; Gtk::TreeModelColumn path; Gtk::TreeModelColumn read; Gtk::TreeModelColumn file; Gtk::TreeModelColumn color; Gtk::TreeModelColumn auditioned; }; Columns _columns; Glib::RefPtr _model; Gtk::TreeView _view; Gtk::ScrolledWindow _scroller; Gtk::Table _auditable; ArdourWidgets::ArdourButton _play_btn; ArdourWidgets::ArdourButton _stop_btn; ArdourWidgets::ArdourKnob _gain_control; ArdourWidgets::ArdourButton _open_library_btn; ArdourWidgets::ArdourButton _refresh_btn; ArdourWidgets::ArdourButton _show_plugin_btn; Gtk::HScale _seek_slider; Gtk::CheckButton _autoplay_btn; Gdk::Color _color_foreground; Gdk::Color _color_auditioned; /* MIDI props */ Gtk::Table _midi_prop_table; Gtk::Label format_text; Gtk::Label channels_value; InstrumentSelector _auditioner_combo; std::string _current_path; std::string _clip_library_dir; bool _clip_library_listed; bool _ignore_list_dir; std::set _root_paths; bool _seeking; PluginUIWindow* _audition_plugnui; PBD::ScopedConnectionList _auditioner_connections; PBD::ScopedConnectionList _processor_connections; PBD::ScopedConnection _config_connection; PBD::ScopedConnection _clip_added_connection; sigc::connection _idle_connection; }; #endif