/[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 1303 by persson, Sun Aug 26 09:29:52 2007 UTC revision 2423 by persson, Sun Feb 24 15:19:39 2013 UTC
# Line 1  Line 1 
1  /*                                                         -*- c++ -*-  /*                                                         -*- c++ -*-
2   * Copyright (C) 2006, 2007 Andreas Persson   * Copyright (C) 2006 - 2013 Andreas Persson
3   *   *
4   * This program is free software; you can redistribute it and/or   * This program is free software; you can redistribute it and/or
5   * modify it under the terms of the GNU General Public License as   * modify it under the terms of the GNU General Public License as
# 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    
40  #include "regionchooser.h"  #include "regionchooser.h"
41  #include "dimregionchooser.h"  #include "dimregionchooser.h"
42  #include "dimregionedit.h"  #include "dimregionedit.h"
43    #ifndef OLD_THREADS
44    #include <glibmm/threads.h>
45    #endif
46    
47  class MainWindow;  class MainWindow;
48    
49  class PropDialog : public Gtk::Window {  class PropDialog : public Gtk::Window,
50                       public PropEditor<DLS::Info> {
51  public:  public:
52      PropDialog();      PropDialog();
53      void set_info(DLS::Info* info);      void set_info(DLS::Info* info);
54  protected:  protected:
55      Gtk::Table table;      StringEntry eName;
56      Gtk::Label label[16];      StringEntry eCreationDate;
57      Gtk::Entry entry[16];      StringEntryMultiLine eComments;
58        StringEntry eProduct;
59        StringEntry eCopyright;
60        StringEntry eArtists;
61        StringEntry eGenre;
62        StringEntry eKeywords;
63        StringEntry eEngineer;
64        StringEntry eTechnician;
65        StringEntry eSoftware;
66        StringEntry eMedium;
67        StringEntry eSource;
68        StringEntry eSourceForm;
69        StringEntry eCommissioned;
70        StringEntry eSubject;
71        Gtk::VBox vbox;
72        Gtk::HButtonBox buttonBox;
73        Gtk::Button quitButton;
74        Table table;
75  };  };
76    
77  class InstrumentProps : public Gtk::Window {  class InstrumentProps : public Gtk::Window,
78                            public PropEditor<gig::Instrument> {
79  public:  public:
80      InstrumentProps();      InstrumentProps();
81      void set_instrument(gig::Instrument* instrument);      void set_instrument(gig::Instrument* instrument);
     sigc::signal<void> signal_instrument_changed();  
82  protected:  protected:
83        void set_IsDrum(bool value);
84        void set_MIDIBank(uint16_t value);
85        void set_MIDIProgram(uint32_t value);
86    
87      Gtk::VBox vbox;      Gtk::VBox vbox;
88      Gtk::HButtonBox buttonBox;      Gtk::HButtonBox buttonBox;
89      Gtk::Button quitButton;      Gtk::Button quitButton;
90      Gtk::Table table;      Table table;
91      StringEntry eName;      StringEntry eName;
92      BoolEntry eIsDrum;      BoolEntry eIsDrum;
93      NumEntryTemp<uint16_t> eMIDIBank;      NumEntryTemp<uint16_t> eMIDIBank;
# Line 73  protected: Line 100  protected:
100      BoolEntry ePianoReleaseMode;      BoolEntry ePianoReleaseMode;
101      NoteEntry eDimensionKeyRangeLow;      NoteEntry eDimensionKeyRangeLow;
102      NoteEntry eDimensionKeyRangeHigh;      NoteEntry eDimensionKeyRangeHigh;
     int rowno;  
     void add_prop(BoolEntry& prop);  
     void add_prop(BoolEntryPlus6& prop);  
     void add_prop(LabelWidget& prop);  
     void key_range_low_changed();  
     void key_range_high_changed();  
     sigc::signal<void> instrument_changed;  
103  };  };
104    
105  class LoadDialog : public Gtk::Dialog {  class LoadDialog : public Gtk::Dialog {
# Line 102  public: Line 122  public:
122      gig::File* gig;      gig::File* gig;
123    
124  private:  private:
125      Glib::Thread* thread;      Glib::Threads::Thread* thread;
126      void thread_function();      void thread_function();
127      Glib::Dispatcher finished_dispatcher;      Glib::Dispatcher finished_dispatcher;
128      Glib::Dispatcher progress_dispatcher;      Glib::Dispatcher progress_dispatcher;
129      Glib::Mutex progressMutex;      Glib::Threads::Mutex progressMutex;
130      float progress;      float progress;
131  };  };
132    
# Line 117  public: Line 137  public:
137      void load_file(const char* name);      void load_file(const char* name);
138      void load_instrument(gig::Instrument* instr);      void load_instrument(gig::Instrument* instr);
139      void file_changed();      void file_changed();
140        sigc::signal<void, gig::File*>& signal_file_structure_to_be_changed();
141        sigc::signal<void, gig::File*>& signal_file_structure_changed();
142        sigc::signal<void, std::list<gig::Sample*> >& signal_samples_to_be_removed();
143        sigc::signal<void>& signal_samples_removed();
144        sigc::signal<void, gig::Region*>& signal_region_to_be_changed();
145        sigc::signal<void, gig::Region*>& signal_region_changed();
146        sigc::signal<void, gig::DimensionRegion*>& signal_dimreg_to_be_changed();
147        sigc::signal<void, gig::DimensionRegion*>& signal_dimreg_changed();
148        sigc::signal<void, gig::Sample*>& signal_sample_changed();
149        sigc::signal<void, gig::Sample*/*old*/, gig::Sample*/*new*/>& signal_sample_ref_changed();
150    
151        sigc::signal<void, int/*key*/, int/*velocity*/>& signal_note_on();
152        sigc::signal<void, int/*key*/, int/*velocity*/>& signal_note_off();
153    
154        sigc::signal<void, int/*key*/, int/*velocity*/>& signal_keyboard_key_hit();
155        sigc::signal<void, int/*key*/, int/*velocity*/>& signal_keyboard_key_released();
156    
157  protected:  protected:
158      Glib::RefPtr<Gtk::ActionGroup> actionGroup;      Glib::RefPtr<Gtk::ActionGroup> actionGroup;
159      Glib::RefPtr<Gtk::UIManager> uiManager;      Glib::RefPtr<Gtk::UIManager> uiManager;
160    
161        Gtk::Statusbar m_StatusBar;
162        Gtk::Label     m_AttachedStateLabel;
163        Gtk::Image     m_AttachedStateImage;
164    
165      RegionChooser m_RegionChooser;      RegionChooser m_RegionChooser;
166      DimRegionChooser m_DimRegionChooser;      DimRegionChooser m_DimRegionChooser;
167    
168      PropDialog propDialog;      PropDialog propDialog;
169      InstrumentProps instrumentProps;      InstrumentProps instrumentProps;
170    
171        sigc::signal<void, gig::File*> file_structure_to_be_changed_signal;
172        sigc::signal<void, gig::File*> file_structure_changed_signal;
173        sigc::signal<void, std::list<gig::Sample*> > samples_to_be_removed_signal;
174        sigc::signal<void> samples_removed_signal;
175        sigc::signal<void, gig::Region*> region_to_be_changed_signal;
176        sigc::signal<void, gig::Region*> region_changed_signal;
177        sigc::signal<void, gig::DimensionRegion*> dimreg_to_be_changed_signal;
178        sigc::signal<void, gig::DimensionRegion*> dimreg_changed_signal;
179        sigc::signal<void, gig::Sample*> sample_changed_signal;
180        sigc::signal<void, gig::Sample*/*old*/, gig::Sample*/*new*/> sample_ref_changed_signal;
181    
182        sigc::signal<void, int/*key*/, int/*velocity*/> note_on_signal;
183        sigc::signal<void, int/*key*/, int/*velocity*/> note_off_signal;
184    
185      void on_instrument_selection_change(int index);      void on_instrument_selection_change(int index);
186      void on_sel_change();      void on_sel_change();
187      void region_changed();      void region_changed();
188      void dimreg_changed();      void dimreg_changed();
189      void on_loader_progress();      void on_loader_progress();
190      void on_loader_finished();      void on_loader_finished();
191        void dimreg_all_dimregs_toggled();
192        gig::Instrument* get_instrument();
193        void add_region_to_dimregs(gig::Region* region, bool stereo, bool all_dimregs);
194        void update_dimregs();
195    
196      class ModelColumns : public Gtk::TreeModel::ColumnRecord {      class ModelColumns : public Gtk::TreeModel::ColumnRecord {
197      public:      public:
# Line 180  protected: Line 238  protected:
238      Gtk::TreeView m_TreeViewSamples;      Gtk::TreeView m_TreeViewSamples;
239      Glib::RefPtr<SamplesTreeStore> m_refSamplesTreeModel;      Glib::RefPtr<SamplesTreeStore> m_refSamplesTreeModel;
240    
241        Gtk::VBox dimreg_vbox;
242        Gtk::HBox dimreg_hbox;
243        Gtk::Label dimreg_label;
244        Gtk::CheckButton dimreg_all_regions;
245        Gtk::CheckButton dimreg_all_dimregs;
246        Gtk::CheckButton dimreg_stereo;
247      DimRegionEdit dimreg_edit;      DimRegionEdit dimreg_edit;
248    
     Gtk::Notebook m_Notebook;  
249      Gtk::Notebook m_TreeViewNotebook;      Gtk::Notebook m_TreeViewNotebook;
250    
251      struct SampleImportItem {      struct SampleImportItem {
# Line 202  protected: Line 265  protected:
265      void on_action_file_properties();      void on_action_file_properties();
266      void on_action_quit();      void on_action_quit();
267      void show_instr_props();      void show_instr_props();
268        void on_action_view_status_bar();
269      void on_action_help_about();      void on_action_help_about();
270    
271      // sample right-click popup actions      // sample right-click popup actions
# Line 209  protected: Line 273  protected:
273      void on_action_sample_properties();      void on_action_sample_properties();
274      void on_action_add_group();      void on_action_add_group();
275      void on_action_add_sample();      void on_action_add_sample();
276        void on_action_replace_all_samples_in_all_groups();
277      void on_action_remove_sample();      void on_action_remove_sample();
278    
279      void on_action_add_instrument();      void on_action_add_instrument();
280        void on_action_duplicate_instrument();
281      void on_action_remove_instrument();      void on_action_remove_instrument();
282    
283      LoadDialog* load_dialog;      LoadDialog* load_dialog;
284      Loader* loader;      Loader* loader;
285      void load_gig(gig::File* gig, const char* filename);      void load_gig(gig::File* gig, const char* filename, bool isSharedInstrument = false);
286    
287      gig::File* file;      gig::File* file;
288        bool file_is_shared;
289      bool file_has_name;      bool file_has_name;
290      bool file_is_changed;      bool file_is_changed;
291      std::string filename;      std::string filename;
292      std::string current_dir;      std::string current_gig_dir;
293        std::string current_sample_dir;
294    
295        void set_file_is_shared(bool);
296    
297      bool file_save();      bool file_save();
298      bool file_save_as();      bool file_save_as();
# Line 246  protected: Line 316  protected:
316      void __clear();      void __clear();
317    
318      bool close_confirmation_dialog();      bool close_confirmation_dialog();
319        bool leaving_shared_mode_dialog();
320    
321      Gtk::Menu* popup_menu;      Gtk::Menu* popup_menu;
322    

Legend:
Removed from v.1303  
changed lines
  Added in v.2423

  ViewVC Help
Powered by ViewVC