/[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 1533 - (hide annotations) (download) (as text)
Sat Dec 1 10:21:07 2007 UTC (16 years, 4 months ago) by persson
File MIME type: text/x-c++hdr
File size: 11084 byte(s)
* parameter edits can now be applied to multiple regions and dimension
  regions simultaneously - three checkboxes were added that select
  if changes apply to all regions and/or all dimension regions

1 schoenebeck 1225 /* -*- c++ -*-
2     * Copyright (C) 2006, 2007 Andreas Persson
3     *
4     * This program is free software; you can redistribute it and/or
5     * modify it under the terms of the GNU General Public License as
6     * published by the Free Software Foundation; either version 2, or (at
7     * your option) any later version.
8     *
9     * This program is distributed in the hope that it will be useful, but
10     * WITHOUT ANY WARRANTY; without even the implied warranty of
11     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12     * General Public License for more details.
13     *
14     * You should have received a copy of the GNU General Public License
15     * along with program; see the file COPYING. If not, write to the Free
16     * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
17     * 02110-1301 USA.
18     */
19    
20     #ifndef GIGEDIT_MAINWINDOW_H
21     #define GIGEDIT_MAINWINDOW_H
22    
23     #include <gig.h>
24    
25     #include <gtkmm/actiongroup.h>
26     #include <gtkmm/buttonbox.h>
27     #include <gtkmm/dialog.h>
28     #include <gtkmm/liststore.h>
29     #include <gtkmm/paned.h>
30     #include <gtkmm/progressbar.h>
31     #include <gtkmm/scrolledwindow.h>
32     #include <gtkmm/treestore.h>
33     #include <gtkmm/uimanager.h>
34     #include <gtkmm/window.h>
35 schoenebeck 1411 #include <gtkmm/statusbar.h>
36     #include <gtkmm/image.h>
37 schoenebeck 1225
38     #include <sstream>
39    
40     #include "regionchooser.h"
41     #include "dimregionchooser.h"
42     #include "dimregionedit.h"
43    
44     class MainWindow;
45    
46     class PropDialog : public Gtk::Window {
47     public:
48     PropDialog();
49     void set_info(DLS::Info* info);
50     protected:
51     Gtk::Table table;
52     Gtk::Label label[16];
53     Gtk::Entry entry[16];
54     };
55    
56     class InstrumentProps : public Gtk::Window {
57     public:
58     InstrumentProps();
59     void set_instrument(gig::Instrument* instrument);
60 schoenebeck 1339 sigc::signal<void>& signal_instrument_changed();
61 schoenebeck 1225 protected:
62 persson 1460 gig::Instrument* instrument;
63     int update_model;
64    
65     template<typename T>
66     void set_value(T value, sigc::slot<void, InstrumentProps*, T> setter) {
67     if (update_model == 0) {
68     setter(this, value);
69     instrument_changed();
70     }
71     }
72    
73     template<typename C, typename T>
74     void connect(C& widget, T gig::Instrument::* member) {
75     widget.signal_value_changed().connect(
76     sigc::compose(
77     sigc::bind(sigc::mem_fun(*this, &InstrumentProps::set_value<T>),
78     sigc::bind(sigc::mem_fun(&InstrumentProps::set_member<T>), member)),
79     sigc::mem_fun(widget, &C::get_value)));
80     }
81    
82     template<typename C, typename T>
83     void connect(C& widget, void (InstrumentProps::*setter)(T)) {
84     widget.signal_value_changed().connect(
85     sigc::compose(
86     sigc::bind(sigc::mem_fun(*this, &InstrumentProps::set_value<T>),
87     sigc::mem_fun(setter)),
88     sigc::mem_fun(widget, &C::get_value)));
89     }
90    
91     template<typename T>
92     void set_member(T value, T gig::Instrument::* member) {
93     instrument->*member = value;
94     }
95    
96     void set_IsDrum(bool value);
97     void set_MIDIBank(uint16_t value);
98     void set_MIDIProgram(uint32_t value);
99     void set_DimensionKeyRange_low(uint8_t value);
100     void set_DimensionKeyRange_high(uint8_t value);
101    
102 schoenebeck 1225 Gtk::VBox vbox;
103     Gtk::HButtonBox buttonBox;
104     Gtk::Button quitButton;
105     Gtk::Table table;
106     StringEntry eName;
107     BoolEntry eIsDrum;
108     NumEntryTemp<uint16_t> eMIDIBank;
109     NumEntryTemp<uint32_t> eMIDIProgram;
110     NumEntryGain eAttenuation;
111     BoolEntryPlus6 eGainPlus6;
112     NumEntryTemp<uint16_t> eEffectSend;
113     NumEntryTemp<int16_t> eFineTune;
114     NumEntryTemp<uint16_t> ePitchbendRange;
115     BoolEntry ePianoReleaseMode;
116     NoteEntry eDimensionKeyRangeLow;
117     NoteEntry eDimensionKeyRangeHigh;
118     int rowno;
119 persson 1262 void add_prop(BoolEntry& prop);
120     void add_prop(BoolEntryPlus6& prop);
121 schoenebeck 1225 void add_prop(LabelWidget& prop);
122 persson 1261 sigc::signal<void> instrument_changed;
123 schoenebeck 1225 };
124    
125     class LoadDialog : public Gtk::Dialog {
126     public:
127     LoadDialog(const Glib::ustring& title, Gtk::Window& parent);
128     void set_fraction(float fraction) { progressBar.set_fraction(fraction); }
129     protected:
130     Gtk::ProgressBar progressBar;
131     };
132    
133     class Loader : public sigc::trackable {
134     public:
135     Loader(const char* filename);
136     void launch();
137     Glib::Dispatcher& signal_progress();
138     Glib::Dispatcher& signal_finished();
139     void progress_callback(float fraction);
140     float get_progress();
141     const char* filename;
142     gig::File* gig;
143    
144     private:
145     Glib::Thread* thread;
146     void thread_function();
147     Glib::Dispatcher finished_dispatcher;
148     Glib::Dispatcher progress_dispatcher;
149     Glib::Mutex progressMutex;
150     float progress;
151     };
152    
153     class MainWindow : public Gtk::Window {
154     public:
155     MainWindow();
156     virtual ~MainWindow();
157     void load_file(const char* name);
158     void load_instrument(gig::Instrument* instr);
159 persson 1261 void file_changed();
160 schoenebeck 1339 sigc::signal<void, gig::File*>& signal_file_structure_to_be_changed();
161     sigc::signal<void, gig::File*>& signal_file_structure_changed();
162     sigc::signal<void, std::list<gig::Sample*> >& signal_samples_to_be_removed();
163     sigc::signal<void>& signal_samples_removed();
164     sigc::signal<void, gig::Region*>& signal_region_to_be_changed();
165     sigc::signal<void, gig::Region*>& signal_region_changed();
166     sigc::signal<void, gig::DimensionRegion*>& signal_dimreg_to_be_changed();
167     sigc::signal<void, gig::DimensionRegion*>& signal_dimreg_changed();
168     sigc::signal<void, gig::Sample*/*old*/, gig::Sample*/*new*/>& signal_sample_ref_changed();
169 schoenebeck 1225
170     protected:
171     Glib::RefPtr<Gtk::ActionGroup> actionGroup;
172     Glib::RefPtr<Gtk::UIManager> uiManager;
173    
174 schoenebeck 1411 Gtk::Statusbar m_StatusBar;
175     Gtk::Label m_AttachedStateLabel;
176     Gtk::Image m_AttachedStateImage;
177    
178 schoenebeck 1225 RegionChooser m_RegionChooser;
179     DimRegionChooser m_DimRegionChooser;
180    
181     PropDialog propDialog;
182     InstrumentProps instrumentProps;
183    
184 schoenebeck 1322 sigc::signal<void, gig::File*> file_structure_to_be_changed_signal;
185     sigc::signal<void, gig::File*> file_structure_changed_signal;
186     sigc::signal<void, std::list<gig::Sample*> > samples_to_be_removed_signal;
187     sigc::signal<void> samples_removed_signal;
188     sigc::signal<void, gig::Region*> region_to_be_changed_signal;
189     sigc::signal<void, gig::Region*> region_changed_signal;
190     sigc::signal<void, gig::DimensionRegion*> dimreg_to_be_changed_signal;
191     sigc::signal<void, gig::DimensionRegion*> dimreg_changed_signal;
192     sigc::signal<void, gig::Sample*/*old*/, gig::Sample*/*new*/> sample_ref_changed_signal;
193    
194 schoenebeck 1225 void on_instrument_selection_change(int index);
195     void on_sel_change();
196     void region_changed();
197     void dimreg_changed();
198     void on_loader_progress();
199     void on_loader_finished();
200 persson 1533 void dimreg_all_dimregs_toggled();
201     gig::Instrument* get_instrument();
202     void add_region_to_dimregs(gig::Region* region, bool stereo, bool all_dimregs);
203     void update_dimregs();
204 schoenebeck 1225
205     class ModelColumns : public Gtk::TreeModel::ColumnRecord {
206     public:
207     ModelColumns() {
208     add(m_col_name);
209     add(m_col_instr);
210     }
211    
212     Gtk::TreeModelColumn<Glib::ustring> m_col_name;
213     Gtk::TreeModelColumn<gig::Instrument*> m_col_instr;
214     } m_Columns;
215    
216     Gtk::VBox m_VBox;
217     Gtk::HPaned m_HPaned;
218    
219     Gtk::ScrolledWindow m_ScrolledWindow;
220    
221     Gtk::TreeView m_TreeView;
222     Glib::RefPtr<Gtk::ListStore> m_refTreeModel;
223    
224     class SamplesModel : public Gtk::TreeModel::ColumnRecord {
225     public:
226     SamplesModel() {
227     add(m_col_name);
228     add(m_col_sample);
229     add(m_col_group);
230     }
231    
232     Gtk::TreeModelColumn<Glib::ustring> m_col_name;
233     Gtk::TreeModelColumn<gig::Sample*> m_col_sample;
234     Gtk::TreeModelColumn<gig::Group*> m_col_group;
235     } m_SamplesModel;
236    
237     class SamplesTreeStore : public Gtk::TreeStore {
238     public:
239     static Glib::RefPtr<SamplesTreeStore> create(const SamplesModel& columns) {
240     return Glib::RefPtr<SamplesTreeStore>( new SamplesTreeStore(columns) );
241     }
242     protected:
243     SamplesTreeStore(const SamplesModel& columns) : Gtk::TreeStore(columns) {}
244     };
245    
246     Gtk::ScrolledWindow m_ScrolledWindowSamples;
247     Gtk::TreeView m_TreeViewSamples;
248     Glib::RefPtr<SamplesTreeStore> m_refSamplesTreeModel;
249    
250 persson 1533 Gtk::VBox dimreg_vbox;
251     Gtk::HBox dimreg_hbox;
252     Gtk::Label dimreg_label;
253     Gtk::CheckButton dimreg_all_regions;
254     Gtk::CheckButton dimreg_all_dimregs;
255     Gtk::CheckButton dimreg_stereo;
256 schoenebeck 1225 DimRegionEdit dimreg_edit;
257    
258     Gtk::Notebook m_Notebook;
259     Gtk::Notebook m_TreeViewNotebook;
260    
261     struct SampleImportItem {
262     gig::Sample* gig_sample; // pointer to the gig::Sample to
263     // which the sample data should be
264     // imported to
265     Glib::ustring sample_path; // file name of the sample to be
266     // imported
267     };
268     std::list<SampleImportItem> m_SampleImportQueue;
269    
270    
271     void on_action_file_new();
272     void on_action_file_open();
273     void on_action_file_save();
274     void on_action_file_save_as();
275     void on_action_file_properties();
276 persson 1261 void on_action_quit();
277 schoenebeck 1225 void show_instr_props();
278 schoenebeck 1415 void on_action_view_status_bar();
279 schoenebeck 1225 void on_action_help_about();
280    
281     // sample right-click popup actions
282     void on_sample_treeview_button_release(GdkEventButton* button);
283     void on_action_sample_properties();
284     void on_action_add_group();
285     void on_action_add_sample();
286     void on_action_remove_sample();
287    
288     void on_action_add_instrument();
289     void on_action_remove_instrument();
290    
291     LoadDialog* load_dialog;
292     Loader* loader;
293 schoenebeck 1382 void load_gig(gig::File* gig, const char* filename, bool isSharedInstrument = false);
294 schoenebeck 1225
295     gig::File* file;
296 schoenebeck 1382 bool file_is_shared;
297 persson 1261 bool file_has_name;
298     bool file_is_changed;
299     std::string filename;
300     std::string current_dir;
301 schoenebeck 1225
302 schoenebeck 1411 void set_file_is_shared(bool);
303    
304 persson 1261 bool file_save();
305     bool file_save_as();
306 persson 1303 bool check_if_savable();
307 persson 1261
308 schoenebeck 1225 void on_button_release(GdkEventButton* button);
309 persson 1303 void on_sample_treeview_drag_begin(const Glib::RefPtr<Gdk::DragContext>& context);
310 schoenebeck 1225 void on_sample_treeview_drag_data_get(const Glib::RefPtr<Gdk::DragContext>&,
311     Gtk::SelectionData& selection_data, guint, guint);
312     void on_sample_label_drop_drag_data_received(const Glib::RefPtr<Gdk::DragContext>& context,
313     int, int,
314     const Gtk::SelectionData& selection_data,
315     guint, guint time);
316 persson 1303
317 schoenebeck 1225 void sample_name_changed(const Gtk::TreeModel::Path& path,
318     const Gtk::TreeModel::iterator& iter);
319     void instrument_name_changed(const Gtk::TreeModel::Path& path,
320     const Gtk::TreeModel::iterator& iter);
321    
322     void __import_queued_samples();
323     void __clear();
324    
325 persson 1261 bool close_confirmation_dialog();
326 schoenebeck 1382 bool leaving_shared_mode_dialog();
327 persson 1261
328 schoenebeck 1225 Gtk::Menu* popup_menu;
329 persson 1261
330     bool on_delete_event(GdkEventAny* event);
331 persson 1303
332     bool first_call_to_drag_data_get;
333 schoenebeck 1225 };
334    
335     #endif

  ViewVC Help
Powered by ViewVC