fix keyboard event handling for host-provided plugin GUIs
[ardour2.git] / gtk2_ardour / sfdb_ui.h
blob0f164bcb1165f9ecfa9923225e3ec0bec6ddbd9d
1 /*
2 Copyright (C) 2005-2006 Paul Davis
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 #ifndef __ardour_sfdb_ui_h__
21 #define __ardour_sfdb_ui_h__
23 #include <string>
24 #include <vector>
25 #include <map>
26 #include <glibmm/ustring.h>
28 #include <sigc++/signal.h>
30 #include <gtkmm/box.h>
31 #include <gtkmm/button.h>
32 #include <gtkmm/checkbutton.h>
33 #include <gtkmm/comboboxtext.h>
34 #include <gtkmm/dialog.h>
35 #include <gtkmm/entry.h>
36 #include <gtkmm/filechooserwidget.h>
37 #include <gtkmm/frame.h>
38 #include <gtkmm/label.h>
40 #include <ardour/session.h>
41 #include <ardour/audiofilesource.h>
43 #include "ardour_dialog.h"
44 #include "editing.h"
46 namespace ARDOUR {
47 class Session;
50 class GainMeter;
52 class SoundFileBox : public Gtk::VBox
54 public:
55 SoundFileBox (bool persistent);
56 virtual ~SoundFileBox () {};
58 void set_session (ARDOUR::Session* s);
59 bool setup_labels (const Glib::ustring& filename);
61 void audition();
62 bool audition_oneshot();
63 bool autoplay () const;
65 protected:
66 ARDOUR::Session* _session;
67 Glib::ustring path;
69 ARDOUR::SoundFileInfo sf_info;
71 Gtk::Table table;
73 Gtk::Label length;
74 Gtk::Label format;
75 Gtk::Label channels;
76 Gtk::Label samplerate;
77 Gtk::Label timecode;
79 Gtk::Label channels_value;
80 Gtk::Label samplerate_value;
82 Gtk::Label format_text;
83 AudioClock length_clock;
84 AudioClock timecode_clock;
86 Gtk::Frame border_frame;
87 Gtk::Label preview_label;
89 Gtk::TextView tags_entry;
91 Gtk::VBox main_box;
92 Gtk::VBox path_box;
93 Gtk::HBox bottom_box;
95 Gtk::Button play_btn;
96 Gtk::Button stop_btn;
97 Gtk::CheckButton autoplay_btn;
98 Gtk::Button apply_btn;
100 bool tags_entry_left (GdkEventFocus* event);
101 void tags_changed ();
102 void save_tags (const std::vector<std::string>&);
103 void stop_audition ();
106 class SoundFileBrowser : public ArdourDialog
108 private:
109 class FoundTagColumns : public Gtk::TreeModel::ColumnRecord
111 public:
112 Gtk::TreeModelColumn<Glib::ustring> pathname;
114 FoundTagColumns() { add(pathname); }
117 FoundTagColumns found_list_columns;
118 Glib::RefPtr<Gtk::ListStore> found_list;
120 FoundTagColumns freesound_list_columns;
121 Glib::RefPtr<Gtk::ListStore> freesound_list;
123 public:
124 SoundFileBrowser (Gtk::Window& parent, std::string title, ARDOUR::Session* _s, bool persistent);
125 virtual ~SoundFileBrowser ();
127 virtual void set_session (ARDOUR::Session*);
128 std::vector<Glib::ustring> get_paths ();
130 void clear_selection ();
132 Gtk::FileChooserWidget chooser;
134 SoundFileBox preview;
136 Gtk::Entry found_entry;
137 Gtk::Button found_search_btn;
138 Gtk::TreeView found_list_view;
140 Gtk::Entry freesound_name_entry;
141 Gtk::Entry freesound_pass_entry;
142 Gtk::Entry freesound_entry;
143 Gtk::Button freesound_search_btn;
144 Gtk::TreeView freesound_list_view;
146 void freesound_search_thread();
148 protected:
149 bool resetting_ourselves;
151 Gtk::FileFilter custom_filter;
152 Gtk::FileFilter matchall_filter;
153 Gtk::HBox hpacker;
155 static Glib::ustring persistent_folder;
157 Gtk::Notebook notebook;
159 GainMeter* gm;
160 Gtk::VBox meter_packer;
161 void add_gain_meter ();
162 void remove_gain_meter ();
163 void meter ();
164 void start_metering ();
165 void stop_metering ();
166 sigc::connection metering_connection;
168 void update_preview ();
170 void found_list_view_selected ();
171 void found_list_view_activated (const Gtk::TreeModel::Path& path, Gtk::TreeViewColumn*);
172 void found_search_clicked ();
174 void freesound_list_view_selected ();
175 void freesound_list_view_activated (const Gtk::TreeModel::Path& path, Gtk::TreeViewColumn*);
176 void freesound_search_clicked ();
178 void chooser_file_activated ();
180 bool on_custom (const Gtk::FileFilter::Info& filter_info);
182 virtual bool reset_options() { return true; }
184 protected:
185 void on_show();
189 class SoundFileChooser : public SoundFileBrowser
191 public:
192 SoundFileChooser (Gtk::Window& parent, std::string title, ARDOUR::Session* _s = 0);
193 virtual ~SoundFileChooser () {};
195 Glib::ustring get_filename ();
197 protected:
198 void on_hide();
201 class SoundFileOmega : public SoundFileBrowser
204 public:
205 SoundFileOmega (Gtk::Window& parent, std::string title, ARDOUR::Session* _s, int selected_tracks, bool persistent,
206 Editing::ImportMode mode_hint = Editing::ImportAsTrack);
208 void reset (int selected_tracks);
210 Gtk::ComboBoxText action_combo;
211 Gtk::ComboBoxText where_combo;
212 Gtk::ComboBoxText channel_combo;
213 Gtk::ComboBoxText src_combo;
215 Gtk::CheckButton copy_files_btn;
217 void set_mode (Editing::ImportMode);
218 Editing::ImportMode get_mode() const;
219 Editing::ImportPosition get_position() const;
220 Editing::ImportDisposition get_channel_disposition() const;
221 ARDOUR::SrcQuality get_src_quality() const;
223 protected:
224 void on_hide();
226 private:
227 uint32_t selected_track_cnt;
229 typedef std::map<Glib::ustring,Editing::ImportDisposition> DispositionMap;
230 DispositionMap disposition_map;
232 Gtk::HBox options;
233 Gtk::VBox block_two;
234 Gtk::VBox block_three;
235 Gtk::VBox block_four;
237 bool check_info (const std::vector<Glib::ustring>& paths,
238 bool& same_size, bool& src_needed, bool& multichannel);
240 static bool check_link_status (const ARDOUR::Session&, const std::vector<Glib::ustring>& paths);
242 void file_selection_changed ();
243 bool reset_options ();
244 void reset_options_noret ();
245 bool bad_file_message ();
248 #endif // __ardour_sfdb_ui_h__