/[svn]/gigedit/trunk/src/gigedit/mainwindow.h
ViewVC logotype

Contents of /gigedit/trunk/src/gigedit/mainwindow.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2689 - (show annotations) (download) (as text)
Sun Jan 4 17:19:19 2015 UTC (9 years, 2 months ago) by schoenebeck
File MIME type: text/x-c++hdr
File size: 15807 byte(s)
* Automatically switch the sampler's (audible) instrument (in live-mode)
  whenever another instrument was selected in gigedit (this default
  behavior can be switched off in the settings menu of gigedit).

1 /* -*- c++ -*-
2 * Copyright (C) 2006 - 2015 Andreas Persson
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License as
6 * published by the Free Software Foundation; either version 2, or (at
7 * your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with program; see the file COPYING. If not, write to the Free
16 * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
17 * 02110-1301 USA.
18 */
19
20 #ifndef GIGEDIT_MAINWINDOW_H
21 #define GIGEDIT_MAINWINDOW_H
22
23 #include <gig.h>
24
25 #include <gtkmm/actiongroup.h>
26 #include <gtkmm/buttonbox.h>
27 #include <gtkmm/dialog.h>
28 #include <gtkmm/liststore.h>
29 #include <gtkmm/menu.h>
30 #include <gtkmm/paned.h>
31 #include <gtkmm/progressbar.h>
32 #include <gtkmm/radiomenuitem.h>
33 #include <gtkmm/scrolledwindow.h>
34 #include <gtkmm/treestore.h>
35 #include <gtkmm/uimanager.h>
36 #include <gtkmm/window.h>
37 #include <gtkmm/statusbar.h>
38 #include <gtkmm/image.h>
39
40 #include <sstream>
41
42 #include "regionchooser.h"
43 #include "dimregionchooser.h"
44 #include "dimregionedit.h"
45 #include "midirules.h"
46 #ifndef OLD_THREADS
47 #include <glibmm/threads.h>
48 #endif
49
50 class MainWindow;
51
52 class PropDialog : public Gtk::Window,
53 public PropEditor<DLS::Info> {
54 public:
55 PropDialog();
56 void set_info(DLS::Info* info);
57 void set_file(gig::File* file);
58 protected:
59 ChoiceEntry<int> eFileFormat;
60 StringEntry eName;
61 StringEntry eCreationDate;
62 StringEntryMultiLine eComments;
63 StringEntry eProduct;
64 StringEntry eCopyright;
65 StringEntry eArtists;
66 StringEntry eGenre;
67 StringEntry eKeywords;
68 StringEntry eEngineer;
69 StringEntry eTechnician;
70 StringEntry eSoftware;
71 StringEntry eMedium;
72 StringEntry eSource;
73 StringEntry eSourceForm;
74 StringEntry eCommissioned;
75 StringEntry eSubject;
76 Gtk::VBox vbox;
77 Gtk::HButtonBox buttonBox;
78 Gtk::Button quitButton;
79 Table table;
80
81 gig::File* m_file;
82
83 void onFileFormatChanged();
84 };
85
86 class InstrumentProps : public Gtk::Window,
87 public PropEditor<gig::Instrument> {
88 public:
89 InstrumentProps();
90 void set_instrument(gig::Instrument* instrument);
91 gig::Instrument* get_instrument() { return m; }
92 void update_name();
93 sigc::signal<void>& signal_name_changed() {
94 return sig_name_changed;
95 }
96 protected:
97 void set_Name(const gig::String& name);
98 void set_IsDrum(bool value);
99 void set_MIDIBank(uint16_t value);
100 void set_MIDIProgram(uint32_t value);
101
102 sigc::signal<void> sig_name_changed;
103 Gtk::VBox vbox;
104 Gtk::HButtonBox buttonBox;
105 Gtk::Button quitButton;
106 Table table;
107 StringEntry eName;
108 BoolEntry eIsDrum;
109 NumEntryTemp<uint16_t> eMIDIBank;
110 NumEntryTemp<uint32_t> eMIDIProgram;
111 NumEntryGain eAttenuation;
112 BoolEntryPlus6 eGainPlus6;
113 NumEntryTemp<uint16_t> eEffectSend;
114 NumEntryTemp<int16_t> eFineTune;
115 NumEntryTemp<uint16_t> ePitchbendRange;
116 BoolEntry ePianoReleaseMode;
117 NoteEntry eDimensionKeyRangeLow;
118 NoteEntry eDimensionKeyRangeHigh;
119 };
120
121 class ProgressDialog : public Gtk::Dialog {
122 public:
123 ProgressDialog(const Glib::ustring& title, Gtk::Window& parent);
124 void set_fraction(float fraction) { progressBar.set_fraction(fraction); }
125 protected:
126 Gtk::ProgressBar progressBar;
127 };
128
129 class Loader : public sigc::trackable {
130 public:
131 Loader(const char* filename);
132 void launch();
133 Glib::Dispatcher& signal_progress();
134 Glib::Dispatcher& signal_finished(); ///< Finished successfully, without error.
135 Glib::Dispatcher& signal_error();
136 void progress_callback(float fraction);
137 float get_progress();
138 const Glib::ustring filename;
139 Glib::ustring error_message;
140 gig::File* gig;
141
142 private:
143 Glib::Threads::Thread* thread;
144 void thread_function();
145 Glib::Dispatcher finished_dispatcher;
146 Glib::Dispatcher progress_dispatcher;
147 Glib::Dispatcher error_dispatcher;
148 Glib::Threads::Mutex progressMutex;
149 float progress;
150 };
151
152 class Saver : public sigc::trackable {
153 public:
154 Saver(gig::File* file, Glib::ustring filename = ""); ///< one argument means "save", two arguments means "save as"
155 void launch();
156 Glib::Dispatcher& signal_progress();
157 Glib::Dispatcher& signal_finished(); ///< Finished successfully, without error.
158 Glib::Dispatcher& signal_error();
159 void progress_callback(float fraction);
160 float get_progress();
161 gig::File* gig;
162 const Glib::ustring filename;
163 Glib::ustring error_message;
164
165 private:
166 Glib::Threads::Thread* thread;
167 void thread_function();
168 Glib::Dispatcher finished_dispatcher;
169 Glib::Dispatcher progress_dispatcher;
170 Glib::Dispatcher error_dispatcher;
171 Glib::Threads::Mutex progressMutex;
172 float progress;
173 };
174
175 class MainWindow : public Gtk::Window {
176 public:
177 MainWindow();
178 virtual ~MainWindow();
179 void load_file(const char* name);
180 void load_instrument(gig::Instrument* instr);
181 void file_changed();
182 sigc::signal<void, gig::File*>& signal_file_structure_to_be_changed();
183 sigc::signal<void, gig::File*>& signal_file_structure_changed();
184 sigc::signal<void, std::list<gig::Sample*> >& signal_samples_to_be_removed();
185 sigc::signal<void>& signal_samples_removed();
186 sigc::signal<void, gig::Region*>& signal_region_to_be_changed();
187 sigc::signal<void, gig::Region*>& signal_region_changed();
188 sigc::signal<void, gig::DimensionRegion*>& signal_dimreg_to_be_changed();
189 sigc::signal<void, gig::DimensionRegion*>& signal_dimreg_changed();
190 sigc::signal<void, gig::Sample*>& signal_sample_changed();
191 sigc::signal<void, gig::Sample*/*old*/, gig::Sample*/*new*/>& signal_sample_ref_changed();
192
193 sigc::signal<void, int/*key*/, int/*velocity*/>& signal_note_on();
194 sigc::signal<void, int/*key*/, int/*velocity*/>& signal_note_off();
195
196 sigc::signal<void, int/*key*/, int/*velocity*/>& signal_keyboard_key_hit();
197 sigc::signal<void, int/*key*/, int/*velocity*/>& signal_keyboard_key_released();
198
199 sigc::signal<void, gig::Instrument*>& signal_switch_sampler_instrument();
200
201 protected:
202 Glib::RefPtr<Gtk::ActionGroup> actionGroup;
203 Glib::RefPtr<Gtk::UIManager> uiManager;
204
205 Gtk::Statusbar m_StatusBar;
206 Gtk::Label m_AttachedStateLabel;
207 Gtk::Image m_AttachedStateImage;
208
209 RegionChooser m_RegionChooser;
210 DimRegionChooser m_DimRegionChooser;
211
212 PropDialog propDialog;
213 InstrumentProps instrumentProps;
214 MidiRules midiRules;
215
216 sigc::signal<void, gig::File*> file_structure_to_be_changed_signal;
217 sigc::signal<void, gig::File*> file_structure_changed_signal;
218 sigc::signal<void, std::list<gig::Sample*> > samples_to_be_removed_signal;
219 sigc::signal<void> samples_removed_signal;
220 sigc::signal<void, gig::Region*> region_to_be_changed_signal;
221 sigc::signal<void, gig::Region*> region_changed_signal;
222 sigc::signal<void, gig::DimensionRegion*> dimreg_to_be_changed_signal;
223 sigc::signal<void, gig::DimensionRegion*> dimreg_changed_signal;
224 sigc::signal<void, gig::Sample*> sample_changed_signal;
225 sigc::signal<void, gig::Sample*/*old*/, gig::Sample*/*new*/> sample_ref_changed_signal;
226
227 sigc::signal<void, int/*key*/, int/*velocity*/> note_on_signal;
228 sigc::signal<void, int/*key*/, int/*velocity*/> note_off_signal;
229
230 sigc::signal<void, gig::Instrument*> switch_sampler_instrument_signal;
231
232 void on_instrument_selection_change(Gtk::RadioMenuItem* item);
233 void on_sel_change();
234 void region_changed();
235 void dimreg_changed();
236 void on_loader_progress();
237 void on_loader_finished();
238 void on_loader_error();
239 void on_saver_progress();
240 void on_saver_error();
241 void on_saver_finished();
242
243 void dimreg_all_dimregs_toggled();
244 gig::Instrument* get_instrument();
245 void add_region_to_dimregs(gig::Region* region, bool stereo, bool all_dimregs);
246 void update_dimregs();
247
248 class ModelColumns : public Gtk::TreeModel::ColumnRecord {
249 public:
250 ModelColumns() {
251 add(m_col_name);
252 add(m_col_instr);
253 }
254
255 Gtk::TreeModelColumn<Glib::ustring> m_col_name;
256 Gtk::TreeModelColumn<gig::Instrument*> m_col_instr;
257 } m_Columns;
258
259 Gtk::VBox m_VBox;
260 Gtk::HPaned m_HPaned;
261
262 Gtk::ScrolledWindow m_ScrolledWindow;
263
264 Gtk::TreeView m_TreeView;
265 Glib::RefPtr<Gtk::ListStore> m_refTreeModel;
266
267 Gtk::Menu* instrument_menu;
268
269 std::map<gig::Sample*,int> sample_ref_count;
270
271 class SamplesModel : public Gtk::TreeModel::ColumnRecord {
272 public:
273 SamplesModel() {
274 add(m_col_name);
275 add(m_col_sample);
276 add(m_col_group);
277 add(m_col_refcount);
278 add(m_color);
279 }
280
281 Gtk::TreeModelColumn<Glib::ustring> m_col_name;
282 Gtk::TreeModelColumn<gig::Sample*> m_col_sample;
283 Gtk::TreeModelColumn<gig::Group*> m_col_group;
284 Gtk::TreeModelColumn<Glib::ustring> m_col_refcount;
285 Gtk::TreeModelColumn<Glib::ustring> m_color;
286 } m_SamplesModel;
287
288 class SamplesTreeStore : public Gtk::TreeStore {
289 public:
290 static Glib::RefPtr<SamplesTreeStore> create(const SamplesModel& columns) {
291 return Glib::RefPtr<SamplesTreeStore>( new SamplesTreeStore(columns) );
292 }
293 protected:
294 SamplesTreeStore(const SamplesModel& columns) : Gtk::TreeStore(columns) {}
295 };
296
297 Gtk::ScrolledWindow m_ScrolledWindowSamples;
298 Gtk::TreeView m_TreeViewSamples;
299 Glib::RefPtr<SamplesTreeStore> m_refSamplesTreeModel;
300
301 class ScriptsModel : public Gtk::TreeModel::ColumnRecord {
302 public:
303 ScriptsModel() {
304 add(m_col_name);
305 add(m_col_script);
306 add(m_col_group);
307 }
308
309 Gtk::TreeModelColumn<Glib::ustring> m_col_name;
310 Gtk::TreeModelColumn<gig::Script*> m_col_script;
311 Gtk::TreeModelColumn<gig::ScriptGroup*> m_col_group;
312 } m_ScriptsModel;
313
314 class ScriptsTreeStore : public Gtk::TreeStore {
315 public:
316 static Glib::RefPtr<ScriptsTreeStore> create(const ScriptsModel& columns) {
317 return Glib::RefPtr<ScriptsTreeStore>( new ScriptsTreeStore(columns) );
318 }
319 protected:
320 ScriptsTreeStore(const ScriptsModel& columns) : Gtk::TreeStore(columns) {}
321 };
322
323 Gtk::ScrolledWindow m_ScrolledWindowScripts;
324 Gtk::TreeView m_TreeViewScripts;
325 Glib::RefPtr<ScriptsTreeStore> m_refScriptsTreeModel;
326
327 Gtk::VBox dimreg_vbox;
328 Gtk::HBox dimreg_hbox;
329 Gtk::Label dimreg_label;
330 Gtk::CheckButton dimreg_all_regions;
331 Gtk::CheckButton dimreg_all_dimregs;
332 Gtk::CheckButton dimreg_stereo;
333 DimRegionEdit dimreg_edit;
334
335 Gtk::Notebook m_TreeViewNotebook;
336
337 struct SampleImportItem {
338 gig::Sample* gig_sample; // pointer to the gig::Sample to
339 // which the sample data should be
340 // imported to
341 Glib::ustring sample_path; // file name of the sample to be
342 // imported
343 };
344 std::list<SampleImportItem> m_SampleImportQueue;
345
346
347 void on_action_file_new();
348 void on_action_file_open();
349 void on_action_file_save();
350 void on_action_file_save_as();
351 void on_action_file_properties();
352 void on_action_quit();
353 void show_instr_props();
354 bool instr_props_set_instrument();
355 void show_midi_rules();
356 void show_script_slots();
357 void on_action_view_status_bar();
358 void on_action_warn_user_on_extensions();
359 void on_action_sync_sampler_instrument_selection();
360 void on_action_help_about();
361
362 // sample right-click popup actions
363 void on_sample_treeview_button_release(GdkEventButton* button);
364 void on_action_sample_properties();
365 void on_action_add_group();
366 void on_action_add_sample();
367 void on_action_replace_all_samples_in_all_groups();
368 void on_action_remove_sample();
369
370 // script right-click popup actions
371 void on_script_treeview_button_release(GdkEventButton* button);
372 void on_action_add_script_group();
373 void on_action_add_script();
374 void on_action_edit_script();
375 void on_action_remove_script();
376
377 void on_action_add_instrument();
378 void on_action_duplicate_instrument();
379 void on_action_remove_instrument();
380
381 void show_samples_tab();
382 void show_intruments_tab();
383 void show_scripts_tab();
384
385 void add_instrument(gig::Instrument* instrument);
386 Gtk::RadioMenuItem* add_instrument_to_menu(const Glib::ustring& name,
387 int position = -1);
388 void remove_instrument_from_menu(int index);
389
390 ProgressDialog* progress_dialog;
391 Loader* loader;
392 Saver* saver;
393 void load_gig(gig::File* gig, const char* filename, bool isSharedInstrument = false);
394 void updateSampleRefCountMap(gig::File* gig);
395
396 gig::File* file;
397 bool file_is_shared;
398 bool file_has_name;
399 bool file_is_changed;
400 std::string filename;
401 std::string current_gig_dir;
402 std::string current_sample_dir;
403
404 void set_file_is_shared(bool);
405
406 bool file_save();
407 bool file_save_as();
408 bool check_if_savable();
409
410 void on_button_release(GdkEventButton* button);
411 void on_scripts_treeview_drag_begin(const Glib::RefPtr<Gdk::DragContext>& context);
412 void on_scripts_treeview_drag_data_get(const Glib::RefPtr<Gdk::DragContext>&,
413 Gtk::SelectionData& selection_data, guint, guint);
414 void on_sample_treeview_drag_begin(const Glib::RefPtr<Gdk::DragContext>& context);
415 void on_sample_treeview_drag_data_get(const Glib::RefPtr<Gdk::DragContext>&,
416 Gtk::SelectionData& selection_data, guint, guint);
417 void on_sample_label_drop_drag_data_received(const Glib::RefPtr<Gdk::DragContext>& context,
418 int, int,
419 const Gtk::SelectionData& selection_data,
420 guint, guint time);
421
422 void script_name_changed(const Gtk::TreeModel::Path& path,
423 const Gtk::TreeModel::iterator& iter);
424 void script_double_clicked(const Gtk::TreeModel::Path& path, Gtk::TreeViewColumn* column);
425 void sample_name_changed(const Gtk::TreeModel::Path& path,
426 const Gtk::TreeModel::iterator& iter);
427 void instrument_name_changed(const Gtk::TreeModel::Path& path,
428 const Gtk::TreeModel::iterator& iter);
429 void instr_name_changed_by_instr_props(Gtk::TreeModel::iterator& it);
430 sigc::connection instrument_name_connection;
431
432 void on_action_combine_instruments();
433 void on_action_view_references();
434 void on_action_merge_files();
435 void mergeFiles(const std::vector<std::string>& filenames);
436
437 void on_sample_ref_changed(gig::Sample* oldSample, gig::Sample* newSample);
438 void on_sample_ref_count_incremented(gig::Sample* sample, int offset);
439 void on_samples_to_be_removed(std::list<gig::Sample*> samples);
440
441 void __import_queued_samples();
442 void __clear();
443 void __refreshEntireGUI();
444
445 bool close_confirmation_dialog();
446 bool leaving_shared_mode_dialog();
447
448 Gtk::Menu* popup_menu;
449
450 bool on_delete_event(GdkEventAny* event);
451
452 bool first_call_to_drag_data_get;
453
454 bool is_copy_samples_unity_note_enabled() const;
455 bool is_copy_samples_fine_tune_enabled() const;
456 bool is_copy_samples_loop_enabled() const;
457 };
458
459 #endif

  ViewVC Help
Powered by ViewVC