/[svn]/gigedit/trunk/src/gigedit/Settings.h
ViewVC logotype

Diff of /gigedit/trunk/src/gigedit/Settings.h

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 3157 by schoenebeck, Mon May 8 17:30:10 2017 UTC revision 3711 by schoenebeck, Fri Jan 10 14:22:25 2020 UTC
# Line 1  Line 1 
1  /*  /*
2      Copyright (c) 2014-2017 Christian Schoenebeck      Copyright (c) 2014-2020 Christian Schoenebeck
3        
4      This file is part of "gigedit" and released under the terms of the      This file is part of "gigedit" and released under the terms of the
5      GNU General Public License version 2.      GNU General Public License version 2.
6  */  */
# Line 46  public: Line 46  public:
46          MIDI_RULES,          MIDI_RULES,
47          FILE_PROPS,          FILE_PROPS,
48          INSTR_PROPS,          INSTR_PROPS,
49            SAMPLE_PROPS,
50          SAMPLE_REFS,          SAMPLE_REFS,
51          MACRO_EDITOR,          MACRO_EDITOR,
52          MACROS_SETUP,          MACROS_SETUP,
# Line 72  public: Line 73  public:
73                  sigc::bind(                  sigc::bind(
74                      sigc::bind(                      sigc::bind(
75                          sigc::bind(                          sigc::bind(
76                              sigc::mem_fun(m_settings, &Settings::onPropertyChanged),                              sigc::mem_fun(*m_settings, &Settings::onPropertyChanged),
77                              m_group                              m_group
78                          ),                          ),
79                          type                          type
# Line 92  public: Line 93  public:
93                  sigc::bind(                  sigc::bind(
94                      sigc::bind(                      sigc::bind(
95                          sigc::bind(                          sigc::bind(
96                              sigc::mem_fun(m_settings, &Settings::onPropertyChanged),                              sigc::mem_fun(*m_settings, &Settings::onPropertyChanged),
97                              m_group                              m_group
98                          ),                          ),
99                          type                          type
# Line 127  public: Line 128  public:
128      Property<bool> moveRootNoteWithRegionMoved; ///< if enabled, the root note(s) of regions are automatically moving when the user drags a region around at the virtual keyboard      Property<bool> moveRootNoteWithRegionMoved; ///< if enabled, the root note(s) of regions are automatically moving when the user drags a region around at the virtual keyboard
129      Property<bool> autoRestoreWindowDimension;      Property<bool> autoRestoreWindowDimension;
130      Property<bool> saveWithTemporaryFile; ///< If enabled and the user selects "Save" from the main menu, then the file is first saved as separate temporary file and after the save operation completed the temporary file is moved over the original file.      Property<bool> saveWithTemporaryFile; ///< If enabled and the user selects "Save" from the main menu, then the file is first saved as separate temporary file and after the save operation completed the temporary file is moved over the original file.
131        Property<bool> showTooltips; ///< Whether tooltips specifically intended for newbies should be displayed throughout the application (default: yes).
132        Property<bool> instrumentDoubleClickOpensProps; ///< If enabled then double clicking on an instrument of the instruments list view will show the selected instrument's properties dialog.
133    
134      // settings of "MainWindow" group      // settings of "MainWindow" group
135      Property<int> mainWindowX;      Property<int> mainWindowX;
# Line 177  public: Line 180  public:
180      Property<int> instrPropsWindowW;      Property<int> instrPropsWindowW;
181      Property<int> instrPropsWindowH;      Property<int> instrPropsWindowH;
182    
183        // settings of "SampleProps" group
184        Property<int> samplePropsWindowX;
185        Property<int> samplePropsWindowY;
186        Property<int> samplePropsWindowW;
187        Property<int> samplePropsWindowH;
188    
189      // settings of "SampleRefs" group      // settings of "SampleRefs" group
190      Property<int> sampleRefsWindowX;      Property<int> sampleRefsWindowX;
191      Property<int> sampleRefsWindowY;      Property<int> sampleRefsWindowY;

Legend:
Removed from v.3157  
changed lines
  Added in v.3711

  ViewVC Help
Powered by ViewVC