/[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 3710 by schoenebeck, Thu Oct 24 13:12:52 2019 UTC revision 3711 by schoenebeck, Fri Jan 10 14:22:25 2020 UTC
# Line 1  Line 1 
1  /*  /*
2      Copyright (c) 2014-2019 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 88  Settings::Settings() : Glib::ObjectBase( Line 88  Settings::Settings() : Glib::ObjectBase(
88      autoRestoreWindowDimension(*this, GLOBAL, "autoRestoreWindowDimension", false),      autoRestoreWindowDimension(*this, GLOBAL, "autoRestoreWindowDimension", false),
89      saveWithTemporaryFile(*this, GLOBAL, "saveWithTemporaryFile", false),      saveWithTemporaryFile(*this, GLOBAL, "saveWithTemporaryFile", false),
90      showTooltips(*this, GLOBAL, "showNewbieTooltips", true),      showTooltips(*this, GLOBAL, "showNewbieTooltips", true),
91        instrumentDoubleClickOpensProps(*this, GLOBAL, "openInstrPropsByDoubleClick", true),
92      mainWindowX(*this, MAIN_WINDOW, "x", -1),      mainWindowX(*this, MAIN_WINDOW, "x", -1),
93      mainWindowY(*this, MAIN_WINDOW, "y", -1),      mainWindowY(*this, MAIN_WINDOW, "y", -1),
94      mainWindowW(*this, MAIN_WINDOW, "w", -1),      mainWindowW(*this, MAIN_WINDOW, "w", -1),
# Line 145  Settings::Settings() : Glib::ObjectBase( Line 146  Settings::Settings() : Glib::ObjectBase(
146      m_boolProps.push_back(&autoRestoreWindowDimension);      m_boolProps.push_back(&autoRestoreWindowDimension);
147      m_boolProps.push_back(&saveWithTemporaryFile);      m_boolProps.push_back(&saveWithTemporaryFile);
148      m_boolProps.push_back(&showTooltips);      m_boolProps.push_back(&showTooltips);
149        m_boolProps.push_back(&instrumentDoubleClickOpensProps);
150      m_intProps.push_back(&mainWindowX);      m_intProps.push_back(&mainWindowX);
151      m_intProps.push_back(&mainWindowY);      m_intProps.push_back(&mainWindowY);
152      m_intProps.push_back(&mainWindowW);      m_intProps.push_back(&mainWindowW);

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

  ViewVC Help
Powered by ViewVC