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