X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-studio%2Ftrunk%2Fsrc%2Fgtkmm%2Fdialogsettings.cpp;h=1705087addd11b116e6b592a9eb41d522757e8d4;hb=40e340bcdda689cca6f5ec7f67bdec8c476a25f9;hp=260b750c3dfb10b680839835e5fe1f922d377371;hpb=3a3c4bca3a17137bec5d7960560934b91ef4146e;p=synfig.git diff --git a/synfig-studio/trunk/src/gtkmm/dialogsettings.cpp b/synfig-studio/trunk/src/gtkmm/dialogsettings.cpp index 260b750..1705087 100644 --- a/synfig-studio/trunk/src/gtkmm/dialogsettings.cpp +++ b/synfig-studio/trunk/src/gtkmm/dialogsettings.cpp @@ -1,20 +1,21 @@ -/* === S I N F G =========================================================== */ +/* === S Y N F I G ========================================================= */ /*! \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 */ /* ========================================================================= */ @@ -29,7 +30,7 @@ #endif #include "dialogsettings.h" -#include +#include #endif @@ -37,7 +38,7 @@ using namespace std; using namespace etl; -using namespace sinfg; +using namespace synfig; using namespace studio; /* === M A C R O S ========================================================= */ @@ -48,20 +49,20 @@ using namespace studio; /* === M E T H O D S ======================================================= */ -DialogSettings::DialogSettings(Gtk::Window* window,const sinfg::String& name): +DialogSettings::DialogSettings(Gtk::Window* window,const synfig::String& name): window(window), name(name) { - sinfgapp::Main::settings().add_domain(this,"window."+name); + synfigapp::Main::settings().add_domain(this,"window."+name); } DialogSettings::~DialogSettings() { - sinfgapp::Main::settings().remove_domain("window."+name); + synfigapp::Main::settings().remove_domain("window."+name); } bool -DialogSettings::get_value(const sinfg::String& key, sinfg::String& value)const +DialogSettings::get_value(const synfig::String& key, synfig::String& value)const { if(key=="pos") { @@ -107,16 +108,16 @@ DialogSettings::get_value(const sinfg::String& key, sinfg::String& value)const return true; } - return sinfgapp::Settings::get_value(key,value); + return synfigapp::Settings::get_value(key,value); } bool -DialogSettings::set_value(const sinfg::String& key,const sinfg::String& value) +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 sinfg::String& key,const sinfg::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 sinfg::String& key,const sinfg::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()); @@ -169,17 +170,17 @@ DialogSettings::set_value(const sinfg::String& key,const sinfg::String& value) return true; } - return sinfgapp::Settings::set_value(key,value); + return synfigapp::Settings::set_value(key,value); } -sinfgapp::Settings::KeyList +synfigapp::Settings::KeyList DialogSettings::get_key_list()const { - sinfgapp::Settings::KeyList ret(sinfgapp::Settings::get_key_list()); - + synfigapp::Settings::KeyList ret(synfigapp::Settings::get_key_list()); + ret.push_back("size"); ret.push_back("pos"); ret.push_back("visible"); - + return ret; }