X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-studio%2Ftrunk%2Fsrc%2Fgtkmm%2Fdialogsettings.cpp;h=51817d38dfae044eb30c954f3b6edceaec13305d;hb=e7e1794959f6b4af0d60d69b5501adcd305f2207;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..51817d3 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 $ ** ** \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,11 +108,11 @@ 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; @@ -169,13 +170,13 @@ 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");