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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 3636 - (hide annotations) (download) (as text)
Thu Oct 24 12:06:18 2019 UTC (4 years, 6 months ago) by schoenebeck
File MIME type: text/x-c++hdr
File size: 25418 byte(s)
- Refactored PropDialog -> FilePropDialog.

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

  ViewVC Help
Powered by ViewVC