/[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 2701 by schoenebeck, Mon Jan 12 23:28:04 2015 UTC revision 3343 by schoenebeck, Mon Jul 31 11:35:30 2017 UTC
# Line 1  Line 1 
1  /*                                                         -*- c++ -*-  /*                                                         -*- c++ -*-
2   * Copyright (C) 2006 - 2015 Andreas Persson   * Copyright (C) 2006 - 2017 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 20  Line 20 
20  #ifndef GIGEDIT_MAINWINDOW_H  #ifndef GIGEDIT_MAINWINDOW_H
21  #define GIGEDIT_MAINWINDOW_H  #define GIGEDIT_MAINWINDOW_H
22    
23  #include <gig.h>  #ifdef LIBGIG_HEADER_FILE
24    # include LIBGIG_HEADER_FILE(gig.h)
25    # include LIBGIG_HEADER_FILE(Serialization.h)
26    #else
27    # include <gig.h>
28    # include <Serialization.h>
29    #endif
30    
31    #include <gtkmm/box.h>
32  #include <gtkmm/actiongroup.h>  #include <gtkmm/actiongroup.h>
33  #include <gtkmm/buttonbox.h>  #include <gtkmm/buttonbox.h>
34  #include <gtkmm/dialog.h>  #include <gtkmm/dialog.h>
# Line 32  Line 39 
39  #include <gtkmm/radiomenuitem.h>  #include <gtkmm/radiomenuitem.h>
40  #include <gtkmm/scrolledwindow.h>  #include <gtkmm/scrolledwindow.h>
41  #include <gtkmm/treestore.h>  #include <gtkmm/treestore.h>
42    #include <gtkmm/treemodelfilter.h>
43  #include <gtkmm/uimanager.h>  #include <gtkmm/uimanager.h>
44  #include <gtkmm/window.h>  #include <gtkmm/window.h>
45  #include <gtkmm/statusbar.h>  #include <gtkmm/statusbar.h>
46  #include <gtkmm/image.h>  #include <gtkmm/image.h>
47    #include <gtkmm/entry.h>
48    #include <gtk/gtknotebook.h>
49    #include <gtkmm/notebook.h>
50    
51  #include <sstream>  #include <sstream>
52    
# Line 46  Line 57 
57  #ifndef OLD_THREADS  #ifndef OLD_THREADS
58  #include <glibmm/threads.h>  #include <glibmm/threads.h>
59  #endif  #endif
60    #include "ManagedWindow.h"
61    
62  class MainWindow;  class MainWindow;
63    
64  class PropDialog : public Gtk::Window,  class PropDialog : public ManagedWindow,
65                     public PropEditor<DLS::Info> {                     public PropEditor<DLS::Info> {
66  public:  public:
67      PropDialog();      PropDialog();
68      void set_info(DLS::Info* info);      void set_info(DLS::Info* info);
69      void set_file(gig::File* file);      void set_file(gig::File* file);
70    
71        // implementation for abstract methods of interface class "ManagedWindow"
72        virtual Settings::Property<int>* windowSettingX() { return &Settings::singleton()->filePropsWindowX; }
73        virtual Settings::Property<int>* windowSettingY() { return &Settings::singleton()->filePropsWindowY; }
74        virtual Settings::Property<int>* windowSettingWidth() { return &Settings::singleton()->filePropsWindowW; }
75        virtual Settings::Property<int>* windowSettingHeight() { return &Settings::singleton()->filePropsWindowH; }
76    
77  protected:  protected:
78      ChoiceEntry<int> eFileFormat;      ChoiceEntry<int> eFileFormat;
79      StringEntry eName;      StringEntry eName;
# Line 83  protected: Line 102  protected:
102      void onFileFormatChanged();      void onFileFormatChanged();
103  };  };
104    
105  class InstrumentProps : public Gtk::Window,  class InstrumentProps : public ManagedWindow,
106                          public PropEditor<gig::Instrument> {                          public PropEditor<gig::Instrument> {
107  public:  public:
108      InstrumentProps();      InstrumentProps();
# Line 93  public: Line 112  public:
112      sigc::signal<void>& signal_name_changed() {      sigc::signal<void>& signal_name_changed() {
113          return sig_name_changed;          return sig_name_changed;
114      }      }
115    
116        // implementation for abstract methods of interface class "ManagedWindow"
117        virtual Settings::Property<int>* windowSettingX() { return &Settings::singleton()->instrPropsWindowX; }
118        virtual Settings::Property<int>* windowSettingY() { return &Settings::singleton()->instrPropsWindowY; }
119        virtual Settings::Property<int>* windowSettingWidth() { return &Settings::singleton()->instrPropsWindowW; }
120        virtual Settings::Property<int>* windowSettingHeight() { return &Settings::singleton()->instrPropsWindowH; }
121    
122  protected:  protected:
123      void set_Name(const gig::String& name);      void set_Name(const gig::String& name);
124      void set_IsDrum(bool value);      void set_IsDrum(bool value);
# Line 172  private: Line 198  private:
198      float progress;      float progress;
199  };  };
200    
201  class MainWindow : public Gtk::Window {  class MainWindow : public ManagedWindow {
202  public:  public:
203      MainWindow();      MainWindow();
204      virtual ~MainWindow();      virtual ~MainWindow();
# Line 198  public: Line 224  public:
224    
225      sigc::signal<void, gig::Instrument*>& signal_switch_sampler_instrument();      sigc::signal<void, gig::Instrument*>& signal_switch_sampler_instrument();
226    
227        sigc::signal<void, gig::Script*> signal_script_to_be_changed;
228        sigc::signal<void, gig::Script*> signal_script_changed;
229    
230        // implementation for abstract methods of interface class "ManagedWindow"
231        virtual Settings::Property<int>* windowSettingX() { return &Settings::singleton()->mainWindowX; }
232        virtual Settings::Property<int>* windowSettingY() { return &Settings::singleton()->mainWindowY; }
233        virtual Settings::Property<int>* windowSettingWidth() { return &Settings::singleton()->mainWindowW; }
234        virtual Settings::Property<int>* windowSettingHeight() { return &Settings::singleton()->mainWindowH; }
235    
236  protected:  protected:
237      Glib::RefPtr<Gtk::ActionGroup> actionGroup;      Glib::RefPtr<Gtk::ActionGroup> actionGroup;
238      Glib::RefPtr<Gtk::UIManager> uiManager;      Glib::RefPtr<Gtk::UIManager> uiManager;
# Line 213  protected: Line 248  protected:
248      InstrumentProps instrumentProps;      InstrumentProps instrumentProps;
249      MidiRules midiRules;      MidiRules midiRules;
250    
251        /**
252         * Ensures that the 2 signals MainWindow::dimreg_to_be_changed_signal and
253         * MainWindowv::dimreg_changed_signal are always triggered correctly as a
254         * pair. It behaves similar to a "mutex lock guard" design pattern.
255         */
256        class DimRegionChangeGuard : public SignalGuard<gig::DimensionRegion*> {
257        public:
258            DimRegionChangeGuard(MainWindow* w, gig::DimensionRegion* pDimReg) :
259            SignalGuard<gig::DimensionRegion*>(w->dimreg_to_be_changed_signal, w->dimreg_changed_signal, pDimReg)
260            {
261            }
262        };
263    
264      sigc::signal<void, gig::File*> file_structure_to_be_changed_signal;      sigc::signal<void, gig::File*> file_structure_to_be_changed_signal;
265      sigc::signal<void, gig::File*> file_structure_changed_signal;      sigc::signal<void, gig::File*> file_structure_changed_signal;
266      sigc::signal<void, std::list<gig::Sample*> > samples_to_be_removed_signal;      sigc::signal<void, std::list<gig::Sample*> > samples_to_be_removed_signal;
# Line 242  protected: Line 290  protected:
290      void on_saver_progress();      void on_saver_progress();
291      void on_saver_error();      void on_saver_error();
292      void on_saver_finished();      void on_saver_finished();
293        void updateMacroMenu();
294        void onMacroSelected(int iMacro);
295        void setupMacros();
296        void onMacrosSetupChanged(const std::vector<Serialization::Archive>& macros);
297        void applyMacro(Serialization::Archive& macro);
298        void onScriptSlotsModified(gig::Instrument* pInstrument);
299        void bringToFront();
300    
301      void dimreg_all_dimregs_toggled();      void dimreg_all_dimregs_toggled();
302      gig::Instrument* get_instrument();      gig::Instrument* get_instrument();
# Line 251  protected: Line 306  protected:
306      class ModelColumns : public Gtk::TreeModel::ColumnRecord {      class ModelColumns : public Gtk::TreeModel::ColumnRecord {
307      public:      public:
308          ModelColumns() {          ModelColumns() {
309              add(m_col_nr);
310            add(m_col_name);            add(m_col_name);
311            add(m_col_instr);            add(m_col_instr);
312              add(m_col_scripts);
313          }          }
314    
315            Gtk::TreeModelColumn<int> m_col_nr;
316          Gtk::TreeModelColumn<Glib::ustring> m_col_name;          Gtk::TreeModelColumn<Glib::ustring> m_col_name;
317          Gtk::TreeModelColumn<gig::Instrument*> m_col_instr;          Gtk::TreeModelColumn<gig::Instrument*> m_col_instr;
318            Gtk::TreeModelColumn<Glib::ustring> m_col_scripts;
319      } m_Columns;      } m_Columns;
320    
321      Gtk::VBox m_VBox;      Gtk::VBox m_VBox;
# Line 266  protected: Line 325  protected:
325    
326      Gtk::TreeView m_TreeView;      Gtk::TreeView m_TreeView;
327      Glib::RefPtr<Gtk::ListStore> m_refTreeModel;      Glib::RefPtr<Gtk::ListStore> m_refTreeModel;
328        Glib::RefPtr<Gtk::TreeModelFilter> m_refTreeModelFilter; //FIXME: I really would love to get rid of TreeModelFilter, because it causes behavior conflicts with get_model() all over the place (see the respective comments regarding get_model()), however I found no other way to filter a treeview effectively.
329    
330      Gtk::Menu* instrument_menu;      Gtk::Menu* instrument_menu;
331        Gtk::Menu* assign_scripts_menu;
332    
333      std::map<gig::Sample*,int> sample_ref_count;      std::map<gig::Sample*,int> sample_ref_count;
334    
# Line 333  protected: Line 394  protected:
394      Gtk::CheckButton dimreg_all_regions;      Gtk::CheckButton dimreg_all_regions;
395      Gtk::CheckButton dimreg_all_dimregs;      Gtk::CheckButton dimreg_all_dimregs;
396      Gtk::CheckButton dimreg_stereo;      Gtk::CheckButton dimreg_stereo;
397    
398        Gtk::HBox legend_hbox;
399        Gtk::Label labelLegend;
400        Gtk::Image imageNoSample;
401        Gtk::Label labelNoSample;
402        Gtk::Image imageMissingSample;
403        Gtk::Label labelMissingSample;
404        Gtk::Image imageLooped;
405        Gtk::Label labelLooped;
406        Gtk::Image imageSomeLoops;
407        Gtk::Label labelSomeLoops;
408      DimRegionEdit dimreg_edit;      DimRegionEdit dimreg_edit;
409    
410        Gtk::VBox m_left_vbox;
411      Gtk::Notebook m_TreeViewNotebook;      Gtk::Notebook m_TreeViewNotebook;
412        Gtk::HBox m_searchField;
413        Gtk::Label m_searchLabel;
414        Gtk::Entry m_searchText;
415    
416      struct SampleImportItem {      struct SampleImportItem {
417          gig::Sample*  gig_sample;  // pointer to the gig::Sample to          gig::Sample*  gig_sample;  // pointer to the gig::Sample to
# Line 344  protected: Line 420  protected:
420          Glib::ustring sample_path; // file name of the sample to be          Glib::ustring sample_path; // file name of the sample to be
421                                     // imported                                     // imported
422      };      };
423      std::list<SampleImportItem> m_SampleImportQueue;      std::map<gig::Sample*, SampleImportItem> m_SampleImportQueue;
424    
425    
426      void on_action_file_new();      void on_action_file_new();
# Line 358  protected: Line 434  protected:
434      void show_midi_rules();      void show_midi_rules();
435      void show_script_slots();      void show_script_slots();
436      void on_action_view_status_bar();      void on_action_view_status_bar();
437        void on_auto_restore_win_dim();
438        void on_save_with_temporary_file();
439        void on_action_refresh_all();
440      void on_action_warn_user_on_extensions();      void on_action_warn_user_on_extensions();
441      void on_action_sync_sampler_instrument_selection();      void on_action_sync_sampler_instrument_selection();
442        void on_action_move_root_note_with_region_moved();
443      void on_action_help_about();      void on_action_help_about();
444    
445        void on_notebook_tab_switched(GtkNotebookPage* page, guint page_num);
446    
447      // sample right-click popup actions      // sample right-click popup actions
448      void on_sample_treeview_button_release(GdkEventButton* button);      void on_sample_treeview_button_release(GdkEventButton* button);
449      void on_action_sample_properties();      void on_action_sample_properties();
450      void on_action_add_group();      void on_action_add_group();
451      void on_action_add_sample();      void on_action_add_sample();
452        void on_action_replace_sample();
453      void on_action_replace_all_samples_in_all_groups();      void on_action_replace_all_samples_in_all_groups();
454      void on_action_remove_sample();      void on_action_remove_sample();
455            void on_action_remove_unused_samples();
456    
457      // script right-click popup actions      // script right-click popup actions
458      void on_script_treeview_button_release(GdkEventButton* button);      void on_script_treeview_button_release(GdkEventButton* button);
459      void on_action_add_script_group();      void on_action_add_script_group();
# Line 385  protected: Line 469  protected:
469      void show_intruments_tab();      void show_intruments_tab();
470      void show_scripts_tab();      void show_scripts_tab();
471    
472        void select_prev_instrument();
473        void select_next_instrument();
474        void select_instrument_by_dir(int dir);
475    
476        void select_prev_region();
477        void select_next_region();
478    
479        void select_next_dim_rgn_zone();
480        void select_prev_dim_rgn_zone();
481        void select_add_next_dim_rgn_zone();
482        void select_add_prev_dim_rgn_zone();
483        void select_prev_dimension();
484        void select_next_dimension();
485    
486        Serialization::Archive m_serializationArchive; ///< Clipboard content.
487        std::vector<Serialization::Archive> m_macros; ///< User configured list of macros.
488    
489        void copy_selected_dimrgn();
490        void paste_copied_dimrgn();
491        void adjust_clipboard_content();
492        void updateClipboardCopyAvailable();
493        void updateClipboardPasteAvailable();
494        void on_clipboard_owner_change(GdkEventOwnerChange* event);
495        void on_clipboard_get(Gtk::SelectionData& selection_data, guint info);
496        void on_clipboard_clear();
497        void on_clipboard_received(const Gtk::SelectionData& selection_data);
498        void on_clipboard_received_targets(const std::vector<Glib::ustring>& targets);
499    
500      void add_instrument(gig::Instrument* instrument);      void add_instrument(gig::Instrument* instrument);
501      Gtk::RadioMenuItem* add_instrument_to_menu(const Glib::ustring& name,      Gtk::RadioMenuItem* add_instrument_to_menu(const Glib::ustring& name,
502                                                 int position = -1);                                                 int position = -1);
# Line 437  protected: Line 549  protected:
549      void instrument_name_changed(const Gtk::TreeModel::Path& path,      void instrument_name_changed(const Gtk::TreeModel::Path& path,
550                                   const Gtk::TreeModel::iterator& iter);                                   const Gtk::TreeModel::iterator& iter);
551      void instr_name_changed_by_instr_props(Gtk::TreeModel::iterator& it);      void instr_name_changed_by_instr_props(Gtk::TreeModel::iterator& it);
552        bool instrument_row_visible(const Gtk::TreeModel::const_iterator& iter);
553      sigc::connection instrument_name_connection;      sigc::connection instrument_name_connection;
554    
555      void on_action_combine_instruments();      void on_action_combine_instruments();
# Line 448  protected: Line 561  protected:
561      void on_sample_ref_count_incremented(gig::Sample* sample, int offset);      void on_sample_ref_count_incremented(gig::Sample* sample, int offset);
562      void on_samples_to_be_removed(std::list<gig::Sample*> samples);      void on_samples_to_be_removed(std::list<gig::Sample*> samples);
563    
564        void add_or_replace_sample(bool replace);
565    
566      void __import_queued_samples();      void __import_queued_samples();
567      void __clear();      void __clear();
568      void __refreshEntireGUI();      void __refreshEntireGUI();
569        void updateScriptListOfMenu();
570        void assignScript(gig::Script* pScript);
571    
572      bool close_confirmation_dialog();      bool close_confirmation_dialog();
573      bool leaving_shared_mode_dialog();      bool leaving_shared_mode_dialog();

Legend:
Removed from v.2701  
changed lines
  Added in v.3343

  ViewVC Help
Powered by ViewVC