/[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 3806 - (hide annotations) (download) (as text)
Thu Aug 13 13:35:33 2020 UTC (3 years, 8 months ago) by schoenebeck
File MIME type: text/x-c++hdr
File size: 27749 byte(s)
Refactored instruments tree view objects.

* Renamed ModelColumns -> InstrumentsModel.

* Renamed m_Columns -> m_InstrumentsModel.

* Renamed m_TreeView -> m_TreeViewInstruments.

* Renamed m_refTreeModel -> m_refInstrumentsTreeModel.

* Renamed m_refTreeModelFilter -> m_refInstrumentsModelFilter.

* Bumped version (1.1.1.svn23).

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

  ViewVC Help
Powered by ViewVC