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

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

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

revision 3636 by schoenebeck, Tue Jan 23 16:30:56 2018 UTC revision 3637 by schoenebeck, Thu Oct 24 13:12:52 2019 UTC
# Line 1  Line 1 
1  /*  /*
2      Copyright (c) 2014-2018 Christian Schoenebeck      Copyright (c) 2014-2019 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.
# Line 49  static std::string groupName(Settings::G Line 49  static std::string groupName(Settings::G
49          case Settings::MIDI_RULES: return "MidiRules";          case Settings::MIDI_RULES: return "MidiRules";
50          case Settings::FILE_PROPS: return "FileProps";          case Settings::FILE_PROPS: return "FileProps";
51          case Settings::INSTR_PROPS: return "InstrProps";          case Settings::INSTR_PROPS: return "InstrProps";
52            case Settings::SAMPLE_PROPS: return "SampleProps";
53          case Settings::SAMPLE_REFS: return "SampleRefs";          case Settings::SAMPLE_REFS: return "SampleRefs";
54          case Settings::MACRO_EDITOR: return "MacroEditor";          case Settings::MACRO_EDITOR: return "MacroEditor";
55          case Settings::MACROS_SETUP: return "MacrosSetup";          case Settings::MACROS_SETUP: return "MacrosSetup";
# Line 120  Settings::Settings() : Glib::ObjectBase( Line 121  Settings::Settings() : Glib::ObjectBase(
121      instrPropsWindowY(*this, INSTR_PROPS, "y", -1),      instrPropsWindowY(*this, INSTR_PROPS, "y", -1),
122      instrPropsWindowW(*this, INSTR_PROPS, "w", -1),      instrPropsWindowW(*this, INSTR_PROPS, "w", -1),
123      instrPropsWindowH(*this, INSTR_PROPS, "h", -1),      instrPropsWindowH(*this, INSTR_PROPS, "h", -1),
124        samplePropsWindowX(*this, SAMPLE_PROPS, "x", -1),
125        samplePropsWindowY(*this, SAMPLE_PROPS, "y", -1),
126        samplePropsWindowW(*this, SAMPLE_PROPS, "w", -1),
127        samplePropsWindowH(*this, SAMPLE_PROPS, "h", -1),
128      sampleRefsWindowX(*this, SAMPLE_REFS, "x", -1),      sampleRefsWindowX(*this, SAMPLE_REFS, "x", -1),
129      sampleRefsWindowY(*this, SAMPLE_REFS, "y", -1),      sampleRefsWindowY(*this, SAMPLE_REFS, "y", -1),
130      sampleRefsWindowW(*this, SAMPLE_REFS, "w", -1),      sampleRefsWindowW(*this, SAMPLE_REFS, "w", -1),
# Line 173  Settings::Settings() : Glib::ObjectBase( Line 178  Settings::Settings() : Glib::ObjectBase(
178      m_intProps.push_back(&instrPropsWindowY);      m_intProps.push_back(&instrPropsWindowY);
179      m_intProps.push_back(&instrPropsWindowW);      m_intProps.push_back(&instrPropsWindowW);
180      m_intProps.push_back(&instrPropsWindowH);      m_intProps.push_back(&instrPropsWindowH);
181        m_intProps.push_back(&samplePropsWindowX);
182        m_intProps.push_back(&samplePropsWindowY);
183        m_intProps.push_back(&samplePropsWindowW);
184        m_intProps.push_back(&samplePropsWindowH);
185      m_intProps.push_back(&sampleRefsWindowX);      m_intProps.push_back(&sampleRefsWindowX);
186      m_intProps.push_back(&sampleRefsWindowY);      m_intProps.push_back(&sampleRefsWindowY);
187      m_intProps.push_back(&sampleRefsWindowW);      m_intProps.push_back(&sampleRefsWindowW);

Legend:
Removed from v.3636  
changed lines
  Added in v.3637

  ViewVC Help
Powered by ViewVC