/[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 2844 by persson, Sun Sep 20 08:49:40 2015 UTC revision 3068 by schoenebeck, Mon Jan 2 22:13:01 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    #else
26    # include <gig.h>
27    #endif
28    
29  #include <gtkmm/box.h>  #include <gtkmm/box.h>
30  #include <gtkmm/actiongroup.h>  #include <gtkmm/actiongroup.h>
# Line 47  Line 51 
51  #ifndef OLD_THREADS  #ifndef OLD_THREADS
52  #include <glibmm/threads.h>  #include <glibmm/threads.h>
53  #endif  #endif
54    #include "ManagedWindow.h"
55    
56  class MainWindow;  class MainWindow;
57    
58  class PropDialog : public Gtk::Window,  class PropDialog : public ManagedWindow,
59                     public PropEditor<DLS::Info> {                     public PropEditor<DLS::Info> {
60  public:  public:
61      PropDialog();      PropDialog();
62      void set_info(DLS::Info* info);      void set_info(DLS::Info* info);
63      void set_file(gig::File* file);      void set_file(gig::File* file);
64    
65        // implementation for abstract methods of interface class "ManagedWindow"
66        virtual Settings::Property<int>* windowSettingX() { return &Settings::singleton()->filePropsWindowX; }
67        virtual Settings::Property<int>* windowSettingY() { return &Settings::singleton()->filePropsWindowY; }
68        virtual Settings::Property<int>* windowSettingWidth() { return &Settings::singleton()->filePropsWindowW; }
69        virtual Settings::Property<int>* windowSettingHeight() { return &Settings::singleton()->filePropsWindowH; }
70    
71  protected:  protected:
72      ChoiceEntry<int> eFileFormat;      ChoiceEntry<int> eFileFormat;
73      StringEntry eName;      StringEntry eName;
# Line 84  protected: Line 96  protected:
96      void onFileFormatChanged();      void onFileFormatChanged();
97  };  };
98    
99  class InstrumentProps : public Gtk::Window,  class InstrumentProps : public ManagedWindow,
100                          public PropEditor<gig::Instrument> {                          public PropEditor<gig::Instrument> {
101  public:  public:
102      InstrumentProps();      InstrumentProps();
# Line 94  public: Line 106  public:
106      sigc::signal<void>& signal_name_changed() {      sigc::signal<void>& signal_name_changed() {
107          return sig_name_changed;          return sig_name_changed;
108      }      }
109    
110        // implementation for abstract methods of interface class "ManagedWindow"
111        virtual Settings::Property<int>* windowSettingX() { return &Settings::singleton()->instrPropsWindowX; }
112        virtual Settings::Property<int>* windowSettingY() { return &Settings::singleton()->instrPropsWindowY; }
113        virtual Settings::Property<int>* windowSettingWidth() { return &Settings::singleton()->instrPropsWindowW; }
114        virtual Settings::Property<int>* windowSettingHeight() { return &Settings::singleton()->instrPropsWindowH; }
115    
116  protected:  protected:
117      void set_Name(const gig::String& name);      void set_Name(const gig::String& name);
118      void set_IsDrum(bool value);      void set_IsDrum(bool value);
# Line 173  private: Line 192  private:
192      float progress;      float progress;
193  };  };
194    
195  class MainWindow : public Gtk::Window {  class MainWindow : public ManagedWindow {
196  public:  public:
197      MainWindow();      MainWindow();
198      virtual ~MainWindow();      virtual ~MainWindow();
# Line 199  public: Line 218  public:
218    
219      sigc::signal<void, gig::Instrument*>& signal_switch_sampler_instrument();      sigc::signal<void, gig::Instrument*>& signal_switch_sampler_instrument();
220    
221        sigc::signal<void, gig::Script*> signal_script_to_be_changed;
222        sigc::signal<void, gig::Script*> signal_script_changed;
223    
224        // implementation for abstract methods of interface class "ManagedWindow"
225        virtual Settings::Property<int>* windowSettingX() { return &Settings::singleton()->mainWindowX; }
226        virtual Settings::Property<int>* windowSettingY() { return &Settings::singleton()->mainWindowY; }
227        virtual Settings::Property<int>* windowSettingWidth() { return &Settings::singleton()->mainWindowW; }
228        virtual Settings::Property<int>* windowSettingHeight() { return &Settings::singleton()->mainWindowH; }
229    
230  protected:  protected:
231      Glib::RefPtr<Gtk::ActionGroup> actionGroup;      Glib::RefPtr<Gtk::ActionGroup> actionGroup;
232      Glib::RefPtr<Gtk::UIManager> uiManager;      Glib::RefPtr<Gtk::UIManager> uiManager;
# Line 252  protected: Line 280  protected:
280      class ModelColumns : public Gtk::TreeModel::ColumnRecord {      class ModelColumns : public Gtk::TreeModel::ColumnRecord {
281      public:      public:
282          ModelColumns() {          ModelColumns() {
283              add(m_col_nr);
284            add(m_col_name);            add(m_col_name);
285            add(m_col_instr);            add(m_col_instr);
286          }          }
287    
288            Gtk::TreeModelColumn<int> m_col_nr;
289          Gtk::TreeModelColumn<Glib::ustring> m_col_name;          Gtk::TreeModelColumn<Glib::ustring> m_col_name;
290          Gtk::TreeModelColumn<gig::Instrument*> m_col_instr;          Gtk::TreeModelColumn<gig::Instrument*> m_col_instr;
291      } m_Columns;      } m_Columns;
# Line 359  protected: Line 389  protected:
389      void show_midi_rules();      void show_midi_rules();
390      void show_script_slots();      void show_script_slots();
391      void on_action_view_status_bar();      void on_action_view_status_bar();
392        void on_auto_restore_win_dim();
393        void on_save_with_temporary_file();
394      void on_action_refresh_all();      void on_action_refresh_all();
395      void on_action_warn_user_on_extensions();      void on_action_warn_user_on_extensions();
396      void on_action_sync_sampler_instrument_selection();      void on_action_sync_sampler_instrument_selection();

Legend:
Removed from v.2844  
changed lines
  Added in v.3068

  ViewVC Help
Powered by ViewVC