/[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 3343 by schoenebeck, Mon Jul 31 11:35:30 2017 UTC revision 3472 by persson, Sat Feb 16 19:56:56 2019 UTC
# Line 1  Line 1 
1  /*                                                         -*- c++ -*-  /*                                                         -*- c++ -*-
2   * Copyright (C) 2006 - 2017 Andreas Persson   * Copyright (C) 2006 - 2019 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 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 40  Line 41 
41  #include <gtkmm/scrolledwindow.h>  #include <gtkmm/scrolledwindow.h>
42  #include <gtkmm/treestore.h>  #include <gtkmm/treestore.h>
43  #include <gtkmm/treemodelfilter.h>  #include <gtkmm/treemodelfilter.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>  #include <gtkmm/entry.h>
 #include <gtk/gtknotebook.h>  
48  #include <gtkmm/notebook.h>  #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    
58  #include "regionchooser.h"  #include "regionchooser.h"
59  #include "dimregionchooser.h"  #include "dimregionchooser.h"
60  #include "dimregionedit.h"  #include "dimregionedit.h"
61  #include "midirules.h"  #include "midirules.h"
62    #ifdef GLIB_THREADS
63  #ifndef OLD_THREADS  #ifndef OLD_THREADS
64  #include <glibmm/threads.h>  #include <glibmm/threads.h>
65  #endif  #endif
66    #else
67    #include <thread>
68    #include <mutex>
69    #endif
70  #include "ManagedWindow.h"  #include "ManagedWindow.h"
71    
72  class MainWindow;  class MainWindow;
# Line 65  class PropDialog : public ManagedWindow, Line 75  class PropDialog : public ManagedWindow,
75                     public PropEditor<DLS::Info> {                     public PropEditor<DLS::Info> {
76  public:  public:
77      PropDialog();      PropDialog();
     void set_info(DLS::Info* info);  
78      void set_file(gig::File* file);      void set_file(gig::File* file);
79    
80      // implementation for abstract methods of interface class "ManagedWindow"      // implementation for abstract methods of interface class "ManagedWindow"
# Line 92  protected: Line 101  protected:
101      StringEntry eSourceForm;      StringEntry eSourceForm;
102      StringEntry eCommissioned;      StringEntry eCommissioned;
103      StringEntry eSubject;      StringEntry eSubject;
104      Gtk::VBox vbox;      VBox vbox;
105      Gtk::HButtonBox buttonBox;      HButtonBox buttonBox;
106      Gtk::Button quitButton;      Gtk::Button quitButton;
107      Table table;      Table table;
108    
109      gig::File* m_file;      gig::File* m_file;
110    
111      void onFileFormatChanged();      void set_FileFormat(int value);
112  };  };
113    
114  class InstrumentProps : public ManagedWindow,  class InstrumentProps : public ManagedWindow,
# Line 126  protected: Line 135  protected:
135      void set_MIDIProgram(uint32_t value);      void set_MIDIProgram(uint32_t value);
136    
137      sigc::signal<void> sig_name_changed;      sigc::signal<void> sig_name_changed;
138      Gtk::VBox vbox;      VBox vbox;
139      Gtk::HButtonBox buttonBox;      HButtonBox buttonBox;
140      Gtk::Button quitButton;      Gtk::Button quitButton;
141      Table table;      Table table;
142      StringEntry eName;      StringEntry eName;
# Line 152  protected: Line 161  protected:
161      Gtk::ProgressBar progressBar;      Gtk::ProgressBar progressBar;
162  };  };
163    
164  class Loader : public sigc::trackable {  class LoaderSaverBase {
165  public:  public:
     Loader(const char* filename);  
166      void launch();      void launch();
167      Glib::Dispatcher& signal_progress();      Glib::Dispatcher& signal_progress();
168      Glib::Dispatcher& signal_finished(); ///< Finished successfully, without error.      Glib::Dispatcher& signal_finished(); ///< Finished successfully, without error.
169      Glib::Dispatcher& signal_error();      Glib::Dispatcher& signal_error();
170      void progress_callback(float fraction);      void progress_callback(float fraction);
171      float get_progress();      float get_progress();
172        void join();
173      const Glib::ustring filename;      const Glib::ustring filename;
174      Glib::ustring error_message;      Glib::ustring error_message;
175      gig::File* gig;      gig::File* gig;
176    
177    protected:
178        LoaderSaverBase(const Glib::ustring filename, gig::File* gig);
179    
180  private:  private:
181    #ifdef GLIB_THREADS
182      Glib::Threads::Thread* thread;      Glib::Threads::Thread* thread;
183        Glib::Threads::Mutex progressMutex;
184    #else
185        std::thread thread;
186        std::mutex progressMutex;
187    #endif
188      void thread_function();      void thread_function();
189        virtual void thread_function_sub(gig::progress_t& progress) = 0;
190      Glib::Dispatcher finished_dispatcher;      Glib::Dispatcher finished_dispatcher;
191      Glib::Dispatcher progress_dispatcher;      Glib::Dispatcher progress_dispatcher;
192      Glib::Dispatcher error_dispatcher;      Glib::Dispatcher error_dispatcher;
     Glib::Threads::Mutex progressMutex;  
193      float progress;      float progress;
194  };  };
195    
196  class Saver : public sigc::trackable {  class Loader : public LoaderSaverBase {
197    public:
198        Loader(const char* filename);
199    
200    private:
201        void thread_function_sub(gig::progress_t& progress);
202    };
203    
204    class Saver : public LoaderSaverBase {
205  public:  public:
206      Saver(gig::File* file, Glib::ustring filename = ""); ///< one argument means "save", two arguments means "save as"      Saver(gig::File* file, Glib::ustring filename = ""); ///< one argument means "save", two arguments means "save as"
     void launch();  
     Glib::Dispatcher& signal_progress();  
     Glib::Dispatcher& signal_finished(); ///< Finished successfully, without error.  
     Glib::Dispatcher& signal_error();  
     void progress_callback(float fraction);  
     float get_progress();  
     gig::File* gig;  
     const Glib::ustring filename;  
     Glib::ustring error_message;  
207    
208  private:  private:
209      Glib::Threads::Thread* thread;      void thread_function_sub(gig::progress_t& progress);
     void thread_function();  
     Glib::Dispatcher finished_dispatcher;  
     Glib::Dispatcher progress_dispatcher;  
     Glib::Dispatcher error_dispatcher;  
     Glib::Threads::Mutex progressMutex;  
     float progress;  
210  };  };
211    
212  class MainWindow : public ManagedWindow {  class MainWindow : public ManagedWindow {
# Line 234  public: Line 245  public:
245      virtual Settings::Property<int>* windowSettingHeight() { return &Settings::singleton()->mainWindowH; }      virtual Settings::Property<int>* windowSettingHeight() { return &Settings::singleton()->mainWindowH; }
246    
247  protected:  protected:
248    #if USE_GTKMM_BUILDER
249        Glib::RefPtr<Gio::SimpleActionGroup> m_actionGroup;
250        Glib::RefPtr<Gtk::Builder> m_uiManager;
251    #else
252      Glib::RefPtr<Gtk::ActionGroup> actionGroup;      Glib::RefPtr<Gtk::ActionGroup> actionGroup;
253      Glib::RefPtr<Gtk::UIManager> uiManager;      Glib::RefPtr<Gtk::UIManager> uiManager;
254    #endif
255    
256    #if USE_GLIB_ACTION
257        Glib::RefPtr<Gio::SimpleAction> m_actionMIDIRules;
258    
259        Glib::RefPtr<Gio::SimpleAction> m_actionCopyDimRgn;
260        Glib::RefPtr<Gio::SimpleAction> m_actionPasteDimRgn;
261        Glib::RefPtr<Gio::SimpleAction> m_actionAdjustClipboard;
262    
263        Glib::RefPtr<Gio::SimpleAction> m_actionSampleProperties;
264        Glib::RefPtr<Gio::SimpleAction> m_actionAddSample;
265        Glib::RefPtr<Gio::SimpleAction> m_actionRemoveSample;
266        Glib::RefPtr<Gio::SimpleAction> m_actionViewSampleRefs;
267        Glib::RefPtr<Gio::SimpleAction> m_actionReplaceSample;
268        Glib::RefPtr<Gio::SimpleAction> m_actionAddSampleGroup;
269    
270        Glib::RefPtr<Gio::SimpleAction> m_actionAddScriptGroup;
271        Glib::RefPtr<Gio::SimpleAction> m_actionAddScript;
272        Glib::RefPtr<Gio::SimpleAction> m_actionEditScript;
273        Glib::RefPtr<Gio::SimpleAction> m_actionRemoveScript;
274    
275        Glib::RefPtr<Gio::SimpleAction> m_actionToggleCopySampleUnity;
276        Glib::RefPtr<Gio::SimpleAction> m_actionToggleCopySampleTune;
277        Glib::RefPtr<Gio::SimpleAction> m_actionToggleCopySampleLoop;
278        Glib::RefPtr<Gio::SimpleAction> m_actionToggleStatusBar;
279        Glib::RefPtr<Gio::SimpleAction> m_actionToggleRestoreWinDim;
280        Glib::RefPtr<Gio::SimpleAction> m_actionToggleSaveWithTempFile;
281        Glib::RefPtr<Gio::SimpleAction> m_actionToggleWarnOnExtensions;
282        Glib::RefPtr<Gio::SimpleAction> m_actionToggleShowTooltips;
283        Glib::RefPtr<Gio::SimpleAction> m_actionToggleSyncSamplerSelection;
284        Glib::RefPtr<Gio::SimpleAction> m_actionToggleMoveRootNoteWithRegion;
285    #endif
286    
287      Gtk::Statusbar m_StatusBar;      Gtk::Statusbar m_StatusBar;
288      Gtk::Label     m_AttachedStateLabel;      Gtk::Label     m_AttachedStateLabel;
# Line 277  protected: Line 324  protected:
324    
325      sigc::signal<void, gig::Instrument*> switch_sampler_instrument_signal;      sigc::signal<void, gig::Instrument*> switch_sampler_instrument_signal;
326    
327    #if !USE_GTKMM_BUILDER
328      void on_instrument_selection_change(Gtk::RadioMenuItem* item);      void on_instrument_selection_change(Gtk::RadioMenuItem* item);
329    #endif
330      void on_sel_change();      void on_sel_change();
331      void region_changed();      void region_changed();
332      void dimreg_changed();      void dimreg_changed();
# Line 310  protected: Line 359  protected:
359            add(m_col_name);            add(m_col_name);
360            add(m_col_instr);            add(m_col_instr);
361            add(m_col_scripts);            add(m_col_scripts);
362              add(m_col_tooltip);
363          }          }
364    
365          Gtk::TreeModelColumn<int> m_col_nr;          Gtk::TreeModelColumn<int> m_col_nr;
366          Gtk::TreeModelColumn<Glib::ustring> m_col_name;          Gtk::TreeModelColumn<Glib::ustring> m_col_name;
367          Gtk::TreeModelColumn<gig::Instrument*> m_col_instr;          Gtk::TreeModelColumn<gig::Instrument*> m_col_instr;
368          Gtk::TreeModelColumn<Glib::ustring> m_col_scripts;          Gtk::TreeModelColumn<Glib::ustring> m_col_scripts;
369            Gtk::TreeModelColumn<Glib::ustring> m_col_tooltip;
370      } m_Columns;      } m_Columns;
371    
372      Gtk::VBox m_VBox;      VBox m_VBox;
373      Gtk::HPaned m_HPaned;      Gtk::HPaned m_HPaned;
374    
375      Gtk::ScrolledWindow m_ScrolledWindow;      Gtk::ScrolledWindow m_ScrolledWindow;
# Line 327  protected: Line 378  protected:
378      Glib::RefPtr<Gtk::ListStore> m_refTreeModel;      Glib::RefPtr<Gtk::ListStore> m_refTreeModel;
379      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.      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.
380    
381      Gtk::Menu* instrument_menu;  #if USE_GTKMM_BUILDER
382        Gtk::Menu* menuMacro;
383    #else
384        Gtk::Menu* instrument_menu; // kept for GTKMM 2 version only, will be completely removed in future
385    #endif
386      Gtk::Menu* assign_scripts_menu;      Gtk::Menu* assign_scripts_menu;
387    
388      std::map<gig::Sample*,int> sample_ref_count;      std::map<gig::Sample*,int> sample_ref_count;
# Line 388  protected: Line 443  protected:
443      Gtk::TreeView m_TreeViewScripts;      Gtk::TreeView m_TreeViewScripts;
444      Glib::RefPtr<ScriptsTreeStore> m_refScriptsTreeModel;      Glib::RefPtr<ScriptsTreeStore> m_refScriptsTreeModel;
445    
446      Gtk::VBox dimreg_vbox;      VBox dimreg_vbox;
447      Gtk::HBox dimreg_hbox;      HBox dimreg_hbox;
448      Gtk::Label dimreg_label;      Gtk::Label dimreg_label;
449      Gtk::CheckButton dimreg_all_regions;      Gtk::CheckButton dimreg_all_regions;
450      Gtk::CheckButton dimreg_all_dimregs;      Gtk::CheckButton dimreg_all_dimregs;
451      Gtk::CheckButton dimreg_stereo;      Gtk::CheckButton dimreg_stereo;
452    
453      Gtk::HBox legend_hbox;      HBox legend_hbox;
454      Gtk::Label labelLegend;      Gtk::Label labelLegend;
455      Gtk::Image imageNoSample;      Gtk::Image imageNoSample;
456      Gtk::Label labelNoSample;      Gtk::Label labelNoSample;
# Line 407  protected: Line 462  protected:
462      Gtk::Label labelSomeLoops;      Gtk::Label labelSomeLoops;
463      DimRegionEdit dimreg_edit;      DimRegionEdit dimreg_edit;
464    
465      Gtk::VBox m_left_vbox;      VBox m_left_vbox;
466      Gtk::Notebook m_TreeViewNotebook;      Gtk::Notebook m_TreeViewNotebook;
467      Gtk::HBox m_searchField;      HBox m_searchField;
468      Gtk::Label m_searchLabel;      Gtk::Label m_searchLabel;
469      Gtk::Entry m_searchText;      Gtk::Entry m_searchText;
470    
# Line 438  protected: Line 493  protected:
493      void on_save_with_temporary_file();      void on_save_with_temporary_file();
494      void on_action_refresh_all();      void on_action_refresh_all();
495      void on_action_warn_user_on_extensions();      void on_action_warn_user_on_extensions();
496        void on_action_show_tooltips();
497        void on_show_tooltips_changed();
498      void on_action_sync_sampler_instrument_selection();      void on_action_sync_sampler_instrument_selection();
499      void on_action_move_root_note_with_region_moved();      void on_action_move_root_note_with_region_moved();
500      void on_action_help_about();      void on_action_help_about();
501    
502      void on_notebook_tab_switched(GtkNotebookPage* page, guint page_num);      void on_notebook_tab_switched(void* page, guint page_num);
503    
504      // sample right-click popup actions      // sample right-click popup actions
505    #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
506        bool on_sample_treeview_button_release(Gdk::EventButton& button);
507    #else
508      void on_sample_treeview_button_release(GdkEventButton* button);      void on_sample_treeview_button_release(GdkEventButton* button);
509    #endif
510      void on_action_sample_properties();      void on_action_sample_properties();
511      void on_action_add_group();      void on_action_add_group();
512      void on_action_add_sample();      void on_action_add_sample();
# Line 455  protected: Line 516  protected:
516      void on_action_remove_unused_samples();      void on_action_remove_unused_samples();
517    
518      // script right-click popup actions      // script right-click popup actions
519    #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
520        bool on_script_treeview_button_release(Gdk::EventButton& button);
521    #else
522      void on_script_treeview_button_release(GdkEventButton* button);      void on_script_treeview_button_release(GdkEventButton* button);
523    #endif
524      void on_action_add_script_group();      void on_action_add_script_group();
525      void on_action_add_script();      void on_action_add_script();
526      void on_action_edit_script();      void on_action_edit_script();
# Line 491  protected: Line 556  protected:
556      void adjust_clipboard_content();      void adjust_clipboard_content();
557      void updateClipboardCopyAvailable();      void updateClipboardCopyAvailable();
558      void updateClipboardPasteAvailable();      void updateClipboardPasteAvailable();
559    #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
560        void on_clipboard_owner_change(Gdk::EventOwnerChange& event);
561    #else
562      void on_clipboard_owner_change(GdkEventOwnerChange* event);      void on_clipboard_owner_change(GdkEventOwnerChange* event);
563    #endif
564      void on_clipboard_get(Gtk::SelectionData& selection_data, guint info);      void on_clipboard_get(Gtk::SelectionData& selection_data, guint info);
565      void on_clipboard_clear();      void on_clipboard_clear();
566      void on_clipboard_received(const Gtk::SelectionData& selection_data);      void on_clipboard_received(const Gtk::SelectionData& selection_data);
567      void on_clipboard_received_targets(const std::vector<Glib::ustring>& targets);      void on_clipboard_received_targets(const std::vector<Glib::ustring>& targets);
568    
569      void add_instrument(gig::Instrument* instrument);      void add_instrument(gig::Instrument* instrument);
570    #if !USE_GTKMM_BUILDER
571      Gtk::RadioMenuItem* add_instrument_to_menu(const Glib::ustring& name,      Gtk::RadioMenuItem* add_instrument_to_menu(const Glib::ustring& name,
572                                                 int position = -1);                                                 int position = -1);
573      void remove_instrument_from_menu(int index);      void remove_instrument_from_menu(int index);
574    #endif
575        bool onQueryTreeViewTooltip(int x, int y, bool keyboardTip, const Glib::RefPtr<Gtk::Tooltip>& tooltip);
576    
577      ProgressDialog* progress_dialog;      ProgressDialog* progress_dialog;
578      Loader* loader;      Loader* loader;
# Line 522  protected: Line 594  protected:
594      bool file_save_as();      bool file_save_as();
595      bool check_if_savable();      bool check_if_savable();
596    
597    #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
598        bool on_button_release(Gdk::EventButton& button);
599    #else
600      void on_button_release(GdkEventButton* button);      void on_button_release(GdkEventButton* button);
601    #endif
602      void on_instruments_treeview_drag_begin(const Glib::RefPtr<Gdk::DragContext>& context);      void on_instruments_treeview_drag_begin(const Glib::RefPtr<Gdk::DragContext>& context);
603      void on_instruments_treeview_drag_data_get(const Glib::RefPtr<Gdk::DragContext>&,      void on_instruments_treeview_drag_data_get(const Glib::RefPtr<Gdk::DragContext>&,
604                                                 Gtk::SelectionData& selection_data, guint, guint);                                                 Gtk::SelectionData& selection_data, guint, guint);
# Line 568  protected: Line 644  protected:
644      void __refreshEntireGUI();      void __refreshEntireGUI();
645      void updateScriptListOfMenu();      void updateScriptListOfMenu();
646      void assignScript(gig::Script* pScript);      void assignScript(gig::Script* pScript);
647        void dropAllScriptSlots();
648    
649      bool close_confirmation_dialog();      bool close_confirmation_dialog();
650      bool leaving_shared_mode_dialog();      bool leaving_shared_mode_dialog();
651    
652      Gtk::Menu* popup_menu;      Gtk::Menu* popup_menu;
653    #if USE_GTKMM_BUILDER
654        Gtk::Menu* sample_popup;
655        Gtk::Menu* script_popup;
656    #endif
657    
658      bool on_delete_event(GdkEventAny* event);      bool on_delete_event(GdkEventAny* event);
659    
660      bool first_call_to_drag_data_get;      bool first_call_to_drag_data_get;
661        
662      bool is_copy_samples_unity_note_enabled() const;      bool is_copy_samples_unity_note_enabled() const;
663      bool is_copy_samples_fine_tune_enabled() const;      bool is_copy_samples_fine_tune_enabled() const;
664      bool is_copy_samples_loop_enabled() const;      bool is_copy_samples_loop_enabled() const;

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

  ViewVC Help
Powered by ViewVC