/[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 3409 - (show annotations) (download) (as text)
Tue Jan 23 16:30:56 2018 UTC (6 years, 2 months ago) by schoenebeck
File MIME type: text/x-c++hdr
File size: 24802 byte(s)
* Added new main menu item "View" -> "Tooltips for Beginners" which allows
  to disable tooltips intended for newbies only (default: on).
* Bumped version (1.1.0.svn3).

1 /* -*- c++ -*-
2 * Copyright (C) 2006 - 2017 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 #ifdef LIBGIG_HEADER_FILE
24 # include LIBGIG_HEADER_FILE(gig.h)
25 # include LIBGIG_HEADER_FILE(Serialization.h)
26 #else
27 # include <gig.h>
28 # include <Serialization.h>
29 #endif
30
31 #include "compat.h"
32
33 #include <gtkmm/box.h>
34 #include <gtkmm/buttonbox.h>
35 #include <gtkmm/dialog.h>
36 #include <gtkmm/liststore.h>
37 #include <gtkmm/menu.h>
38 #include <gtkmm/paned.h>
39 #include <gtkmm/progressbar.h>
40 #include <gtkmm/radiomenuitem.h>
41 #include <gtkmm/scrolledwindow.h>
42 #include <gtkmm/treestore.h>
43 #include <gtkmm/treemodelfilter.h>
44 #include <gtkmm/window.h>
45 #include <gtkmm/statusbar.h>
46 #include <gtkmm/image.h>
47 #include <gtkmm/entry.h>
48 #include <gtkmm/notebook.h>
49
50 #if USE_GTKMM_BUILDER
51 # include <gtkmm/builder.h>
52 #else
53 # include <gtkmm/uimanager.h> // deprecated in gtkmm >= 3.21.4
54 #endif
55
56 #include <sstream>
57
58 #include "regionchooser.h"
59 #include "dimregionchooser.h"
60 #include "dimregionedit.h"
61 #include "midirules.h"
62 #ifndef OLD_THREADS
63 #include <glibmm/threads.h>
64 #endif
65 #include "ManagedWindow.h"
66
67 class MainWindow;
68
69 class PropDialog : public ManagedWindow,
70 public PropEditor<DLS::Info> {
71 public:
72 PropDialog();
73 void set_info(DLS::Info* info);
74 void set_file(gig::File* file);
75
76 // implementation for abstract methods of interface class "ManagedWindow"
77 virtual Settings::Property<int>* windowSettingX() { return &Settings::singleton()->filePropsWindowX; }
78 virtual Settings::Property<int>* windowSettingY() { return &Settings::singleton()->filePropsWindowY; }
79 virtual Settings::Property<int>* windowSettingWidth() { return &Settings::singleton()->filePropsWindowW; }
80 virtual Settings::Property<int>* windowSettingHeight() { return &Settings::singleton()->filePropsWindowH; }
81
82 protected:
83 ChoiceEntry<int> eFileFormat;
84 StringEntry eName;
85 StringEntry eCreationDate;
86 StringEntryMultiLine eComments;
87 StringEntry eProduct;
88 StringEntry eCopyright;
89 StringEntry eArtists;
90 StringEntry eGenre;
91 StringEntry eKeywords;
92 StringEntry eEngineer;
93 StringEntry eTechnician;
94 StringEntry eSoftware;
95 StringEntry eMedium;
96 StringEntry eSource;
97 StringEntry eSourceForm;
98 StringEntry eCommissioned;
99 StringEntry eSubject;
100 VBox vbox;
101 HButtonBox buttonBox;
102 Gtk::Button quitButton;
103 Table table;
104
105 gig::File* m_file;
106
107 void onFileFormatChanged();
108 };
109
110 class InstrumentProps : public ManagedWindow,
111 public PropEditor<gig::Instrument> {
112 public:
113 InstrumentProps();
114 void set_instrument(gig::Instrument* instrument);
115 gig::Instrument* get_instrument() { return m; }
116 void update_name();
117 sigc::signal<void>& signal_name_changed() {
118 return sig_name_changed;
119 }
120
121 // implementation for abstract methods of interface class "ManagedWindow"
122 virtual Settings::Property<int>* windowSettingX() { return &Settings::singleton()->instrPropsWindowX; }
123 virtual Settings::Property<int>* windowSettingY() { return &Settings::singleton()->instrPropsWindowY; }
124 virtual Settings::Property<int>* windowSettingWidth() { return &Settings::singleton()->instrPropsWindowW; }
125 virtual Settings::Property<int>* windowSettingHeight() { return &Settings::singleton()->instrPropsWindowH; }
126
127 protected:
128 void set_Name(const gig::String& name);
129 void set_IsDrum(bool value);
130 void set_MIDIBank(uint16_t value);
131 void set_MIDIProgram(uint32_t value);
132
133 sigc::signal<void> sig_name_changed;
134 VBox vbox;
135 HButtonBox buttonBox;
136 Gtk::Button quitButton;
137 Table table;
138 StringEntry eName;
139 BoolEntry eIsDrum;
140 NumEntryTemp<uint16_t> eMIDIBank;
141 NumEntryTemp<uint32_t> eMIDIProgram;
142 NumEntryGain eAttenuation;
143 BoolEntryPlus6 eGainPlus6;
144 NumEntryTemp<uint16_t> eEffectSend;
145 NumEntryTemp<int16_t> eFineTune;
146 NumEntryTemp<uint16_t> ePitchbendRange;
147 BoolEntry ePianoReleaseMode;
148 NoteEntry eDimensionKeyRangeLow;
149 NoteEntry eDimensionKeyRangeHigh;
150 };
151
152 class ProgressDialog : public Gtk::Dialog {
153 public:
154 ProgressDialog(const Glib::ustring& title, Gtk::Window& parent);
155 void set_fraction(float fraction) { progressBar.set_fraction(fraction); }
156 protected:
157 Gtk::ProgressBar progressBar;
158 };
159
160 class Loader : public sigc::trackable {
161 public:
162 Loader(const char* filename);
163 void launch();
164 Glib::Dispatcher& signal_progress();
165 Glib::Dispatcher& signal_finished(); ///< Finished successfully, without error.
166 Glib::Dispatcher& signal_error();
167 void progress_callback(float fraction);
168 float get_progress();
169 const Glib::ustring filename;
170 Glib::ustring error_message;
171 gig::File* gig;
172
173 private:
174 Glib::Threads::Thread* thread;
175 void thread_function();
176 Glib::Dispatcher finished_dispatcher;
177 Glib::Dispatcher progress_dispatcher;
178 Glib::Dispatcher error_dispatcher;
179 Glib::Threads::Mutex progressMutex;
180 float progress;
181 };
182
183 class Saver : public sigc::trackable {
184 public:
185 Saver(gig::File* file, Glib::ustring filename = ""); ///< one argument means "save", two arguments means "save as"
186 void launch();
187 Glib::Dispatcher& signal_progress();
188 Glib::Dispatcher& signal_finished(); ///< Finished successfully, without error.
189 Glib::Dispatcher& signal_error();
190 void progress_callback(float fraction);
191 float get_progress();
192 gig::File* gig;
193 const Glib::ustring filename;
194 Glib::ustring error_message;
195
196 private:
197 Glib::Threads::Thread* thread;
198 void thread_function();
199 Glib::Dispatcher finished_dispatcher;
200 Glib::Dispatcher progress_dispatcher;
201 Glib::Dispatcher error_dispatcher;
202 Glib::Threads::Mutex progressMutex;
203 float progress;
204 };
205
206 class MainWindow : public ManagedWindow {
207 public:
208 MainWindow();
209 virtual ~MainWindow();
210 void load_file(const char* name);
211 void load_instrument(gig::Instrument* instr);
212 void file_changed();
213 sigc::signal<void, gig::File*>& signal_file_structure_to_be_changed();
214 sigc::signal<void, gig::File*>& signal_file_structure_changed();
215 sigc::signal<void, std::list<gig::Sample*> >& signal_samples_to_be_removed();
216 sigc::signal<void>& signal_samples_removed();
217 sigc::signal<void, gig::Region*>& signal_region_to_be_changed();
218 sigc::signal<void, gig::Region*>& signal_region_changed();
219 sigc::signal<void, gig::DimensionRegion*>& signal_dimreg_to_be_changed();
220 sigc::signal<void, gig::DimensionRegion*>& signal_dimreg_changed();
221 sigc::signal<void, gig::Sample*>& signal_sample_changed();
222 sigc::signal<void, gig::Sample*/*old*/, gig::Sample*/*new*/>& signal_sample_ref_changed();
223
224 sigc::signal<void, int/*key*/, int/*velocity*/>& signal_note_on();
225 sigc::signal<void, int/*key*/, int/*velocity*/>& signal_note_off();
226
227 sigc::signal<void, int/*key*/, int/*velocity*/>& signal_keyboard_key_hit();
228 sigc::signal<void, int/*key*/, int/*velocity*/>& signal_keyboard_key_released();
229
230 sigc::signal<void, gig::Instrument*>& signal_switch_sampler_instrument();
231
232 sigc::signal<void, gig::Script*> signal_script_to_be_changed;
233 sigc::signal<void, gig::Script*> signal_script_changed;
234
235 // implementation for abstract methods of interface class "ManagedWindow"
236 virtual Settings::Property<int>* windowSettingX() { return &Settings::singleton()->mainWindowX; }
237 virtual Settings::Property<int>* windowSettingY() { return &Settings::singleton()->mainWindowY; }
238 virtual Settings::Property<int>* windowSettingWidth() { return &Settings::singleton()->mainWindowW; }
239 virtual Settings::Property<int>* windowSettingHeight() { return &Settings::singleton()->mainWindowH; }
240
241 protected:
242 #if USE_GTKMM_BUILDER
243 Glib::RefPtr<Gio::SimpleActionGroup> m_actionGroup;
244 Glib::RefPtr<Gtk::Builder> m_uiManager;
245 #else
246 Glib::RefPtr<Gtk::ActionGroup> actionGroup;
247 Glib::RefPtr<Gtk::UIManager> uiManager;
248 #endif
249
250 #if USE_GLIB_ACTION
251 Glib::RefPtr<Gio::SimpleAction> m_actionMIDIRules;
252
253 Glib::RefPtr<Gio::SimpleAction> m_actionCopyDimRgn;
254 Glib::RefPtr<Gio::SimpleAction> m_actionPasteDimRgn;
255 Glib::RefPtr<Gio::SimpleAction> m_actionAdjustClipboard;
256
257 Glib::RefPtr<Gio::SimpleAction> m_actionSampleProperties;
258 Glib::RefPtr<Gio::SimpleAction> m_actionAddSample;
259 Glib::RefPtr<Gio::SimpleAction> m_actionRemoveSample;
260 Glib::RefPtr<Gio::SimpleAction> m_actionViewSampleRefs;
261 Glib::RefPtr<Gio::SimpleAction> m_actionReplaceSample;
262 Glib::RefPtr<Gio::SimpleAction> m_actionAddSampleGroup;
263
264 Glib::RefPtr<Gio::SimpleAction> m_actionAddScriptGroup;
265 Glib::RefPtr<Gio::SimpleAction> m_actionAddScript;
266 Glib::RefPtr<Gio::SimpleAction> m_actionEditScript;
267 Glib::RefPtr<Gio::SimpleAction> m_actionRemoveScript;
268
269 Glib::RefPtr<Gio::SimpleAction> m_actionToggleCopySampleUnity;
270 Glib::RefPtr<Gio::SimpleAction> m_actionToggleCopySampleTune;
271 Glib::RefPtr<Gio::SimpleAction> m_actionToggleCopySampleLoop;
272 Glib::RefPtr<Gio::SimpleAction> m_actionToggleStatusBar;
273 Glib::RefPtr<Gio::SimpleAction> m_actionToggleRestoreWinDim;
274 Glib::RefPtr<Gio::SimpleAction> m_actionToggleSaveWithTempFile;
275 Glib::RefPtr<Gio::SimpleAction> m_actionToggleWarnOnExtensions;
276 Glib::RefPtr<Gio::SimpleAction> m_actionToggleShowTooltips;
277 Glib::RefPtr<Gio::SimpleAction> m_actionToggleSyncSamplerSelection;
278 Glib::RefPtr<Gio::SimpleAction> m_actionToggleMoveRootNoteWithRegion;
279 #endif
280
281 Gtk::Statusbar m_StatusBar;
282 Gtk::Label m_AttachedStateLabel;
283 Gtk::Image m_AttachedStateImage;
284
285 RegionChooser m_RegionChooser;
286 DimRegionChooser m_DimRegionChooser;
287
288 PropDialog propDialog;
289 InstrumentProps instrumentProps;
290 MidiRules midiRules;
291
292 /**
293 * Ensures that the 2 signals MainWindow::dimreg_to_be_changed_signal and
294 * MainWindowv::dimreg_changed_signal are always triggered correctly as a
295 * pair. It behaves similar to a "mutex lock guard" design pattern.
296 */
297 class DimRegionChangeGuard : public SignalGuard<gig::DimensionRegion*> {
298 public:
299 DimRegionChangeGuard(MainWindow* w, gig::DimensionRegion* pDimReg) :
300 SignalGuard<gig::DimensionRegion*>(w->dimreg_to_be_changed_signal, w->dimreg_changed_signal, pDimReg)
301 {
302 }
303 };
304
305 sigc::signal<void, gig::File*> file_structure_to_be_changed_signal;
306 sigc::signal<void, gig::File*> file_structure_changed_signal;
307 sigc::signal<void, std::list<gig::Sample*> > samples_to_be_removed_signal;
308 sigc::signal<void> samples_removed_signal;
309 sigc::signal<void, gig::Region*> region_to_be_changed_signal;
310 sigc::signal<void, gig::Region*> region_changed_signal;
311 sigc::signal<void, gig::DimensionRegion*> dimreg_to_be_changed_signal;
312 sigc::signal<void, gig::DimensionRegion*> dimreg_changed_signal;
313 sigc::signal<void, gig::Sample*> sample_changed_signal;
314 sigc::signal<void, gig::Sample*/*old*/, gig::Sample*/*new*/> sample_ref_changed_signal;
315
316 sigc::signal<void, int/*key*/, int/*velocity*/> note_on_signal;
317 sigc::signal<void, int/*key*/, int/*velocity*/> note_off_signal;
318
319 sigc::signal<void, gig::Instrument*> switch_sampler_instrument_signal;
320
321 #if !USE_GTKMM_BUILDER
322 void on_instrument_selection_change(Gtk::RadioMenuItem* item);
323 #endif
324 void on_sel_change();
325 void region_changed();
326 void dimreg_changed();
327 void select_instrument(gig::Instrument* instrument);
328 bool select_dimension_region(gig::DimensionRegion* dimRgn);
329 void select_sample(gig::Sample* sample);
330 void on_loader_progress();
331 void on_loader_finished();
332 void on_loader_error();
333 void on_saver_progress();
334 void on_saver_error();
335 void on_saver_finished();
336 void updateMacroMenu();
337 void onMacroSelected(int iMacro);
338 void setupMacros();
339 void onMacrosSetupChanged(const std::vector<Serialization::Archive>& macros);
340 void applyMacro(Serialization::Archive& macro);
341 void onScriptSlotsModified(gig::Instrument* pInstrument);
342 void bringToFront();
343
344 void dimreg_all_dimregs_toggled();
345 gig::Instrument* get_instrument();
346 void add_region_to_dimregs(gig::Region* region, bool stereo, bool all_dimregs);
347 void update_dimregs();
348
349 class ModelColumns : public Gtk::TreeModel::ColumnRecord {
350 public:
351 ModelColumns() {
352 add(m_col_nr);
353 add(m_col_name);
354 add(m_col_instr);
355 add(m_col_scripts);
356 }
357
358 Gtk::TreeModelColumn<int> m_col_nr;
359 Gtk::TreeModelColumn<Glib::ustring> m_col_name;
360 Gtk::TreeModelColumn<gig::Instrument*> m_col_instr;
361 Gtk::TreeModelColumn<Glib::ustring> m_col_scripts;
362 } m_Columns;
363
364 VBox m_VBox;
365 Gtk::HPaned m_HPaned;
366
367 Gtk::ScrolledWindow m_ScrolledWindow;
368
369 Gtk::TreeView m_TreeView;
370 Glib::RefPtr<Gtk::ListStore> m_refTreeModel;
371 Glib::RefPtr<Gtk::TreeModelFilter> m_refTreeModelFilter; //FIXME: I really would love to get rid of TreeModelFilter, because it causes behavior conflicts with get_model() all over the place (see the respective comments regarding get_model()), however I found no other way to filter a treeview effectively.
372
373 #if USE_GTKMM_BUILDER
374 Gtk::Menu* menuMacro;
375 #else
376 Gtk::Menu* instrument_menu; // kept for GTKMM 2 version only, will be completely removed in future
377 #endif
378 Gtk::Menu* assign_scripts_menu;
379
380 std::map<gig::Sample*,int> sample_ref_count;
381
382 class SamplesModel : public Gtk::TreeModel::ColumnRecord {
383 public:
384 SamplesModel() {
385 add(m_col_name);
386 add(m_col_sample);
387 add(m_col_group);
388 add(m_col_refcount);
389 add(m_color);
390 }
391
392 Gtk::TreeModelColumn<Glib::ustring> m_col_name;
393 Gtk::TreeModelColumn<gig::Sample*> m_col_sample;
394 Gtk::TreeModelColumn<gig::Group*> m_col_group;
395 Gtk::TreeModelColumn<Glib::ustring> m_col_refcount;
396 Gtk::TreeModelColumn<Glib::ustring> m_color;
397 } m_SamplesModel;
398
399 class SamplesTreeStore : public Gtk::TreeStore {
400 public:
401 static Glib::RefPtr<SamplesTreeStore> create(const SamplesModel& columns) {
402 return Glib::RefPtr<SamplesTreeStore>( new SamplesTreeStore(columns) );
403 }
404 protected:
405 SamplesTreeStore(const SamplesModel& columns) : Gtk::TreeStore(columns) {}
406 };
407
408 Gtk::ScrolledWindow m_ScrolledWindowSamples;
409 Gtk::TreeView m_TreeViewSamples;
410 Glib::RefPtr<SamplesTreeStore> m_refSamplesTreeModel;
411
412 class ScriptsModel : public Gtk::TreeModel::ColumnRecord {
413 public:
414 ScriptsModel() {
415 add(m_col_name);
416 add(m_col_script);
417 add(m_col_group);
418 }
419
420 Gtk::TreeModelColumn<Glib::ustring> m_col_name;
421 Gtk::TreeModelColumn<gig::Script*> m_col_script;
422 Gtk::TreeModelColumn<gig::ScriptGroup*> m_col_group;
423 } m_ScriptsModel;
424
425 class ScriptsTreeStore : public Gtk::TreeStore {
426 public:
427 static Glib::RefPtr<ScriptsTreeStore> create(const ScriptsModel& columns) {
428 return Glib::RefPtr<ScriptsTreeStore>( new ScriptsTreeStore(columns) );
429 }
430 protected:
431 ScriptsTreeStore(const ScriptsModel& columns) : Gtk::TreeStore(columns) {}
432 };
433
434 Gtk::ScrolledWindow m_ScrolledWindowScripts;
435 Gtk::TreeView m_TreeViewScripts;
436 Glib::RefPtr<ScriptsTreeStore> m_refScriptsTreeModel;
437
438 VBox dimreg_vbox;
439 HBox dimreg_hbox;
440 Gtk::Label dimreg_label;
441 Gtk::CheckButton dimreg_all_regions;
442 Gtk::CheckButton dimreg_all_dimregs;
443 Gtk::CheckButton dimreg_stereo;
444
445 HBox legend_hbox;
446 Gtk::Label labelLegend;
447 Gtk::Image imageNoSample;
448 Gtk::Label labelNoSample;
449 Gtk::Image imageMissingSample;
450 Gtk::Label labelMissingSample;
451 Gtk::Image imageLooped;
452 Gtk::Label labelLooped;
453 Gtk::Image imageSomeLoops;
454 Gtk::Label labelSomeLoops;
455 DimRegionEdit dimreg_edit;
456
457 VBox m_left_vbox;
458 Gtk::Notebook m_TreeViewNotebook;
459 HBox m_searchField;
460 Gtk::Label m_searchLabel;
461 Gtk::Entry m_searchText;
462
463 struct SampleImportItem {
464 gig::Sample* gig_sample; // pointer to the gig::Sample to
465 // which the sample data should be
466 // imported to
467 Glib::ustring sample_path; // file name of the sample to be
468 // imported
469 };
470 std::map<gig::Sample*, SampleImportItem> m_SampleImportQueue;
471
472
473 void on_action_file_new();
474 void on_action_file_open();
475 void on_action_file_save();
476 void on_action_file_save_as();
477 void on_action_file_properties();
478 void on_action_quit();
479 void show_instr_props();
480 bool instr_props_set_instrument();
481 void show_midi_rules();
482 void show_script_slots();
483 void on_action_view_status_bar();
484 void on_auto_restore_win_dim();
485 void on_save_with_temporary_file();
486 void on_action_refresh_all();
487 void on_action_warn_user_on_extensions();
488 void on_action_show_tooltips();
489 void on_show_tooltips_changed();
490 void on_action_sync_sampler_instrument_selection();
491 void on_action_move_root_note_with_region_moved();
492 void on_action_help_about();
493
494 void on_notebook_tab_switched(void* page, guint page_num);
495
496 // sample right-click popup actions
497 #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && (GTKMM_MINOR_VERSION > 91 || (GTKMM_MINOR_VERSION == 91 && GTKMM_MICRO_VERSION >= 2))) // GTKMM >= 3.91.2
498 bool on_sample_treeview_button_release(Gdk::EventButton& button);
499 #else
500 void on_sample_treeview_button_release(GdkEventButton* button);
501 #endif
502 void on_action_sample_properties();
503 void on_action_add_group();
504 void on_action_add_sample();
505 void on_action_replace_sample();
506 void on_action_replace_all_samples_in_all_groups();
507 void on_action_remove_sample();
508 void on_action_remove_unused_samples();
509
510 // script right-click popup actions
511 #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && (GTKMM_MINOR_VERSION > 91 || (GTKMM_MINOR_VERSION == 91 && GTKMM_MICRO_VERSION >= 2))) // GTKMM >= 3.91.2
512 bool on_script_treeview_button_release(Gdk::EventButton& button);
513 #else
514 void on_script_treeview_button_release(GdkEventButton* button);
515 #endif
516 void on_action_add_script_group();
517 void on_action_add_script();
518 void on_action_edit_script();
519 void on_action_remove_script();
520
521 void on_action_add_instrument();
522 void on_action_duplicate_instrument();
523 void on_action_remove_instrument();
524
525 void show_samples_tab();
526 void show_intruments_tab();
527 void show_scripts_tab();
528
529 void select_prev_instrument();
530 void select_next_instrument();
531 void select_instrument_by_dir(int dir);
532
533 void select_prev_region();
534 void select_next_region();
535
536 void select_next_dim_rgn_zone();
537 void select_prev_dim_rgn_zone();
538 void select_add_next_dim_rgn_zone();
539 void select_add_prev_dim_rgn_zone();
540 void select_prev_dimension();
541 void select_next_dimension();
542
543 Serialization::Archive m_serializationArchive; ///< Clipboard content.
544 std::vector<Serialization::Archive> m_macros; ///< User configured list of macros.
545
546 void copy_selected_dimrgn();
547 void paste_copied_dimrgn();
548 void adjust_clipboard_content();
549 void updateClipboardCopyAvailable();
550 void updateClipboardPasteAvailable();
551 #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && (GTKMM_MINOR_VERSION > 91 || (GTKMM_MINOR_VERSION == 91 && GTKMM_MICRO_VERSION >= 2))) // GTKMM >= 3.91.2
552 void on_clipboard_owner_change(Gdk::EventOwnerChange& event);
553 #else
554 void on_clipboard_owner_change(GdkEventOwnerChange* event);
555 #endif
556 void on_clipboard_get(Gtk::SelectionData& selection_data, guint info);
557 void on_clipboard_clear();
558 void on_clipboard_received(const Gtk::SelectionData& selection_data);
559 void on_clipboard_received_targets(const std::vector<Glib::ustring>& targets);
560
561 void add_instrument(gig::Instrument* instrument);
562 #if !USE_GTKMM_BUILDER
563 Gtk::RadioMenuItem* add_instrument_to_menu(const Glib::ustring& name,
564 int position = -1);
565 void remove_instrument_from_menu(int index);
566 #endif
567
568 ProgressDialog* progress_dialog;
569 Loader* loader;
570 Saver* saver;
571 void load_gig(gig::File* gig, const char* filename, bool isSharedInstrument = false);
572 void updateSampleRefCountMap(gig::File* gig);
573
574 gig::File* file;
575 bool file_is_shared;
576 bool file_has_name;
577 bool file_is_changed;
578 std::string filename;
579 std::string current_gig_dir;
580 std::string current_sample_dir;
581
582 void set_file_is_shared(bool);
583
584 bool file_save();
585 bool file_save_as();
586 bool check_if_savable();
587
588 #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && (GTKMM_MINOR_VERSION > 91 || (GTKMM_MINOR_VERSION == 91 && GTKMM_MICRO_VERSION >= 2))) // GTKMM >= 3.91.2
589 bool on_button_release(Gdk::EventButton& button);
590 #else
591 void on_button_release(GdkEventButton* button);
592 #endif
593 void on_instruments_treeview_drag_begin(const Glib::RefPtr<Gdk::DragContext>& context);
594 void on_instruments_treeview_drag_data_get(const Glib::RefPtr<Gdk::DragContext>&,
595 Gtk::SelectionData& selection_data, guint, guint);
596 void on_instruments_treeview_drop_drag_data_received(
597 const Glib::RefPtr<Gdk::DragContext>& context, int, int,
598 const Gtk::SelectionData& selection_data, guint, guint time
599 );
600 void on_scripts_treeview_drag_begin(const Glib::RefPtr<Gdk::DragContext>& context);
601 void on_scripts_treeview_drag_data_get(const Glib::RefPtr<Gdk::DragContext>&,
602 Gtk::SelectionData& selection_data, guint, guint);
603 void on_sample_treeview_drag_begin(const Glib::RefPtr<Gdk::DragContext>& context);
604 void on_sample_treeview_drag_data_get(const Glib::RefPtr<Gdk::DragContext>&,
605 Gtk::SelectionData& selection_data, guint, guint);
606 void on_sample_label_drop_drag_data_received(const Glib::RefPtr<Gdk::DragContext>& context,
607 int, int,
608 const Gtk::SelectionData& selection_data,
609 guint, guint time);
610
611 void script_name_changed(const Gtk::TreeModel::Path& path,
612 const Gtk::TreeModel::iterator& iter);
613 void script_double_clicked(const Gtk::TreeModel::Path& path, Gtk::TreeViewColumn* column);
614 void sample_name_changed(const Gtk::TreeModel::Path& path,
615 const Gtk::TreeModel::iterator& iter);
616 void instrument_name_changed(const Gtk::TreeModel::Path& path,
617 const Gtk::TreeModel::iterator& iter);
618 void instr_name_changed_by_instr_props(Gtk::TreeModel::iterator& it);
619 bool instrument_row_visible(const Gtk::TreeModel::const_iterator& iter);
620 sigc::connection instrument_name_connection;
621
622 void on_action_combine_instruments();
623 void on_action_view_references();
624 void on_action_merge_files();
625 void mergeFiles(const std::vector<std::string>& filenames);
626
627 void on_sample_ref_changed(gig::Sample* oldSample, gig::Sample* newSample);
628 void on_sample_ref_count_incremented(gig::Sample* sample, int offset);
629 void on_samples_to_be_removed(std::list<gig::Sample*> samples);
630
631 void add_or_replace_sample(bool replace);
632
633 void __import_queued_samples();
634 void __clear();
635 void __refreshEntireGUI();
636 void updateScriptListOfMenu();
637 void assignScript(gig::Script* pScript);
638
639 bool close_confirmation_dialog();
640 bool leaving_shared_mode_dialog();
641
642 Gtk::Menu* popup_menu;
643 #if USE_GTKMM_BUILDER
644 Gtk::Menu* sample_popup;
645 Gtk::Menu* script_popup;
646 #endif
647
648 bool on_delete_event(GdkEventAny* event);
649
650 bool first_call_to_drag_data_get;
651
652 bool is_copy_samples_unity_note_enabled() const;
653 bool is_copy_samples_fine_tune_enabled() const;
654 bool is_copy_samples_loop_enabled() const;
655 };
656
657 #endif

  ViewVC Help
Powered by ViewVC