/[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 1262 by persson, Sun Jul 22 15:07:08 2007 UTC revision 2442 by persson, Sun Apr 14 07:29:59 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>
36  #include <gtkmm/window.h>  #include <gtkmm/window.h>
37    #include <gtkmm/statusbar.h>
38    #include <gtkmm/image.h>
39    
40  #include <sstream>  #include <sstream>
41    
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);
     sigc::signal<void> signal_instrument_changed();  
84  protected:  protected:
85        void set_IsDrum(bool value);
86        void set_MIDIBank(uint16_t value);
87        void set_MIDIProgram(uint32_t value);
88    
89      Gtk::VBox vbox;      Gtk::VBox vbox;
90      Gtk::HButtonBox buttonBox;      Gtk::HButtonBox buttonBox;
91      Gtk::Button quitButton;      Gtk::Button quitButton;
92      Gtk::Table table;      Table table;
93      StringEntry eName;      StringEntry eName;
94      BoolEntry eIsDrum;      BoolEntry eIsDrum;
95      NumEntryTemp<uint16_t> eMIDIBank;      NumEntryTemp<uint16_t> eMIDIBank;
# Line 73  protected: Line 102  protected:
102      BoolEntry ePianoReleaseMode;      BoolEntry ePianoReleaseMode;
103      NoteEntry eDimensionKeyRangeLow;      NoteEntry eDimensionKeyRangeLow;
104      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;  
105  };  };
106    
107  class LoadDialog : public Gtk::Dialog {  class LoadDialog : public Gtk::Dialog {
# Line 102  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 117  public: Line 139  public:
139      void load_file(const char* name);      void load_file(const char* name);
140      void load_instrument(gig::Instrument* instr);      void load_instrument(gig::Instrument* instr);
141      void file_changed();      void file_changed();
142        sigc::signal<void, gig::File*>& signal_file_structure_to_be_changed();
143        sigc::signal<void, gig::File*>& signal_file_structure_changed();
144        sigc::signal<void, std::list<gig::Sample*> >& signal_samples_to_be_removed();
145        sigc::signal<void>& signal_samples_removed();
146        sigc::signal<void, gig::Region*>& signal_region_to_be_changed();
147        sigc::signal<void, gig::Region*>& signal_region_changed();
148        sigc::signal<void, gig::DimensionRegion*>& signal_dimreg_to_be_changed();
149        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();
152    
153        sigc::signal<void, int/*key*/, int/*velocity*/>& signal_note_on();
154        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;
162    
163        Gtk::Statusbar m_StatusBar;
164        Gtk::Label     m_AttachedStateLabel;
165        Gtk::Image     m_AttachedStateImage;
166    
167      RegionChooser m_RegionChooser;      RegionChooser m_RegionChooser;
168      DimRegionChooser m_DimRegionChooser;      DimRegionChooser m_DimRegionChooser;
169    
170      PropDialog propDialog;      PropDialog propDialog;
171      InstrumentProps instrumentProps;      InstrumentProps instrumentProps;
172    
173      void on_instrument_selection_change(int index);      sigc::signal<void, gig::File*> file_structure_to_be_changed_signal;
174        sigc::signal<void, gig::File*> file_structure_changed_signal;
175        sigc::signal<void, std::list<gig::Sample*> > samples_to_be_removed_signal;
176        sigc::signal<void> samples_removed_signal;
177        sigc::signal<void, gig::Region*> region_to_be_changed_signal;
178        sigc::signal<void, gig::Region*> region_changed_signal;
179        sigc::signal<void, gig::DimensionRegion*> dimreg_to_be_changed_signal;
180        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;
183    
184        sigc::signal<void, int/*key*/, int/*velocity*/> note_on_signal;
185        sigc::signal<void, int/*key*/, int/*velocity*/> note_off_signal;
186    
187        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();
191      void on_loader_progress();      void on_loader_progress();
192      void on_loader_finished();      void on_loader_finished();
193        void dimreg_all_dimregs_toggled();
194        gig::Instrument* get_instrument();
195        void add_region_to_dimregs(gig::Region* region, bool stereo, bool all_dimregs);
196        void update_dimregs();
197    
198      class ModelColumns : public Gtk::TreeModel::ColumnRecord {      class ModelColumns : public Gtk::TreeModel::ColumnRecord {
199      public:      public:
# Line 154  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 180  protected: Line 242  protected:
242      Gtk::TreeView m_TreeViewSamples;      Gtk::TreeView m_TreeViewSamples;
243      Glib::RefPtr<SamplesTreeStore> m_refSamplesTreeModel;      Glib::RefPtr<SamplesTreeStore> m_refSamplesTreeModel;
244    
245        Gtk::VBox dimreg_vbox;
246        Gtk::HBox dimreg_hbox;
247        Gtk::Label dimreg_label;
248        Gtk::CheckButton dimreg_all_regions;
249        Gtk::CheckButton dimreg_all_dimregs;
250        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 202  protected: Line 269  protected:
269      void on_action_file_properties();      void on_action_file_properties();
270      void on_action_quit();      void on_action_quit();
271      void show_instr_props();      void show_instr_props();
272        void on_action_view_status_bar();
273      void on_action_help_about();      void on_action_help_about();
274    
275      // sample right-click popup actions      // sample right-click popup actions
# Line 209  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);      void load_gig(gig::File* gig, const char* filename, bool isSharedInstrument = false);
295    
296      gig::File* file;      gig::File* file;
297        bool file_is_shared;
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);
305    
306      bool file_save();      bool file_save();
307      bool file_save_as();      bool file_save_as();
308        bool check_if_savable();
309    
310      void on_button_release(GdkEventButton* button);      void on_button_release(GdkEventButton* button);
311        void on_sample_treeview_drag_begin(const Glib::RefPtr<Gdk::DragContext>& context);
312      void on_sample_treeview_drag_data_get(const Glib::RefPtr<Gdk::DragContext>&,      void on_sample_treeview_drag_data_get(const Glib::RefPtr<Gdk::DragContext>&,
313                                            Gtk::SelectionData& selection_data, guint, guint);                                            Gtk::SelectionData& selection_data, guint, guint);
314      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,
315                                                   int, int,                                                   int, int,
316                                                   const Gtk::SelectionData& selection_data,                                                   const Gtk::SelectionData& selection_data,
317                                                   guint, guint time);                                                   guint, guint time);
318    
319      void sample_name_changed(const Gtk::TreeModel::Path& path,      void sample_name_changed(const Gtk::TreeModel::Path& path,
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();
327    
328      bool close_confirmation_dialog();      bool close_confirmation_dialog();
329        bool leaving_shared_mode_dialog();
330    
331      Gtk::Menu* popup_menu;      Gtk::Menu* popup_menu;
332    
333      bool on_delete_event(GdkEventAny* event);      bool on_delete_event(GdkEventAny* event);
334    
335        bool first_call_to_drag_data_get;
336  };  };
337    
338  #endif  #endif

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

  ViewVC Help
Powered by ViewVC