/[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 1411 by schoenebeck, Fri Oct 12 17:46:29 2007 UTC revision 2445 by persson, Sun Apr 28 06:07:22 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 26  Line 26 
26  #include <gtkmm/buttonbox.h>  #include <gtkmm/buttonbox.h>
27  #include <gtkmm/dialog.h>  #include <gtkmm/dialog.h>
28  #include <gtkmm/liststore.h>  #include <gtkmm/liststore.h>
29    #include <gtkmm/menu.h>
30  #include <gtkmm/paned.h>  #include <gtkmm/paned.h>
31  #include <gtkmm/progressbar.h>  #include <gtkmm/progressbar.h>
32    #include <gtkmm/radiomenuitem.h>
33  #include <gtkmm/scrolledwindow.h>  #include <gtkmm/scrolledwindow.h>
34  #include <gtkmm/treestore.h>  #include <gtkmm/treestore.h>
35  #include <gtkmm/uimanager.h>  #include <gtkmm/uimanager.h>
# Line 40  Line 42 
42  #include "regionchooser.h"  #include "regionchooser.h"
43  #include "dimregionchooser.h"  #include "dimregionchooser.h"
44  #include "dimregionedit.h"  #include "dimregionedit.h"
45    #ifndef OLD_THREADS
46    #include <glibmm/threads.h>
47    #endif
48    
49  class MainWindow;  class MainWindow;
50    
51  class PropDialog : public Gtk::Window {  class PropDialog : public Gtk::Window,
52                       public PropEditor<DLS::Info> {
53  public:  public:
54      PropDialog();      PropDialog();
55      void set_info(DLS::Info* info);      void set_info(DLS::Info* info);
56  protected:  protected:
57      Gtk::Table table;      StringEntry eName;
58      Gtk::Label label[16];      StringEntry eCreationDate;
59      Gtk::Entry entry[16];      StringEntryMultiLine eComments;
60        StringEntry eProduct;
61        StringEntry eCopyright;
62        StringEntry eArtists;
63        StringEntry eGenre;
64        StringEntry eKeywords;
65        StringEntry eEngineer;
66        StringEntry eTechnician;
67        StringEntry eSoftware;
68        StringEntry eMedium;
69        StringEntry eSource;
70        StringEntry eSourceForm;
71        StringEntry eCommissioned;
72        StringEntry eSubject;
73        Gtk::VBox vbox;
74        Gtk::HButtonBox buttonBox;
75        Gtk::Button quitButton;
76        Table table;
77  };  };
78    
79  class InstrumentProps : public Gtk::Window {  class InstrumentProps : public Gtk::Window,
80                            public PropEditor<gig::Instrument> {
81  public:  public:
82      InstrumentProps();      InstrumentProps();
83      void set_instrument(gig::Instrument* instrument);      void set_instrument(gig::Instrument* instrument);
84      sigc::signal<void>& signal_instrument_changed();      gig::Instrument* get_instrument() { return m; }
85        void update_name();
86        sigc::signal<void>& signal_name_changed() {
87            return sig_name_changed;
88        }
89  protected:  protected:
90        void set_Name(const gig::String& name);
91        void set_IsDrum(bool value);
92        void set_MIDIBank(uint16_t value);
93        void set_MIDIProgram(uint32_t value);
94    
95        sigc::signal<void> sig_name_changed;
96      Gtk::VBox vbox;      Gtk::VBox vbox;
97      Gtk::HButtonBox buttonBox;      Gtk::HButtonBox buttonBox;
98      Gtk::Button quitButton;      Gtk::Button quitButton;
99      Gtk::Table table;      Table table;
100      StringEntry eName;      StringEntry eName;
101      BoolEntry eIsDrum;      BoolEntry eIsDrum;
102      NumEntryTemp<uint16_t> eMIDIBank;      NumEntryTemp<uint16_t> eMIDIBank;
# Line 75  protected: Line 109  protected:
109      BoolEntry ePianoReleaseMode;      BoolEntry ePianoReleaseMode;
110      NoteEntry eDimensionKeyRangeLow;      NoteEntry eDimensionKeyRangeLow;
111      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;  
112  };  };
113    
114  class LoadDialog : public Gtk::Dialog {  class LoadDialog : public Gtk::Dialog {
# Line 104  public: Line 131  public:
131      gig::File* gig;      gig::File* gig;
132    
133  private:  private:
134      Glib::Thread* thread;      Glib::Threads::Thread* thread;
135      void thread_function();      void thread_function();
136      Glib::Dispatcher finished_dispatcher;      Glib::Dispatcher finished_dispatcher;
137      Glib::Dispatcher progress_dispatcher;      Glib::Dispatcher progress_dispatcher;
138      Glib::Mutex progressMutex;      Glib::Threads::Mutex progressMutex;
139      float progress;      float progress;
140  };  };
141    
# Line 127  public: Line 154  public:
154      sigc::signal<void, gig::Region*>& signal_region_changed();      sigc::signal<void, gig::Region*>& signal_region_changed();
155      sigc::signal<void, gig::DimensionRegion*>& signal_dimreg_to_be_changed();      sigc::signal<void, gig::DimensionRegion*>& signal_dimreg_to_be_changed();
156      sigc::signal<void, gig::DimensionRegion*>& signal_dimreg_changed();      sigc::signal<void, gig::DimensionRegion*>& signal_dimreg_changed();
157        sigc::signal<void, gig::Sample*>& signal_sample_changed();
158      sigc::signal<void, gig::Sample*/*old*/, gig::Sample*/*new*/>& signal_sample_ref_changed();      sigc::signal<void, gig::Sample*/*old*/, gig::Sample*/*new*/>& signal_sample_ref_changed();
159    
160        sigc::signal<void, int/*key*/, int/*velocity*/>& signal_note_on();
161        sigc::signal<void, int/*key*/, int/*velocity*/>& signal_note_off();
162    
163        sigc::signal<void, int/*key*/, int/*velocity*/>& signal_keyboard_key_hit();
164        sigc::signal<void, int/*key*/, int/*velocity*/>& signal_keyboard_key_released();
165    
166  protected:  protected:
167      Glib::RefPtr<Gtk::ActionGroup> actionGroup;      Glib::RefPtr<Gtk::ActionGroup> actionGroup;
168      Glib::RefPtr<Gtk::UIManager> uiManager;      Glib::RefPtr<Gtk::UIManager> uiManager;
# Line 151  protected: Line 185  protected:
185      sigc::signal<void, gig::Region*> region_changed_signal;      sigc::signal<void, gig::Region*> region_changed_signal;
186      sigc::signal<void, gig::DimensionRegion*> dimreg_to_be_changed_signal;      sigc::signal<void, gig::DimensionRegion*> dimreg_to_be_changed_signal;
187      sigc::signal<void, gig::DimensionRegion*> dimreg_changed_signal;      sigc::signal<void, gig::DimensionRegion*> dimreg_changed_signal;
188        sigc::signal<void, gig::Sample*> sample_changed_signal;
189      sigc::signal<void, gig::Sample*/*old*/, gig::Sample*/*new*/> sample_ref_changed_signal;      sigc::signal<void, gig::Sample*/*old*/, gig::Sample*/*new*/> sample_ref_changed_signal;
190    
191      void on_instrument_selection_change(int index);      sigc::signal<void, int/*key*/, int/*velocity*/> note_on_signal;
192        sigc::signal<void, int/*key*/, int/*velocity*/> note_off_signal;
193    
194        void on_instrument_selection_change(Gtk::RadioMenuItem* item);
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 179  protected: Line 221  protected:
221      Gtk::TreeView m_TreeView;      Gtk::TreeView m_TreeView;
222      Glib::RefPtr<Gtk::ListStore> m_refTreeModel;      Glib::RefPtr<Gtk::ListStore> m_refTreeModel;
223    
224        Gtk::Menu* instrument_menu;
225    
226      class SamplesModel : public Gtk::TreeModel::ColumnRecord {      class SamplesModel : public Gtk::TreeModel::ColumnRecord {
227      public:      public:
228          SamplesModel() {          SamplesModel() {
# Line 205  protected: Line 249  protected:
249      Gtk::TreeView m_TreeViewSamples;      Gtk::TreeView m_TreeViewSamples;
250      Glib::RefPtr<SamplesTreeStore> m_refSamplesTreeModel;      Glib::RefPtr<SamplesTreeStore> m_refSamplesTreeModel;
251    
252        Gtk::VBox dimreg_vbox;
253        Gtk::HBox dimreg_hbox;
254        Gtk::Label dimreg_label;
255        Gtk::CheckButton dimreg_all_regions;
256        Gtk::CheckButton dimreg_all_dimregs;
257        Gtk::CheckButton dimreg_stereo;
258      DimRegionEdit dimreg_edit;      DimRegionEdit dimreg_edit;
259    
     Gtk::Notebook m_Notebook;  
260      Gtk::Notebook m_TreeViewNotebook;      Gtk::Notebook m_TreeViewNotebook;
261    
262      struct SampleImportItem {      struct SampleImportItem {
# Line 227  protected: Line 276  protected:
276      void on_action_file_properties();      void on_action_file_properties();
277      void on_action_quit();      void on_action_quit();
278      void show_instr_props();      void show_instr_props();
279        bool instr_props_set_instrument();
280        void on_action_view_status_bar();
281      void on_action_help_about();      void on_action_help_about();
282    
283      // sample right-click popup actions      // sample right-click popup actions
# Line 234  protected: Line 285  protected:
285      void on_action_sample_properties();      void on_action_sample_properties();
286      void on_action_add_group();      void on_action_add_group();
287      void on_action_add_sample();      void on_action_add_sample();
288        void on_action_replace_all_samples_in_all_groups();
289      void on_action_remove_sample();      void on_action_remove_sample();
290    
291      void on_action_add_instrument();      void on_action_add_instrument();
292        void on_action_duplicate_instrument();
293      void on_action_remove_instrument();      void on_action_remove_instrument();
294    
295        void add_instrument(gig::Instrument* instrument);
296        Gtk::RadioMenuItem* add_instrument_to_menu(const Glib::ustring& name,
297                                                   int position = -1);
298        void remove_instrument_from_menu(int index);
299    
300      LoadDialog* load_dialog;      LoadDialog* load_dialog;
301      Loader* loader;      Loader* loader;
302      void load_gig(gig::File* gig, const char* filename, bool isSharedInstrument = false);      void load_gig(gig::File* gig, const char* filename, bool isSharedInstrument = false);
# Line 248  protected: Line 306  protected:
306      bool file_has_name;      bool file_has_name;
307      bool file_is_changed;      bool file_is_changed;
308      std::string filename;      std::string filename;
309      std::string current_dir;      std::string current_gig_dir;
310        std::string current_sample_dir;
311    
312      void set_file_is_shared(bool);      void set_file_is_shared(bool);
313    
# Line 269  protected: Line 328  protected:
328                               const Gtk::TreeModel::iterator& iter);                               const Gtk::TreeModel::iterator& iter);
329      void instrument_name_changed(const Gtk::TreeModel::Path& path,      void instrument_name_changed(const Gtk::TreeModel::Path& path,
330                                   const Gtk::TreeModel::iterator& iter);                                   const Gtk::TreeModel::iterator& iter);
331        void instr_name_changed_by_instr_props(Gtk::TreeModel::iterator& it);
332        sigc::connection instrument_name_connection;
333    
334      void __import_queued_samples();      void __import_queued_samples();
335      void __clear();      void __clear();

Legend:
Removed from v.1411  
changed lines
  Added in v.2445

  ViewVC Help
Powered by ViewVC