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

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

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1225 by schoenebeck, Sun Jun 10 10:56:11 2007 UTC revision 1533 by persson, Sat Dec 1 10:21:07 2007 UTC
# Line 32  Line 32 
32  #include <gtkmm/treestore.h>  #include <gtkmm/treestore.h>
33  #include <gtkmm/uimanager.h>  #include <gtkmm/uimanager.h>
34  #include <gtkmm/window.h>  #include <gtkmm/window.h>
35    #include <gtkmm/statusbar.h>
36    #include <gtkmm/image.h>
37    
38  #include <sstream>  #include <sstream>
39    
# Line 55  class InstrumentProps : public Gtk::Wind Line 57  class InstrumentProps : public Gtk::Wind
57  public:  public:
58      InstrumentProps();      InstrumentProps();
59      void set_instrument(gig::Instrument* instrument);      void set_instrument(gig::Instrument* instrument);
60        sigc::signal<void>& signal_instrument_changed();
61  protected:  protected:
62        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      Gtk::VBox vbox;      Gtk::VBox vbox;
103      Gtk::HButtonBox buttonBox;      Gtk::HButtonBox buttonBox;
104      Gtk::Button quitButton;      Gtk::Button quitButton;
105      Gtk::Table table;      Gtk::Table table;
     Gtk::Label label[10];  
     Gtk::Entry entry[8];  
     Gtk::CheckButton check[2];  
106      StringEntry eName;      StringEntry eName;
107      BoolEntry eIsDrum;      BoolEntry eIsDrum;
108      NumEntryTemp<uint16_t> eMIDIBank;      NumEntryTemp<uint16_t> eMIDIBank;
# Line 76  protected: Line 116  protected:
116      NoteEntry eDimensionKeyRangeLow;      NoteEntry eDimensionKeyRangeLow;
117      NoteEntry eDimensionKeyRangeHigh;      NoteEntry eDimensionKeyRangeHigh;
118      int rowno;      int rowno;
119        void add_prop(BoolEntry& prop);
120        void add_prop(BoolEntryPlus6& prop);
121      void add_prop(LabelWidget& prop);      void add_prop(LabelWidget& prop);
122      void key_range_low_changed();      sigc::signal<void> instrument_changed;
     void key_range_high_changed();  
123  };  };
124    
125  class LoadDialog : public Gtk::Dialog {  class LoadDialog : public Gtk::Dialog {
# Line 115  public: Line 156  public:
156      virtual ~MainWindow();      virtual ~MainWindow();
157      void load_file(const char* name);      void load_file(const char* name);
158      void load_instrument(gig::Instrument* instr);      void load_instrument(gig::Instrument* instr);
159        void file_changed();
160        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    
170  protected:  protected:
171      Glib::RefPtr<Gtk::ActionGroup> actionGroup;      Glib::RefPtr<Gtk::ActionGroup> actionGroup;
172      Glib::RefPtr<Gtk::UIManager> uiManager;      Glib::RefPtr<Gtk::UIManager> uiManager;
173    
174        Gtk::Statusbar m_StatusBar;
175        Gtk::Label     m_AttachedStateLabel;
176        Gtk::Image     m_AttachedStateImage;
177    
178      RegionChooser m_RegionChooser;      RegionChooser m_RegionChooser;
179      DimRegionChooser m_DimRegionChooser;      DimRegionChooser m_DimRegionChooser;
180    
181      PropDialog propDialog;      PropDialog propDialog;
182      InstrumentProps instrumentProps;      InstrumentProps instrumentProps;
183    
184        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      void on_instrument_selection_change(int index);      void on_instrument_selection_change(int index);
195      void on_sel_change();      void on_sel_change();
196      void region_changed();      void region_changed();
197      void dimreg_changed();      void dimreg_changed();
198      void on_loader_progress();      void on_loader_progress();
199      void on_loader_finished();      void on_loader_finished();
200        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    
205      class ModelColumns : public Gtk::TreeModel::ColumnRecord {      class ModelColumns : public Gtk::TreeModel::ColumnRecord {
206      public:      public:
# Line 178  protected: Line 247  protected:
247      Gtk::TreeView m_TreeViewSamples;      Gtk::TreeView m_TreeViewSamples;
248      Glib::RefPtr<SamplesTreeStore> m_refSamplesTreeModel;      Glib::RefPtr<SamplesTreeStore> m_refSamplesTreeModel;
249    
250        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      DimRegionEdit dimreg_edit;      DimRegionEdit dimreg_edit;
257    
258      Gtk::Notebook m_Notebook;      Gtk::Notebook m_Notebook;
# Line 198  protected: Line 273  protected:
273      void on_action_file_save();      void on_action_file_save();
274      void on_action_file_save_as();      void on_action_file_save_as();
275      void on_action_file_properties();      void on_action_file_properties();
276        void on_action_quit();
277      void show_instr_props();      void show_instr_props();
278        void on_action_view_status_bar();
279      void on_action_help_about();      void on_action_help_about();
280    
281      // sample right-click popup actions      // sample right-click popup actions
# Line 213  protected: Line 290  protected:
290    
291      LoadDialog* load_dialog;      LoadDialog* load_dialog;
292      Loader* loader;      Loader* loader;
293      void load_gig(gig::File* gig, const char* filename);      void load_gig(gig::File* gig, const char* filename, bool isSharedInstrument = false);
294    
295      gig::File* file;      gig::File* file;
296        bool file_is_shared;
297        bool file_has_name;
298        bool file_is_changed;
299        std::string filename;
300        std::string current_dir;
301    
302        void set_file_is_shared(bool);
303    
304        bool file_save();
305        bool file_save_as();
306        bool check_if_savable();
307    
308      void on_button_release(GdkEventButton* button);      void on_button_release(GdkEventButton* button);
309        void on_sample_treeview_drag_begin(const Glib::RefPtr<Gdk::DragContext>& context);
310      void on_sample_treeview_drag_data_get(const Glib::RefPtr<Gdk::DragContext>&,      void on_sample_treeview_drag_data_get(const Glib::RefPtr<Gdk::DragContext>&,
311                                            Gtk::SelectionData& selection_data, guint, guint);                                            Gtk::SelectionData& selection_data, guint, guint);
312      void on_sample_label_drop_drag_data_received(const Glib::RefPtr<Gdk::DragContext>& context,      void on_sample_label_drop_drag_data_received(const Glib::RefPtr<Gdk::DragContext>& context,
313                                                   int, int,                                                   int, int,
314                                                   const Gtk::SelectionData& selection_data,                                                   const Gtk::SelectionData& selection_data,
315                                                   guint, guint time);                                                   guint, guint time);
316    
317      void sample_name_changed(const Gtk::TreeModel::Path& path,      void sample_name_changed(const Gtk::TreeModel::Path& path,
318                               const Gtk::TreeModel::iterator& iter);                               const Gtk::TreeModel::iterator& iter);
319      void instrument_name_changed(const Gtk::TreeModel::Path& path,      void instrument_name_changed(const Gtk::TreeModel::Path& path,
# Line 232  protected: Line 322  protected:
322      void __import_queued_samples();      void __import_queued_samples();
323      void __clear();      void __clear();
324    
325        bool close_confirmation_dialog();
326        bool leaving_shared_mode_dialog();
327    
328      Gtk::Menu* popup_menu;      Gtk::Menu* popup_menu;
329    
330        bool on_delete_event(GdkEventAny* event);
331    
332        bool first_call_to_drag_data_get;
333  };  };
334    
335  #endif  #endif

Legend:
Removed from v.1225  
changed lines
  Added in v.1533

  ViewVC Help
Powered by ViewVC