/[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 1654 by schoenebeck, Wed Jan 30 02:20:48 2008 UTC revision 2442 by persson, Sun Apr 14 07:29:59 2013 UTC
# Line 1  Line 1 
1  /*                                                         -*- c++ -*-  /*                                                         -*- c++ -*-
2   * Copyright (C) 2006 - 2008 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 Table : public Gtk::Table  class PropDialog : public Gtk::Window,
52  {                     public PropEditor<DLS::Info> {
 public:  
     Table(int x, int y);  
     void add(BoolEntry& boolentry);  
     void add(BoolEntryPlus6& boolentry);  
     void add(LabelWidget& labelwidget);  
 private:  
     int rowno;  
 };  
   
 class PropDialog : public Gtk::Window {  
53  public:  public:
54      PropDialog();      PropDialog();
55      void set_info(DLS::Info* info);      void set_info(DLS::Info* info);
     sigc::signal<void>& signal_info_changed();  
56  protected:  protected:
     sigc::signal<void> info_changed;  
57      StringEntry eName;      StringEntry eName;
58      StringEntry eCreationDate;      StringEntry eCreationDate;
59      StringEntryMultiLine eComments;      StringEntryMultiLine eComments;
# Line 81  protected: Line 74  protected:
74      Gtk::HButtonBox buttonBox;      Gtk::HButtonBox buttonBox;
75      Gtk::Button quitButton;      Gtk::Button quitButton;
76      Table table;      Table table;
     int update_model;  
     DLS::Info* info;  
   
     template<typename T>  
     void set_member(T value, T DLS::Info::* member) {  
         if (update_model == 0) {  
             info->*member = value;  
             info_changed();  
         }  
     }  
   
     template<typename C, typename T>  
     void connect(C& widget, T DLS::Info::* member) {  
         widget.signal_value_changed().connect(  
             sigc::compose(  
                 sigc::bind(sigc::mem_fun(*this, &PropDialog::set_member<T>), member),  
                 sigc::mem_fun(widget, &C::get_value)));  
     }  
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);
     sigc::signal<void>& signal_instrument_changed();  
84  protected:  protected:
     gig::Instrument* instrument;  
     int update_model;  
   
     template<typename T>  
     void set_value(T value, sigc::slot<void, InstrumentProps*, T> setter) {  
         if (update_model == 0) {  
             setter(this, value);  
             instrument_changed();  
         }  
     }  
   
     template<typename C, typename T>  
     void connect(C& widget, T gig::Instrument::* member) {  
         widget.signal_value_changed().connect(  
             sigc::compose(  
                 sigc::bind(sigc::mem_fun(*this, &InstrumentProps::set_value<T>),  
                            sigc::bind(sigc::mem_fun(&InstrumentProps::set_member<T>), member)),  
                 sigc::mem_fun(widget, &C::get_value)));  
     }  
   
     template<typename C, typename T>  
     void connect(C& widget, void (InstrumentProps::*setter)(T)) {  
         widget.signal_value_changed().connect(  
             sigc::compose(  
                 sigc::bind(sigc::mem_fun(*this, &InstrumentProps::set_value<T>),  
                            sigc::mem_fun(setter)),  
                 sigc::mem_fun(widget, &C::get_value)));  
     }  
   
     template<typename T>  
     void set_member(T value, T gig::Instrument::* member) {  
         instrument->*member = value;  
     }  
   
85      void set_IsDrum(bool value);      void set_IsDrum(bool value);
86      void set_MIDIBank(uint16_t value);      void set_MIDIBank(uint16_t value);
87      void set_MIDIProgram(uint32_t value);      void set_MIDIProgram(uint32_t value);
     void set_DimensionKeyRange_low(uint8_t value);  
     void set_DimensionKeyRange_high(uint8_t value);  
88    
89      Gtk::VBox vbox;      Gtk::VBox vbox;
90      Gtk::HButtonBox buttonBox;      Gtk::HButtonBox buttonBox;
# Line 163  protected: Line 102  protected:
102      BoolEntry ePianoReleaseMode;      BoolEntry ePianoReleaseMode;
103      NoteEntry eDimensionKeyRangeLow;      NoteEntry eDimensionKeyRangeLow;
104      NoteEntry eDimensionKeyRangeHigh;      NoteEntry eDimensionKeyRangeHigh;
     sigc::signal<void> instrument_changed;  
105  };  };
106    
107  class LoadDialog : public Gtk::Dialog {  class LoadDialog : public Gtk::Dialog {
# Line 186  public: Line 124  public:
124      gig::File* gig;      gig::File* gig;
125    
126  private:  private:
127      Glib::Thread* thread;      Glib::Threads::Thread* thread;
128      void thread_function();      void thread_function();
129      Glib::Dispatcher finished_dispatcher;      Glib::Dispatcher finished_dispatcher;
130      Glib::Dispatcher progress_dispatcher;      Glib::Dispatcher progress_dispatcher;
131      Glib::Mutex progressMutex;      Glib::Threads::Mutex progressMutex;
132      float progress;      float progress;
133  };  };
134    
# Line 209  public: Line 147  public:
147      sigc::signal<void, gig::Region*>& signal_region_changed();      sigc::signal<void, gig::Region*>& signal_region_changed();
148      sigc::signal<void, gig::DimensionRegion*>& signal_dimreg_to_be_changed();      sigc::signal<void, gig::DimensionRegion*>& signal_dimreg_to_be_changed();
149      sigc::signal<void, gig::DimensionRegion*>& signal_dimreg_changed();      sigc::signal<void, gig::DimensionRegion*>& signal_dimreg_changed();
150        sigc::signal<void, gig::Sample*>& signal_sample_changed();
151      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();
152    
153      sigc::signal<void, int/*key*/, int/*velocity*/>& signal_note_on();      sigc::signal<void, int/*key*/, int/*velocity*/>& signal_note_on();
154      sigc::signal<void, int/*key*/, int/*velocity*/>& signal_note_off();      sigc::signal<void, int/*key*/, int/*velocity*/>& signal_note_off();
155    
156        sigc::signal<void, int/*key*/, int/*velocity*/>& signal_keyboard_key_hit();
157        sigc::signal<void, int/*key*/, int/*velocity*/>& signal_keyboard_key_released();
158    
159  protected:  protected:
160      Glib::RefPtr<Gtk::ActionGroup> actionGroup;      Glib::RefPtr<Gtk::ActionGroup> actionGroup;
161      Glib::RefPtr<Gtk::UIManager> uiManager;      Glib::RefPtr<Gtk::UIManager> uiManager;
# Line 236  protected: Line 178  protected:
178      sigc::signal<void, gig::Region*> region_changed_signal;      sigc::signal<void, gig::Region*> region_changed_signal;
179      sigc::signal<void, gig::DimensionRegion*> dimreg_to_be_changed_signal;      sigc::signal<void, gig::DimensionRegion*> dimreg_to_be_changed_signal;
180      sigc::signal<void, gig::DimensionRegion*> dimreg_changed_signal;      sigc::signal<void, gig::DimensionRegion*> dimreg_changed_signal;
181        sigc::signal<void, gig::Sample*> sample_changed_signal;
182      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;
183    
184      sigc::signal<void, int/*key*/, int/*velocity*/> note_on_signal;      sigc::signal<void, int/*key*/, int/*velocity*/> note_on_signal;
185      sigc::signal<void, int/*key*/, int/*velocity*/> note_off_signal;      sigc::signal<void, int/*key*/, int/*velocity*/> note_off_signal;
186    
187      void on_instrument_selection_change(int index);      void on_instrument_selection_change(Gtk::RadioMenuItem* item);
188      void on_sel_change();      void on_sel_change();
189      void region_changed();      void region_changed();
190      void dimreg_changed();      void dimreg_changed();
# Line 271  protected: Line 214  protected:
214      Gtk::TreeView m_TreeView;      Gtk::TreeView m_TreeView;
215      Glib::RefPtr<Gtk::ListStore> m_refTreeModel;      Glib::RefPtr<Gtk::ListStore> m_refTreeModel;
216    
217        Gtk::Menu* instrument_menu;
218    
219      class SamplesModel : public Gtk::TreeModel::ColumnRecord {      class SamplesModel : public Gtk::TreeModel::ColumnRecord {
220      public:      public:
221          SamplesModel() {          SamplesModel() {
# Line 305  protected: Line 250  protected:
250      Gtk::CheckButton dimreg_stereo;      Gtk::CheckButton dimreg_stereo;
251      DimRegionEdit dimreg_edit;      DimRegionEdit dimreg_edit;
252    
     Gtk::Notebook m_Notebook;  
253      Gtk::Notebook m_TreeViewNotebook;      Gtk::Notebook m_TreeViewNotebook;
254    
255      struct SampleImportItem {      struct SampleImportItem {
# Line 333  protected: Line 277  protected:
277      void on_action_sample_properties();      void on_action_sample_properties();
278      void on_action_add_group();      void on_action_add_group();
279      void on_action_add_sample();      void on_action_add_sample();
280        void on_action_replace_all_samples_in_all_groups();
281      void on_action_remove_sample();      void on_action_remove_sample();
282    
283      void on_action_add_instrument();      void on_action_add_instrument();
284        void on_action_duplicate_instrument();
285      void on_action_remove_instrument();      void on_action_remove_instrument();
286    
287        void add_instrument(gig::Instrument* instrument);
288        Gtk::RadioMenuItem* add_instrument_to_menu(const Glib::ustring& name,
289                                                   int position = -1);
290        void remove_instrument_from_menu(int index);
291    
292      LoadDialog* load_dialog;      LoadDialog* load_dialog;
293      Loader* loader;      Loader* loader;
294      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 347  protected: Line 298  protected:
298      bool file_has_name;      bool file_has_name;
299      bool file_is_changed;      bool file_is_changed;
300      std::string filename;      std::string filename;
301      std::string current_dir;      std::string current_gig_dir;
302        std::string current_sample_dir;
303    
304      void set_file_is_shared(bool);      void set_file_is_shared(bool);
305    
# Line 368  protected: Line 320  protected:
320                               const Gtk::TreeModel::iterator& iter);                               const Gtk::TreeModel::iterator& iter);
321      void instrument_name_changed(const Gtk::TreeModel::Path& path,      void instrument_name_changed(const Gtk::TreeModel::Path& path,
322                                   const Gtk::TreeModel::iterator& iter);                                   const Gtk::TreeModel::iterator& iter);
323        sigc::connection instrument_name_connection;
324    
325      void __import_queued_samples();      void __import_queued_samples();
326      void __clear();      void __clear();

Legend:
Removed from v.1654  
changed lines
  Added in v.2442

  ViewVC Help
Powered by ViewVC