/[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 3364 by schoenebeck, Tue Nov 14 18:07:25 2017 UTC revision 3409 by schoenebeck, Tue Jan 23 16:30:56 2018 UTC
# Line 1  Line 1 
1  /*  /*
2      Copyright (c) 2014-2017 Christian Schoenebeck      Copyright (c) 2014-2018 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 86  Settings::Settings() : Glib::ObjectBase( Line 86  Settings::Settings() : Glib::ObjectBase(
86      moveRootNoteWithRegionMoved(*this, GLOBAL, "moveRootNoteWithRegionMoved", true),      moveRootNoteWithRegionMoved(*this, GLOBAL, "moveRootNoteWithRegionMoved", true),
87      autoRestoreWindowDimension(*this, GLOBAL, "autoRestoreWindowDimension", false),      autoRestoreWindowDimension(*this, GLOBAL, "autoRestoreWindowDimension", false),
88      saveWithTemporaryFile(*this, GLOBAL, "saveWithTemporaryFile", false),      saveWithTemporaryFile(*this, GLOBAL, "saveWithTemporaryFile", false),
89        showTooltips(*this, GLOBAL, "showNewbieTooltips", true),
90      mainWindowX(*this, MAIN_WINDOW, "x", -1),      mainWindowX(*this, MAIN_WINDOW, "x", -1),
91      mainWindowY(*this, MAIN_WINDOW, "y", -1),      mainWindowY(*this, MAIN_WINDOW, "y", -1),
92      mainWindowW(*this, MAIN_WINDOW, "w", -1),      mainWindowW(*this, MAIN_WINDOW, "w", -1),
# Line 138  Settings::Settings() : Glib::ObjectBase( Line 139  Settings::Settings() : Glib::ObjectBase(
139      m_boolProps.push_back(&moveRootNoteWithRegionMoved);      m_boolProps.push_back(&moveRootNoteWithRegionMoved);
140      m_boolProps.push_back(&autoRestoreWindowDimension);      m_boolProps.push_back(&autoRestoreWindowDimension);
141      m_boolProps.push_back(&saveWithTemporaryFile);      m_boolProps.push_back(&saveWithTemporaryFile);
142        m_boolProps.push_back(&showTooltips);
143      m_intProps.push_back(&mainWindowX);      m_intProps.push_back(&mainWindowX);
144      m_intProps.push_back(&mainWindowY);      m_intProps.push_back(&mainWindowY);
145      m_intProps.push_back(&mainWindowW);      m_intProps.push_back(&mainWindowW);

Legend:
Removed from v.3364  
changed lines
  Added in v.3409

  ViewVC Help
Powered by ViewVC