/[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 2445 by persson, Sun Apr 28 06:07:22 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);
84      sigc::signal<void>& signal_instrument_changed();      gig::Instrument* get_instrument() { return m; }
85  protected:      void update_name();
86      gig::Instrument* instrument;      sigc::signal<void>& signal_name_changed() {
87      int update_model;          return sig_name_changed;
   
     template<typename T>  
     void set_value(T value, sigc::slot<void, InstrumentProps*, T> setter) {  
         if (update_model == 0) {  
             setter(this, value);  
             instrument_changed();  
         }  
88      }      }
89    protected:
90      template<typename C, typename T>      void set_Name(const gig::String& name);
     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;  
     }  
   
91      void set_IsDrum(bool value);      void set_IsDrum(bool value);
92      void set_MIDIBank(uint16_t value);      void set_MIDIBank(uint16_t value);
93      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);  
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;
# Line 163  protected: Line 109  protected:
109      BoolEntry ePianoReleaseMode;      BoolEntry ePianoReleaseMode;
110      NoteEntry eDimensionKeyRangeLow;      NoteEntry eDimensionKeyRangeLow;
111      NoteEntry eDimensionKeyRangeHigh;      NoteEntry eDimensionKeyRangeHigh;
     sigc::signal<void> instrument_changed;  
112  };  };
113    
114  class LoadDialog : public Gtk::Dialog {  class LoadDialog : public Gtk::Dialog {
# Line 186  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 209  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();      sigc::signal<void, int/*key*/, int/*velocity*/>& signal_note_on();
161      sigc::signal<void, int/*key*/, int/*velocity*/>& signal_note_off();      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 236  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      sigc::signal<void, int/*key*/, int/*velocity*/> note_on_signal;      sigc::signal<void, int/*key*/, int/*velocity*/> note_on_signal;
192      sigc::signal<void, int/*key*/, int/*velocity*/> note_off_signal;      sigc::signal<void, int/*key*/, int/*velocity*/> note_off_signal;
193    
194      void on_instrument_selection_change(int index);      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();
# Line 271  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 305  protected: Line 257  protected:
257      Gtk::CheckButton dimreg_stereo;      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 325  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();      void on_action_view_status_bar();
281      void on_action_help_about();      void on_action_help_about();
282    
# Line 333  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 347  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 368  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.1654  
changed lines
  Added in v.2445

  ViewVC Help
Powered by ViewVC