X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-studio%2Ftrunk%2Fsrc%2Fgtkmm%2Fdialogsettings.cpp;h=1705087addd11b116e6b592a9eb41d522757e8d4;hb=f9d8a24a671b759c2be95bc10cd330f310b7dcc2;hp=f28c0303a927798c3ded8c7d9cb33697c8630797;hpb=02252941b29de64037116f4d37991a38d9ff0d94;p=synfig.git diff --git a/synfig-studio/trunk/src/gtkmm/dialogsettings.cpp b/synfig-studio/trunk/src/gtkmm/dialogsettings.cpp index f28c030..1705087 100644 --- a/synfig-studio/trunk/src/gtkmm/dialogsettings.cpp +++ b/synfig-studio/trunk/src/gtkmm/dialogsettings.cpp @@ -2,19 +2,20 @@ /*! \file dialogsettings.cpp ** \brief Template File ** -** $Id: dialogsettings.cpp,v 1.1.1.1 2005/01/07 03:34:36 darco Exp $ +** $Id$ ** ** \legal -** Copyright (c) 2002 Robert B. Quattlebaum Jr. +** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley ** -** This software and associated documentation -** are CONFIDENTIAL and PROPRIETARY property of -** the above-mentioned copyright holder. +** This package is free software; you can redistribute it and/or +** modify it under the terms of the GNU General Public License as +** published by the Free Software Foundation; either version 2 of +** the License, or (at your option) any later version. ** -** You may not copy, print, publish, or in any -** other way distribute this software without -** a prior written agreement with -** the copyright holder. +** This package is distributed in the hope that it will be useful, +** but WITHOUT ANY WARRANTY; without even the implied warranty of +** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +** General Public License for more details. ** \endlegal */ /* ========================================================================= */ @@ -115,8 +116,8 @@ DialogSettings::set_value(const synfig::String& key,const synfig::String& value) { if(value.empty()) return false; - - if(key=="pos") + + if(key=="pos") { int x,y; if(!strscanf(value,"%d %d",&x, &y)) @@ -124,7 +125,7 @@ DialogSettings::set_value(const synfig::String& key,const synfig::String& value) window->move(x,y); return true; } - if(key=="size") + if(key=="size") { int x,y; if(!strscanf(value,"%d %d",&x, &y)) @@ -132,7 +133,7 @@ DialogSettings::set_value(const synfig::String& key,const synfig::String& value) window->set_default_size(x,y); return true; } - if(key=="x") + if(key=="x") { int x,y; window->get_position(x,y); x=atoi(value.c_str()); @@ -176,10 +177,10 @@ synfigapp::Settings::KeyList DialogSettings::get_key_list()const { synfigapp::Settings::KeyList ret(synfigapp::Settings::get_key_list()); - + ret.push_back("size"); ret.push_back("pos"); ret.push_back("visible"); - + return ret; }