/[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 2507 - (hide annotations) (download) (as text)
Sun Jan 12 19:37:55 2014 UTC (10 years, 2 months ago) by persson
File MIME type: text/x-c++hdr
File size: 11883 byte(s)
* added dialog for editing the CtrlTrigger and Legato midi rules

1 schoenebeck 1225 /* -*- c++ -*-
2 persson 2507 * Copyright (C) 2006 - 2014 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     #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 persson 2442 #include <gtkmm/menu.h>
30 schoenebeck 1225 #include <gtkmm/paned.h>
31     #include <gtkmm/progressbar.h>
32 persson 2442 #include <gtkmm/radiomenuitem.h>
33 schoenebeck 1225 #include <gtkmm/scrolledwindow.h>
34     #include <gtkmm/treestore.h>
35     #include <gtkmm/uimanager.h>
36     #include <gtkmm/window.h>
37 schoenebeck 1411 #include <gtkmm/statusbar.h>
38     #include <gtkmm/image.h>
39 schoenebeck 1225
40     #include <sstream>
41    
42     #include "regionchooser.h"
43     #include "dimregionchooser.h"
44     #include "dimregionedit.h"
45 persson 2507 #include "midirules.h"
46 persson 2325 #ifndef OLD_THREADS
47     #include <glibmm/threads.h>
48     #endif
49 schoenebeck 1225
50     class MainWindow;
51    
52 persson 2423 class PropDialog : public Gtk::Window,
53     public PropEditor<DLS::Info> {
54 persson 1582 public:
55 schoenebeck 1225 PropDialog();
56     void set_info(DLS::Info* info);
57     protected:
58 persson 1582 StringEntry eName;
59     StringEntry eCreationDate;
60     StringEntryMultiLine eComments;
61     StringEntry eProduct;
62     StringEntry eCopyright;
63     StringEntry eArtists;
64     StringEntry eGenre;
65     StringEntry eKeywords;
66     StringEntry eEngineer;
67     StringEntry eTechnician;
68     StringEntry eSoftware;
69     StringEntry eMedium;
70     StringEntry eSource;
71     StringEntry eSourceForm;
72     StringEntry eCommissioned;
73     StringEntry eSubject;
74     Gtk::VBox vbox;
75     Gtk::HButtonBox buttonBox;
76     Gtk::Button quitButton;
77     Table table;
78 schoenebeck 1225 };
79    
80 persson 2423 class InstrumentProps : public Gtk::Window,
81     public PropEditor<gig::Instrument> {
82 schoenebeck 1225 public:
83     InstrumentProps();
84     void set_instrument(gig::Instrument* instrument);
85 persson 2445 gig::Instrument* get_instrument() { return m; }
86     void update_name();
87     sigc::signal<void>& signal_name_changed() {
88     return sig_name_changed;
89     }
90 schoenebeck 1225 protected:
91 persson 2445 void set_Name(const gig::String& name);
92 persson 1460 void set_IsDrum(bool value);
93     void set_MIDIBank(uint16_t value);
94     void set_MIDIProgram(uint32_t value);
95    
96 persson 2445 sigc::signal<void> sig_name_changed;
97 schoenebeck 1225 Gtk::VBox vbox;
98     Gtk::HButtonBox buttonBox;
99     Gtk::Button quitButton;
100 persson 1582 Table table;
101 schoenebeck 1225 StringEntry eName;
102     BoolEntry eIsDrum;
103     NumEntryTemp<uint16_t> eMIDIBank;
104     NumEntryTemp<uint32_t> eMIDIProgram;
105     NumEntryGain eAttenuation;
106     BoolEntryPlus6 eGainPlus6;
107     NumEntryTemp<uint16_t> eEffectSend;
108     NumEntryTemp<int16_t> eFineTune;
109     NumEntryTemp<uint16_t> ePitchbendRange;
110     BoolEntry ePianoReleaseMode;
111     NoteEntry eDimensionKeyRangeLow;
112     NoteEntry eDimensionKeyRangeHigh;
113     };
114    
115     class LoadDialog : public Gtk::Dialog {
116     public:
117     LoadDialog(const Glib::ustring& title, Gtk::Window& parent);
118     void set_fraction(float fraction) { progressBar.set_fraction(fraction); }
119     protected:
120     Gtk::ProgressBar progressBar;
121     };
122    
123     class Loader : public sigc::trackable {
124     public:
125     Loader(const char* filename);
126     void launch();
127     Glib::Dispatcher& signal_progress();
128     Glib::Dispatcher& signal_finished();
129     void progress_callback(float fraction);
130     float get_progress();
131     const char* filename;
132     gig::File* gig;
133    
134     private:
135 persson 2325 Glib::Threads::Thread* thread;
136 schoenebeck 1225 void thread_function();
137     Glib::Dispatcher finished_dispatcher;
138     Glib::Dispatcher progress_dispatcher;
139 persson 2325 Glib::Threads::Mutex progressMutex;
140 schoenebeck 1225 float progress;
141     };
142    
143     class MainWindow : public Gtk::Window {
144     public:
145     MainWindow();
146     virtual ~MainWindow();
147     void load_file(const char* name);
148     void load_instrument(gig::Instrument* instr);
149 persson 1261 void file_changed();
150 schoenebeck 1339 sigc::signal<void, gig::File*>& signal_file_structure_to_be_changed();
151     sigc::signal<void, gig::File*>& signal_file_structure_changed();
152     sigc::signal<void, std::list<gig::Sample*> >& signal_samples_to_be_removed();
153     sigc::signal<void>& signal_samples_removed();
154     sigc::signal<void, gig::Region*>& signal_region_to_be_changed();
155     sigc::signal<void, gig::Region*>& signal_region_changed();
156     sigc::signal<void, gig::DimensionRegion*>& signal_dimreg_to_be_changed();
157     sigc::signal<void, gig::DimensionRegion*>& signal_dimreg_changed();
158 schoenebeck 1853 sigc::signal<void, gig::Sample*>& signal_sample_changed();
159 schoenebeck 1339 sigc::signal<void, gig::Sample*/*old*/, gig::Sample*/*new*/>& signal_sample_ref_changed();
160 schoenebeck 1225
161 schoenebeck 1654 sigc::signal<void, int/*key*/, int/*velocity*/>& signal_note_on();
162     sigc::signal<void, int/*key*/, int/*velocity*/>& signal_note_off();
163    
164 schoenebeck 1660 sigc::signal<void, int/*key*/, int/*velocity*/>& signal_keyboard_key_hit();
165     sigc::signal<void, int/*key*/, int/*velocity*/>& signal_keyboard_key_released();
166    
167 schoenebeck 1225 protected:
168     Glib::RefPtr<Gtk::ActionGroup> actionGroup;
169     Glib::RefPtr<Gtk::UIManager> uiManager;
170    
171 schoenebeck 1411 Gtk::Statusbar m_StatusBar;
172     Gtk::Label m_AttachedStateLabel;
173     Gtk::Image m_AttachedStateImage;
174    
175 schoenebeck 1225 RegionChooser m_RegionChooser;
176     DimRegionChooser m_DimRegionChooser;
177    
178     PropDialog propDialog;
179     InstrumentProps instrumentProps;
180 persson 2507 MidiRules midiRules;
181 schoenebeck 1225
182 schoenebeck 1322 sigc::signal<void, gig::File*> file_structure_to_be_changed_signal;
183     sigc::signal<void, gig::File*> file_structure_changed_signal;
184     sigc::signal<void, std::list<gig::Sample*> > samples_to_be_removed_signal;
185     sigc::signal<void> samples_removed_signal;
186     sigc::signal<void, gig::Region*> region_to_be_changed_signal;
187     sigc::signal<void, gig::Region*> region_changed_signal;
188     sigc::signal<void, gig::DimensionRegion*> dimreg_to_be_changed_signal;
189     sigc::signal<void, gig::DimensionRegion*> dimreg_changed_signal;
190 schoenebeck 1853 sigc::signal<void, gig::Sample*> sample_changed_signal;
191 schoenebeck 1322 sigc::signal<void, gig::Sample*/*old*/, gig::Sample*/*new*/> sample_ref_changed_signal;
192    
193 schoenebeck 1654 sigc::signal<void, int/*key*/, int/*velocity*/> note_on_signal;
194     sigc::signal<void, int/*key*/, int/*velocity*/> note_off_signal;
195    
196 persson 2442 void on_instrument_selection_change(Gtk::RadioMenuItem* item);
197 schoenebeck 1225 void on_sel_change();
198     void region_changed();
199     void dimreg_changed();
200     void on_loader_progress();
201     void on_loader_finished();
202 persson 1533 void dimreg_all_dimregs_toggled();
203     gig::Instrument* get_instrument();
204     void add_region_to_dimregs(gig::Region* region, bool stereo, bool all_dimregs);
205     void update_dimregs();
206 schoenebeck 1225
207     class ModelColumns : public Gtk::TreeModel::ColumnRecord {
208     public:
209     ModelColumns() {
210     add(m_col_name);
211     add(m_col_instr);
212     }
213    
214     Gtk::TreeModelColumn<Glib::ustring> m_col_name;
215     Gtk::TreeModelColumn<gig::Instrument*> m_col_instr;
216     } m_Columns;
217    
218     Gtk::VBox m_VBox;
219     Gtk::HPaned m_HPaned;
220    
221     Gtk::ScrolledWindow m_ScrolledWindow;
222    
223     Gtk::TreeView m_TreeView;
224     Glib::RefPtr<Gtk::ListStore> m_refTreeModel;
225    
226 persson 2442 Gtk::Menu* instrument_menu;
227    
228 schoenebeck 1225 class SamplesModel : public Gtk::TreeModel::ColumnRecord {
229     public:
230     SamplesModel() {
231     add(m_col_name);
232     add(m_col_sample);
233     add(m_col_group);
234     }
235    
236     Gtk::TreeModelColumn<Glib::ustring> m_col_name;
237     Gtk::TreeModelColumn<gig::Sample*> m_col_sample;
238     Gtk::TreeModelColumn<gig::Group*> m_col_group;
239     } m_SamplesModel;
240    
241     class SamplesTreeStore : public Gtk::TreeStore {
242     public:
243     static Glib::RefPtr<SamplesTreeStore> create(const SamplesModel& columns) {
244     return Glib::RefPtr<SamplesTreeStore>( new SamplesTreeStore(columns) );
245     }
246     protected:
247     SamplesTreeStore(const SamplesModel& columns) : Gtk::TreeStore(columns) {}
248     };
249    
250     Gtk::ScrolledWindow m_ScrolledWindowSamples;
251     Gtk::TreeView m_TreeViewSamples;
252     Glib::RefPtr<SamplesTreeStore> m_refSamplesTreeModel;
253    
254 persson 1533 Gtk::VBox dimreg_vbox;
255     Gtk::HBox dimreg_hbox;
256     Gtk::Label dimreg_label;
257     Gtk::CheckButton dimreg_all_regions;
258     Gtk::CheckButton dimreg_all_dimregs;
259     Gtk::CheckButton dimreg_stereo;
260 schoenebeck 1225 DimRegionEdit dimreg_edit;
261    
262     Gtk::Notebook m_TreeViewNotebook;
263    
264     struct SampleImportItem {
265     gig::Sample* gig_sample; // pointer to the gig::Sample to
266     // which the sample data should be
267     // imported to
268     Glib::ustring sample_path; // file name of the sample to be
269     // imported
270     };
271     std::list<SampleImportItem> m_SampleImportQueue;
272    
273    
274     void on_action_file_new();
275     void on_action_file_open();
276     void on_action_file_save();
277     void on_action_file_save_as();
278     void on_action_file_properties();
279 persson 1261 void on_action_quit();
280 schoenebeck 1225 void show_instr_props();
281 persson 2445 bool instr_props_set_instrument();
282 persson 2507 void show_midi_rules();
283 schoenebeck 1415 void on_action_view_status_bar();
284 schoenebeck 1225 void on_action_help_about();
285    
286     // sample right-click popup actions
287     void on_sample_treeview_button_release(GdkEventButton* button);
288     void on_action_sample_properties();
289     void on_action_add_group();
290     void on_action_add_sample();
291 schoenebeck 1673 void on_action_replace_all_samples_in_all_groups();
292 schoenebeck 1225 void on_action_remove_sample();
293    
294     void on_action_add_instrument();
295 schoenebeck 2395 void on_action_duplicate_instrument();
296 schoenebeck 1225 void on_action_remove_instrument();
297    
298 persson 2442 void add_instrument(gig::Instrument* instrument);
299     Gtk::RadioMenuItem* add_instrument_to_menu(const Glib::ustring& name,
300     int position = -1);
301     void remove_instrument_from_menu(int index);
302    
303 schoenebeck 1225 LoadDialog* load_dialog;
304     Loader* loader;
305 schoenebeck 1382 void load_gig(gig::File* gig, const char* filename, bool isSharedInstrument = false);
306 schoenebeck 1225
307     gig::File* file;
308 schoenebeck 1382 bool file_is_shared;
309 persson 1261 bool file_has_name;
310     bool file_is_changed;
311     std::string filename;
312 persson 1725 std::string current_gig_dir;
313     std::string current_sample_dir;
314 schoenebeck 1225
315 schoenebeck 1411 void set_file_is_shared(bool);
316    
317 persson 1261 bool file_save();
318     bool file_save_as();
319 persson 1303 bool check_if_savable();
320 persson 1261
321 schoenebeck 1225 void on_button_release(GdkEventButton* button);
322 persson 1303 void on_sample_treeview_drag_begin(const Glib::RefPtr<Gdk::DragContext>& context);
323 schoenebeck 1225 void on_sample_treeview_drag_data_get(const Glib::RefPtr<Gdk::DragContext>&,
324     Gtk::SelectionData& selection_data, guint, guint);
325     void on_sample_label_drop_drag_data_received(const Glib::RefPtr<Gdk::DragContext>& context,
326     int, int,
327     const Gtk::SelectionData& selection_data,
328     guint, guint time);
329 persson 1303
330 schoenebeck 1225 void sample_name_changed(const Gtk::TreeModel::Path& path,
331     const Gtk::TreeModel::iterator& iter);
332     void instrument_name_changed(const Gtk::TreeModel::Path& path,
333     const Gtk::TreeModel::iterator& iter);
334 persson 2445 void instr_name_changed_by_instr_props(Gtk::TreeModel::iterator& it);
335 persson 2442 sigc::connection instrument_name_connection;
336 schoenebeck 1225
337     void __import_queued_samples();
338     void __clear();
339    
340 persson 1261 bool close_confirmation_dialog();
341 schoenebeck 1382 bool leaving_shared_mode_dialog();
342 persson 1261
343 schoenebeck 1225 Gtk::Menu* popup_menu;
344 persson 1261
345     bool on_delete_event(GdkEventAny* event);
346 persson 1303
347     bool first_call_to_drag_data_get;
348 schoenebeck 2464
349     bool is_copy_samples_unity_note_enabled() const;
350     bool is_copy_samples_fine_tune_enabled() const;
351     bool is_copy_samples_loop_enabled() const;
352 schoenebeck 1225 };
353    
354     #endif

  ViewVC Help
Powered by ViewVC