Prefer key-event dispatch over emulated events for VST plugins.
[ardour.git] / gtk2_ardour / sfdb_ui.h
1 /*
2     Copyright (C) 2005-2006 Paul Davis
3
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.
8
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.
13
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.
17
18 */
19
20 #ifndef __ardour_sfdb_ui_h__
21 #define __ardour_sfdb_ui_h__
22
23 #include <string>
24 #include <vector>
25 #include <map>
26
27 #include <sigc++/signal.h>
28
29 #include <gtkmm/stock.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>
39 #include <gtkmm/scale.h>
40 #include <gtkmm/textview.h>
41 #include <gtkmm/table.h>
42 #include <gtkmm/liststore.h>
43 #include <gtkmm/spinbutton.h>
44 #include <gtkmm/notebook.h>
45
46
47 #include "ardour/audiofilesource.h"
48 #include "ardour/session_handle.h"
49
50 #include "ardour_window.h"
51 #include "editing.h"
52 #include "audio_clock.h"
53 #include "instrument_selector.h"
54
55 namespace ARDOUR {
56         class Session;
57 };
58
59 class GainMeter;
60 class Mootcher;
61
62 class SoundFileBox : public Gtk::VBox, public ARDOUR::SessionHandlePtr, public PBD::ScopedConnectionList
63 {
64 public:
65         SoundFileBox (bool persistent);
66         virtual ~SoundFileBox () {};
67
68         void set_session (ARDOUR::Session* s);
69         bool setup_labels (const std::string& filename);
70
71         void audition();
72         bool audition_oneshot();
73         bool autoplay () const;
74         void set_src_quality(ARDOUR::SrcQuality q) { _src_quality = q; }
75         void set_import_position(Editing::ImportPosition p) { _import_position = p; }
76
77 protected:
78         std::string path;
79
80         ARDOUR::SoundFileInfo sf_info;
81
82         Gtk::Table table;
83
84         Gtk::Label length;
85         Gtk::Label format;
86         Gtk::Label channels;
87         Gtk::Label samplerate;
88         Gtk::Label timecode;
89         Gtk::Label tempomap;
90
91         Gtk::Label channels_value;
92         Gtk::Label samplerate_value;
93         Gtk::Label tempomap_value;
94
95         Gtk::Label format_text;
96         AudioClock length_clock;
97         AudioClock timecode_clock;
98
99         Gtk::Frame border_frame;
100         Gtk::Label preview_label;
101
102         Gtk::TextView tags_entry;
103
104         Gtk::VBox main_box;
105         Gtk::VBox path_box;
106         Gtk::HBox bottom_box;
107
108         Gtk::Button play_btn;
109         Gtk::Button stop_btn;
110         Gtk::CheckButton autoplay_btn;
111         Gtk::Button apply_btn;
112         Gtk::HScale seek_slider;
113
114         PBD::ScopedConnectionList auditioner_connections;
115         void audition_active(bool);
116         void audition_progress(ARDOUR::samplecnt_t, ARDOUR::samplecnt_t);
117
118         void update_autoplay ();
119         void autoplay_toggled ();
120
121         bool tags_entry_left (GdkEventFocus* event);
122         void tags_changed ();
123         void save_tags (const std::vector<std::string>&);
124         void stop_audition ();
125         bool seek_button_press(GdkEventButton*);
126         bool seek_button_release(GdkEventButton*);
127         bool _seeking;
128         ARDOUR::SrcQuality _src_quality;
129         Editing::ImportPosition _import_position;
130 };
131
132 class SoundFileBrowser : public ArdourWindow
133 {
134 private:
135         class FoundTagColumns : public Gtk::TreeModel::ColumnRecord
136         {
137         public:
138                 Gtk::TreeModelColumn<std::string> pathname;
139
140                 FoundTagColumns() { add(pathname); }
141         };
142
143         class FreesoundColumns : public Gtk::TreeModel::ColumnRecord
144         {
145         public:
146                 Gtk::TreeModelColumn<std::string> id;
147                 Gtk::TreeModelColumn<std::string> uri;
148                 Gtk::TreeModelColumn<std::string> filename;
149                 Gtk::TreeModelColumn<std::string> duration;
150                 Gtk::TreeModelColumn<std::string> filesize;
151                 Gtk::TreeModelColumn<std::string> smplrate;
152                 Gtk::TreeModelColumn<std::string> license;
153                 Gtk::TreeModelColumn<bool>        started;
154
155                 FreesoundColumns() {
156                         add(id);
157                         add(filename);
158                         add(uri);
159                         add(duration);
160                         add(filesize);
161                         add(smplrate);
162                         add(license);
163                         add(started);
164                 }
165         };
166
167         FoundTagColumns found_list_columns;
168         Glib::RefPtr<Gtk::ListStore> found_list;
169
170         FreesoundColumns freesound_list_columns;
171         Glib::RefPtr<Gtk::ListStore> freesound_list;
172
173         Gtk::Button freesound_more_btn;
174         Gtk::Button freesound_similar_btn;
175
176         void handle_freesound_results(std::string theString);
177
178 public:
179         SoundFileBrowser (std::string title, ARDOUR::Session* _s, bool persistent);
180         virtual ~SoundFileBrowser ();
181
182         int run ();
183         int status () const { return _status; }
184
185         virtual void set_session (ARDOUR::Session*);
186         std::vector<std::string> get_paths ();
187
188         void clear_selection ();
189
190         Gtk::FileChooserWidget chooser;
191
192         SoundFileBox preview;
193
194         Gtk::Entry found_entry;
195         Gtk::Button found_search_btn;
196         Gtk::TreeView found_list_view;
197
198         Gtk::Entry freesound_entry;
199         Gtk::ComboBoxText freesound_sort;
200
201         Gtk::Button freesound_search_btn;
202         Gtk::TreeView freesound_list_view;
203         Gtk::Notebook notebook;
204
205         void freesound_search();
206         void refresh_display(std::string ID, std::string file);
207
208 protected:
209         bool resetting_ourselves;
210         int matches;
211         int _status;
212         bool _done;
213
214         Gtk::FileFilter audio_and_midi_filter;
215         Gtk::FileFilter audio_filter;
216         Gtk::FileFilter midi_filter;
217         Gtk::FileFilter custom_filter;
218         Gtk::FileFilter matchall_filter;
219         Gtk::HBox hpacker;
220         Gtk::VBox vpacker;
221
222         Gtk::Button import_button;
223
224         static std::string persistent_folder;
225
226         GainMeter* gm;
227         Gtk::VBox meter_packer;
228         void add_gain_meter ();
229         void remove_gain_meter ();
230         void meter ();
231         void start_metering ();
232         void stop_metering ();
233         sigc::connection metering_connection;
234
235         void update_preview ();
236
237         void found_list_view_selected ();
238         void found_list_view_activated (const Gtk::TreeModel::Path& path, Gtk::TreeViewColumn*);
239         void found_search_clicked ();
240
241         void freesound_list_view_selected ();
242         void freesound_list_view_activated (const Gtk::TreeModel::Path& path, Gtk::TreeViewColumn*);
243         void freesound_search_clicked ();
244         void freesound_more_clicked ();
245         void freesound_similar_clicked ();
246         int freesound_page;
247
248         void chooser_file_activated ();
249         std::string freesound_get_audio_file(Gtk::TreeIter iter);
250
251         bool on_audio_filter (const Gtk::FileFilter::Info& filter_info);
252         bool on_midi_filter (const Gtk::FileFilter::Info& filter_info);
253         bool on_audio_and_midi_filter (const Gtk::FileFilter::Info& filter_info);
254
255         void set_action_sensitive (bool);
256         bool get_action_sensitive () const;
257
258         virtual bool reset_options () { return true; }
259
260         void on_show();
261         bool on_key_press_event (GdkEventKey*);
262         virtual void do_something(int action);
263 };
264
265 class SoundFileChooser : public SoundFileBrowser
266 {
267 public:
268         SoundFileChooser (std::string title, ARDOUR::Session* _s = 0);
269         virtual ~SoundFileChooser () {};
270
271         std::string get_filename ();
272
273 protected:
274         void on_hide();
275 };
276
277 class SoundFileOmega : public SoundFileBrowser
278 {
279 public:
280         SoundFileOmega (std::string title,
281                         ARDOUR::Session* _s,
282                         uint32_t selected_audio_tracks,
283                         uint32_t selected_midi_tracks,
284                         bool persistent,
285                         Editing::ImportMode mode_hint = Editing::ImportAsTrack);
286
287         void reset (uint32_t selected_audio_tracks, uint32_t selected_midi_tracks);
288
289         Gtk::ComboBoxText action_combo;
290         Gtk::ComboBoxText where_combo;
291         Gtk::ComboBoxText channel_combo;
292         Gtk::ComboBoxText src_combo;
293         Gtk::ComboBoxText midi_track_name_combo;
294         InstrumentSelector instrument_combo;
295
296         Gtk::CheckButton copy_files_btn;
297         Gtk::CheckButton smf_tempo_btn;
298
299         void set_mode (Editing::ImportMode);
300         Editing::ImportMode get_mode() const;
301         ARDOUR::MidiTrackNameSource get_midi_track_name_source () const;
302         bool get_use_smf_tempo_map () const;
303         Editing::ImportPosition get_position() const;
304         Editing::ImportDisposition get_channel_disposition() const;
305         ARDOUR::SrcQuality get_src_quality() const;
306
307 protected:
308         void on_hide();
309
310 private:
311         uint32_t selected_audio_track_cnt;
312         uint32_t selected_midi_track_cnt;
313
314         typedef std::map<std::string,Editing::ImportDisposition> DispositionMap;
315         DispositionMap disposition_map;
316
317         Gtk::Table options;
318         Gtk::VBox block_two;
319         Gtk::VBox block_three;
320         Gtk::VBox block_four;
321
322         bool check_info (const std::vector<std::string>& paths,
323                          bool& same_size, bool& src_needed, bool& multichannel);
324
325         static bool check_link_status (const ARDOUR::Session*, const std::vector<std::string>& paths);
326
327         void file_selection_changed ();
328         bool reset_options ();
329         void reset_options_noret ();
330         bool bad_file_message ();
331         void src_combo_changed ();
332         void where_combo_changed ();
333
334         void do_something (int action);
335
336         bool _import_active;
337         bool _reset_post_import;
338 };
339
340 #endif // __ardour_sfdb_ui_h__