/[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 3197 by schoenebeck, Sat May 20 17:15:36 2017 UTC revision 3409 by schoenebeck, Tue Jan 23 16:30:56 2018 UTC
# Line 28  Line 28 
28  # include <Serialization.h>  # include <Serialization.h>
29  #endif  #endif
30    
31    #include "compat.h"
32    
33  #include <gtkmm/box.h>  #include <gtkmm/box.h>
 #include <gtkmm/actiongroup.h>  
34  #include <gtkmm/buttonbox.h>  #include <gtkmm/buttonbox.h>
35  #include <gtkmm/dialog.h>  #include <gtkmm/dialog.h>
36  #include <gtkmm/liststore.h>  #include <gtkmm/liststore.h>
# Line 39  Line 40 
40  #include <gtkmm/radiomenuitem.h>  #include <gtkmm/radiomenuitem.h>
41  #include <gtkmm/scrolledwindow.h>  #include <gtkmm/scrolledwindow.h>
42  #include <gtkmm/treestore.h>  #include <gtkmm/treestore.h>
43  #include <gtkmm/uimanager.h>  #include <gtkmm/treemodelfilter.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 <gtkmm/notebook.h>
49    
50    #if USE_GTKMM_BUILDER
51    # include <gtkmm/builder.h>
52    #else
53    # include <gtkmm/uimanager.h> // deprecated in gtkmm >= 3.21.4
54    #endif
55    
56  #include <sstream>  #include <sstream>
57    
# Line 88  protected: Line 97  protected:
97      StringEntry eSourceForm;      StringEntry eSourceForm;
98      StringEntry eCommissioned;      StringEntry eCommissioned;
99      StringEntry eSubject;      StringEntry eSubject;
100      Gtk::VBox vbox;      VBox vbox;
101      Gtk::HButtonBox buttonBox;      HButtonBox buttonBox;
102      Gtk::Button quitButton;      Gtk::Button quitButton;
103      Table table;      Table table;
104    
# Line 122  protected: Line 131  protected:
131      void set_MIDIProgram(uint32_t value);      void set_MIDIProgram(uint32_t value);
132    
133      sigc::signal<void> sig_name_changed;      sigc::signal<void> sig_name_changed;
134      Gtk::VBox vbox;      VBox vbox;
135      Gtk::HButtonBox buttonBox;      HButtonBox buttonBox;
136      Gtk::Button quitButton;      Gtk::Button quitButton;
137      Table table;      Table table;
138      StringEntry eName;      StringEntry eName;
# Line 230  public: Line 239  public:
239      virtual Settings::Property<int>* windowSettingHeight() { return &Settings::singleton()->mainWindowH; }      virtual Settings::Property<int>* windowSettingHeight() { return &Settings::singleton()->mainWindowH; }
240    
241  protected:  protected:
242    #if USE_GTKMM_BUILDER
243        Glib::RefPtr<Gio::SimpleActionGroup> m_actionGroup;
244        Glib::RefPtr<Gtk::Builder> m_uiManager;
245    #else
246      Glib::RefPtr<Gtk::ActionGroup> actionGroup;      Glib::RefPtr<Gtk::ActionGroup> actionGroup;
247      Glib::RefPtr<Gtk::UIManager> uiManager;      Glib::RefPtr<Gtk::UIManager> uiManager;
248    #endif
249    
250    #if USE_GLIB_ACTION
251        Glib::RefPtr<Gio::SimpleAction> m_actionMIDIRules;
252    
253        Glib::RefPtr<Gio::SimpleAction> m_actionCopyDimRgn;
254        Glib::RefPtr<Gio::SimpleAction> m_actionPasteDimRgn;
255        Glib::RefPtr<Gio::SimpleAction> m_actionAdjustClipboard;
256    
257        Glib::RefPtr<Gio::SimpleAction> m_actionSampleProperties;
258        Glib::RefPtr<Gio::SimpleAction> m_actionAddSample;
259        Glib::RefPtr<Gio::SimpleAction> m_actionRemoveSample;
260        Glib::RefPtr<Gio::SimpleAction> m_actionViewSampleRefs;
261        Glib::RefPtr<Gio::SimpleAction> m_actionReplaceSample;
262        Glib::RefPtr<Gio::SimpleAction> m_actionAddSampleGroup;
263    
264        Glib::RefPtr<Gio::SimpleAction> m_actionAddScriptGroup;
265        Glib::RefPtr<Gio::SimpleAction> m_actionAddScript;
266        Glib::RefPtr<Gio::SimpleAction> m_actionEditScript;
267        Glib::RefPtr<Gio::SimpleAction> m_actionRemoveScript;
268    
269        Glib::RefPtr<Gio::SimpleAction> m_actionToggleCopySampleUnity;
270        Glib::RefPtr<Gio::SimpleAction> m_actionToggleCopySampleTune;
271        Glib::RefPtr<Gio::SimpleAction> m_actionToggleCopySampleLoop;
272        Glib::RefPtr<Gio::SimpleAction> m_actionToggleStatusBar;
273        Glib::RefPtr<Gio::SimpleAction> m_actionToggleRestoreWinDim;
274        Glib::RefPtr<Gio::SimpleAction> m_actionToggleSaveWithTempFile;
275        Glib::RefPtr<Gio::SimpleAction> m_actionToggleWarnOnExtensions;
276        Glib::RefPtr<Gio::SimpleAction> m_actionToggleShowTooltips;
277        Glib::RefPtr<Gio::SimpleAction> m_actionToggleSyncSamplerSelection;
278        Glib::RefPtr<Gio::SimpleAction> m_actionToggleMoveRootNoteWithRegion;
279    #endif
280    
281      Gtk::Statusbar m_StatusBar;      Gtk::Statusbar m_StatusBar;
282      Gtk::Label     m_AttachedStateLabel;      Gtk::Label     m_AttachedStateLabel;
# Line 273  protected: Line 318  protected:
318    
319      sigc::signal<void, gig::Instrument*> switch_sampler_instrument_signal;      sigc::signal<void, gig::Instrument*> switch_sampler_instrument_signal;
320    
321    #if !USE_GTKMM_BUILDER
322      void on_instrument_selection_change(Gtk::RadioMenuItem* item);      void on_instrument_selection_change(Gtk::RadioMenuItem* item);
323    #endif
324      void on_sel_change();      void on_sel_change();
325      void region_changed();      void region_changed();
326      void dimreg_changed();      void dimreg_changed();
# Line 292  protected: Line 339  protected:
339      void onMacrosSetupChanged(const std::vector<Serialization::Archive>& macros);      void onMacrosSetupChanged(const std::vector<Serialization::Archive>& macros);
340      void applyMacro(Serialization::Archive& macro);      void applyMacro(Serialization::Archive& macro);
341      void onScriptSlotsModified(gig::Instrument* pInstrument);      void onScriptSlotsModified(gig::Instrument* pInstrument);
342        void bringToFront();
343    
344      void dimreg_all_dimregs_toggled();      void dimreg_all_dimregs_toggled();
345      gig::Instrument* get_instrument();      gig::Instrument* get_instrument();
# Line 313  protected: Line 361  protected:
361          Gtk::TreeModelColumn<Glib::ustring> m_col_scripts;          Gtk::TreeModelColumn<Glib::ustring> m_col_scripts;
362      } m_Columns;      } m_Columns;
363    
364      Gtk::VBox m_VBox;      VBox m_VBox;
365      Gtk::HPaned m_HPaned;      Gtk::HPaned m_HPaned;
366    
367      Gtk::ScrolledWindow m_ScrolledWindow;      Gtk::ScrolledWindow m_ScrolledWindow;
368    
369      Gtk::TreeView m_TreeView;      Gtk::TreeView m_TreeView;
370      Glib::RefPtr<Gtk::ListStore> m_refTreeModel;      Glib::RefPtr<Gtk::ListStore> m_refTreeModel;
371        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.
372    
373      Gtk::Menu* instrument_menu;  #if USE_GTKMM_BUILDER
374        Gtk::Menu* menuMacro;
375    #else
376        Gtk::Menu* instrument_menu; // kept for GTKMM 2 version only, will be completely removed in future
377    #endif
378        Gtk::Menu* assign_scripts_menu;
379    
380      std::map<gig::Sample*,int> sample_ref_count;      std::map<gig::Sample*,int> sample_ref_count;
381    
# Line 381  protected: Line 435  protected:
435      Gtk::TreeView m_TreeViewScripts;      Gtk::TreeView m_TreeViewScripts;
436      Glib::RefPtr<ScriptsTreeStore> m_refScriptsTreeModel;      Glib::RefPtr<ScriptsTreeStore> m_refScriptsTreeModel;
437    
438      Gtk::VBox dimreg_vbox;      VBox dimreg_vbox;
439      Gtk::HBox dimreg_hbox;      HBox dimreg_hbox;
440      Gtk::Label dimreg_label;      Gtk::Label dimreg_label;
441      Gtk::CheckButton dimreg_all_regions;      Gtk::CheckButton dimreg_all_regions;
442      Gtk::CheckButton dimreg_all_dimregs;      Gtk::CheckButton dimreg_all_dimregs;
443      Gtk::CheckButton dimreg_stereo;      Gtk::CheckButton dimreg_stereo;
444    
445      Gtk::HBox legend_hbox;      HBox legend_hbox;
446      Gtk::Label labelLegend;      Gtk::Label labelLegend;
447      Gtk::Image imageNoSample;      Gtk::Image imageNoSample;
448      Gtk::Label labelNoSample;      Gtk::Label labelNoSample;
# Line 400  protected: Line 454  protected:
454      Gtk::Label labelSomeLoops;      Gtk::Label labelSomeLoops;
455      DimRegionEdit dimreg_edit;      DimRegionEdit dimreg_edit;
456    
457        VBox m_left_vbox;
458      Gtk::Notebook m_TreeViewNotebook;      Gtk::Notebook m_TreeViewNotebook;
459        HBox m_searchField;
460        Gtk::Label m_searchLabel;
461        Gtk::Entry m_searchText;
462    
463      struct SampleImportItem {      struct SampleImportItem {
464          gig::Sample*  gig_sample;  // pointer to the gig::Sample to          gig::Sample*  gig_sample;  // pointer to the gig::Sample to
# Line 427  protected: Line 485  protected:
485      void on_save_with_temporary_file();      void on_save_with_temporary_file();
486      void on_action_refresh_all();      void on_action_refresh_all();
487      void on_action_warn_user_on_extensions();      void on_action_warn_user_on_extensions();
488        void on_action_show_tooltips();
489        void on_show_tooltips_changed();
490      void on_action_sync_sampler_instrument_selection();      void on_action_sync_sampler_instrument_selection();
491      void on_action_move_root_note_with_region_moved();      void on_action_move_root_note_with_region_moved();
492      void on_action_help_about();      void on_action_help_about();
493    
494        void on_notebook_tab_switched(void* page, guint page_num);
495    
496      // sample right-click popup actions      // sample right-click popup actions
497    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && (GTKMM_MINOR_VERSION > 91 || (GTKMM_MINOR_VERSION == 91 && GTKMM_MICRO_VERSION >= 2))) // GTKMM >= 3.91.2
498        bool on_sample_treeview_button_release(Gdk::EventButton& button);
499    #else
500      void on_sample_treeview_button_release(GdkEventButton* button);      void on_sample_treeview_button_release(GdkEventButton* button);
501    #endif
502      void on_action_sample_properties();      void on_action_sample_properties();
503      void on_action_add_group();      void on_action_add_group();
504      void on_action_add_sample();      void on_action_add_sample();
# Line 442  protected: Line 508  protected:
508      void on_action_remove_unused_samples();      void on_action_remove_unused_samples();
509    
510      // script right-click popup actions      // script right-click popup actions
511    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && (GTKMM_MINOR_VERSION > 91 || (GTKMM_MINOR_VERSION == 91 && GTKMM_MICRO_VERSION >= 2))) // GTKMM >= 3.91.2
512        bool on_script_treeview_button_release(Gdk::EventButton& button);
513    #else
514      void on_script_treeview_button_release(GdkEventButton* button);      void on_script_treeview_button_release(GdkEventButton* button);
515    #endif
516      void on_action_add_script_group();      void on_action_add_script_group();
517      void on_action_add_script();      void on_action_add_script();
518      void on_action_edit_script();      void on_action_edit_script();
# Line 456  protected: Line 526  protected:
526      void show_intruments_tab();      void show_intruments_tab();
527      void show_scripts_tab();      void show_scripts_tab();
528    
529        void select_prev_instrument();
530        void select_next_instrument();
531        void select_instrument_by_dir(int dir);
532    
533      void select_prev_region();      void select_prev_region();
534      void select_next_region();      void select_next_region();
535    
# Line 474  protected: Line 548  protected:
548      void adjust_clipboard_content();      void adjust_clipboard_content();
549      void updateClipboardCopyAvailable();      void updateClipboardCopyAvailable();
550      void updateClipboardPasteAvailable();      void updateClipboardPasteAvailable();
551    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && (GTKMM_MINOR_VERSION > 91 || (GTKMM_MINOR_VERSION == 91 && GTKMM_MICRO_VERSION >= 2))) // GTKMM >= 3.91.2
552        void on_clipboard_owner_change(Gdk::EventOwnerChange& event);
553    #else
554      void on_clipboard_owner_change(GdkEventOwnerChange* event);      void on_clipboard_owner_change(GdkEventOwnerChange* event);
555    #endif
556      void on_clipboard_get(Gtk::SelectionData& selection_data, guint info);      void on_clipboard_get(Gtk::SelectionData& selection_data, guint info);
557      void on_clipboard_clear();      void on_clipboard_clear();
558      void on_clipboard_received(const Gtk::SelectionData& selection_data);      void on_clipboard_received(const Gtk::SelectionData& selection_data);
559      void on_clipboard_received_targets(const std::vector<Glib::ustring>& targets);      void on_clipboard_received_targets(const std::vector<Glib::ustring>& targets);
560    
561      void add_instrument(gig::Instrument* instrument);      void add_instrument(gig::Instrument* instrument);
562    #if !USE_GTKMM_BUILDER
563      Gtk::RadioMenuItem* add_instrument_to_menu(const Glib::ustring& name,      Gtk::RadioMenuItem* add_instrument_to_menu(const Glib::ustring& name,
564                                                 int position = -1);                                                 int position = -1);
565      void remove_instrument_from_menu(int index);      void remove_instrument_from_menu(int index);
566    #endif
567    
568      ProgressDialog* progress_dialog;      ProgressDialog* progress_dialog;
569      Loader* loader;      Loader* loader;
# Line 505  protected: Line 585  protected:
585      bool file_save_as();      bool file_save_as();
586      bool check_if_savable();      bool check_if_savable();
587    
588    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && (GTKMM_MINOR_VERSION > 91 || (GTKMM_MINOR_VERSION == 91 && GTKMM_MICRO_VERSION >= 2))) // GTKMM >= 3.91.2
589        bool on_button_release(Gdk::EventButton& button);
590    #else
591      void on_button_release(GdkEventButton* button);      void on_button_release(GdkEventButton* button);
592    #endif
593      void on_instruments_treeview_drag_begin(const Glib::RefPtr<Gdk::DragContext>& context);      void on_instruments_treeview_drag_begin(const Glib::RefPtr<Gdk::DragContext>& context);
594      void on_instruments_treeview_drag_data_get(const Glib::RefPtr<Gdk::DragContext>&,      void on_instruments_treeview_drag_data_get(const Glib::RefPtr<Gdk::DragContext>&,
595                                                 Gtk::SelectionData& selection_data, guint, guint);                                                 Gtk::SelectionData& selection_data, guint, guint);
# Line 532  protected: Line 616  protected:
616      void instrument_name_changed(const Gtk::TreeModel::Path& path,      void instrument_name_changed(const Gtk::TreeModel::Path& path,
617                                   const Gtk::TreeModel::iterator& iter);                                   const Gtk::TreeModel::iterator& iter);
618      void instr_name_changed_by_instr_props(Gtk::TreeModel::iterator& it);      void instr_name_changed_by_instr_props(Gtk::TreeModel::iterator& it);
619        bool instrument_row_visible(const Gtk::TreeModel::const_iterator& iter);
620      sigc::connection instrument_name_connection;      sigc::connection instrument_name_connection;
621    
622      void on_action_combine_instruments();      void on_action_combine_instruments();
# Line 548  protected: Line 633  protected:
633      void __import_queued_samples();      void __import_queued_samples();
634      void __clear();      void __clear();
635      void __refreshEntireGUI();      void __refreshEntireGUI();
636        void updateScriptListOfMenu();
637        void assignScript(gig::Script* pScript);
638    
639      bool close_confirmation_dialog();      bool close_confirmation_dialog();
640      bool leaving_shared_mode_dialog();      bool leaving_shared_mode_dialog();
641    
642      Gtk::Menu* popup_menu;      Gtk::Menu* popup_menu;
643    #if USE_GTKMM_BUILDER
644        Gtk::Menu* sample_popup;
645        Gtk::Menu* script_popup;
646    #endif
647    
648      bool on_delete_event(GdkEventAny* event);      bool on_delete_event(GdkEventAny* event);
649    

Legend:
Removed from v.3197  
changed lines
  Added in v.3409

  ViewVC Help
Powered by ViewVC