allow import to selected MIDI tracks (note that this gets confused if the MIDI file...
[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/box.h>
30 #include <gtkmm/button.h>
31 #include <gtkmm/checkbutton.h>
32 #include <gtkmm/comboboxtext.h>
33 #include <gtkmm/dialog.h>
34 #include <gtkmm/entry.h>
35 #include <gtkmm/filechooserwidget.h>
36 #include <gtkmm/frame.h>
37 #include <gtkmm/label.h>
38 #include <gtkmm/textview.h>
39
40 #include "ardour/audiofilesource.h"
41 #include "ardour/session_handle.h"
42
43 #include "ardour_dialog.h"
44 #include "editing.h"
45 #include "audio_clock.h"
46
47 namespace ARDOUR {
48         class Session;
49 };
50
51 class GainMeter;
52
53 class SoundFileBox : public Gtk::VBox, public ARDOUR::SessionHandlePtr
54 {
55   public:
56         SoundFileBox (bool persistent);
57         virtual ~SoundFileBox () {};
58
59         void set_session (ARDOUR::Session* s);
60         bool setup_labels (const std::string& filename);
61
62         void audition();
63         bool audition_oneshot();
64         bool autoplay () const;
65
66   protected:
67         std::string path;
68
69         ARDOUR::SoundFileInfo sf_info;
70
71         Gtk::Table table;
72
73         Gtk::Label length;
74         Gtk::Label format;
75         Gtk::Label channels;
76         Gtk::Label samplerate;
77         Gtk::Label timecode;
78
79         Gtk::Label channels_value;
80         Gtk::Label samplerate_value;
81
82         Gtk::Label format_text;
83         AudioClock length_clock;
84         AudioClock timecode_clock;
85
86         Gtk::Frame border_frame;
87         Gtk::Label preview_label;
88
89         Gtk::TextView tags_entry;
90
91         Gtk::VBox main_box;
92         Gtk::VBox path_box;
93         Gtk::HBox bottom_box;
94
95         Gtk::Button play_btn;
96         Gtk::Button stop_btn;
97         Gtk::CheckButton autoplay_btn;
98         Gtk::Button apply_btn;
99
100         bool tags_entry_left (GdkEventFocus* event);
101         void tags_changed ();
102         void save_tags (const std::vector<std::string>&);
103         void stop_audition ();
104 };
105
106 class SoundFileBrowser : public ArdourDialog
107 {
108   private:
109         class FoundTagColumns : public Gtk::TreeModel::ColumnRecord
110         {
111           public:
112                 Gtk::TreeModelColumn<std::string> pathname;
113
114                 FoundTagColumns() { add(pathname); }
115         };
116
117         FoundTagColumns found_list_columns;
118         Glib::RefPtr<Gtk::ListStore> found_list;
119
120         FoundTagColumns freesound_list_columns;
121         Glib::RefPtr<Gtk::ListStore> freesound_list;
122
123   public:
124         SoundFileBrowser (Gtk::Window& parent, std::string title, ARDOUR::Session* _s, bool persistent);
125         virtual ~SoundFileBrowser ();
126
127         virtual void set_session (ARDOUR::Session*);
128         std::vector<std::string> get_paths ();
129
130         void clear_selection ();
131
132         Gtk::FileChooserWidget chooser;
133
134         SoundFileBox preview;
135
136         Gtk::Entry found_entry;
137         Gtk::Button found_search_btn;
138         Gtk::TreeView found_list_view;
139
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;
145
146         void freesound_search_thread();
147
148   protected:
149         bool resetting_ourselves;
150
151         Gtk::FileFilter audio_filter;
152         Gtk::FileFilter midi_filter;
153         Gtk::FileFilter custom_filter;
154         Gtk::FileFilter matchall_filter;
155         Gtk::HBox hpacker;
156
157         static std::string persistent_folder;
158
159         Gtk::Notebook notebook;
160
161         GainMeter* gm;
162         Gtk::VBox meter_packer;
163         void add_gain_meter ();
164         void remove_gain_meter ();
165         void meter ();
166         void start_metering ();
167         void stop_metering ();
168         sigc::connection metering_connection;
169
170         void update_preview ();
171
172         void found_list_view_selected ();
173         void found_list_view_activated (const Gtk::TreeModel::Path& path, Gtk::TreeViewColumn*);
174         void found_search_clicked ();
175
176         void freesound_list_view_selected ();
177         void freesound_list_view_activated (const Gtk::TreeModel::Path& path, Gtk::TreeViewColumn*);
178         void freesound_search_clicked ();
179
180         void chooser_file_activated ();
181
182         bool on_audio_filter (const Gtk::FileFilter::Info& filter_info);
183         bool on_midi_filter (const Gtk::FileFilter::Info& filter_info);
184
185         virtual bool reset_options() { return true; }
186
187   protected:
188         void on_show();
189
190 };
191
192 class SoundFileChooser : public SoundFileBrowser
193 {
194   public:
195         SoundFileChooser (Gtk::Window& parent, std::string title, ARDOUR::Session* _s = 0);
196         virtual ~SoundFileChooser () {};
197
198         std::string get_filename ();
199
200   protected:
201         void on_hide();
202 };
203
204 class SoundFileOmega : public SoundFileBrowser
205 {
206
207   public:
208         SoundFileOmega (Gtk::Window& parent, std::string title, ARDOUR::Session* _s, 
209                         uint32_t selected_audio_tracks, uint32_t selected_midi_tracks,
210                         bool persistent,
211                         Editing::ImportMode mode_hint = Editing::ImportAsTrack);
212
213         void reset (uint32_t selected_audio_tracks, uint32_t selected_midi_tracks);
214
215         Gtk::ComboBoxText action_combo;
216         Gtk::ComboBoxText where_combo;
217         Gtk::ComboBoxText channel_combo;
218         Gtk::ComboBoxText src_combo;
219
220         Gtk::CheckButton copy_files_btn;
221
222         void set_mode (Editing::ImportMode);
223         Editing::ImportMode get_mode() const;
224         Editing::ImportPosition get_position() const;
225         Editing::ImportDisposition get_channel_disposition() const;
226         ARDOUR::SrcQuality get_src_quality() const;
227
228   protected:
229         void on_hide();
230
231   private:
232         uint32_t selected_audio_track_cnt;
233         uint32_t selected_midi_track_cnt;
234
235         typedef std::map<std::string,Editing::ImportDisposition> DispositionMap;
236         DispositionMap disposition_map;
237
238         Gtk::HBox options;
239         Gtk::VBox block_two;
240         Gtk::VBox block_three;
241         Gtk::VBox block_four;
242
243         bool check_info (const std::vector<std::string>& paths,
244                          bool& same_size, bool& src_needed, bool& multichannel);
245
246         static bool check_link_status (const ARDOUR::Session*, const std::vector<std::string>& paths);
247
248         void file_selection_changed ();
249         bool reset_options ();
250         void reset_options_noret ();
251         bool bad_file_message ();
252 };
253
254 #endif // __ardour_sfdb_ui_h__