Release synfigstudio_0_61_07_rc2
[synfig.git] / synfig-studio / tags / synfigstudio_0_61_07_rc2 / src / gtkmm / dialogsettings.cpp
diff --git a/synfig-studio/tags/synfigstudio_0_61_07_rc2/src/gtkmm/dialogsettings.cpp b/synfig-studio/tags/synfigstudio_0_61_07_rc2/src/gtkmm/dialogsettings.cpp
new file mode 100644 (file)
index 0000000..1705087
--- /dev/null
@@ -0,0 +1,186 @@
+/* === S Y N F I G ========================================================= */
+/*!    \file dialogsettings.cpp
+**     \brief Template File
+**
+**     $Id$
+**
+**     \legal
+**     Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
+**
+**     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.
+**
+**     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
+*/
+/* ========================================================================= */
+
+/* === H E A D E R S ======================================================= */
+
+#ifdef USING_PCH
+#      include "pch.h"
+#else
+#ifdef HAVE_CONFIG_H
+#      include <config.h>
+#endif
+
+#include "dialogsettings.h"
+#include <synfigapp/main.h>
+
+#endif
+
+/* === U S I N G =========================================================== */
+
+using namespace std;
+using namespace etl;
+using namespace synfig;
+using namespace studio;
+
+/* === M A C R O S ========================================================= */
+
+/* === G L O B A L S ======================================================= */
+
+/* === P R O C E D U R E S ================================================= */
+
+/* === M E T H O D S ======================================================= */
+
+DialogSettings::DialogSettings(Gtk::Window* window,const synfig::String& name):
+       window(window),
+       name(name)
+{
+       synfigapp::Main::settings().add_domain(this,"window."+name);
+}
+
+DialogSettings::~DialogSettings()
+{
+       synfigapp::Main::settings().remove_domain("window."+name);
+}
+
+bool
+DialogSettings::get_value(const synfig::String& key, synfig::String& value)const
+{
+       if(key=="pos")
+       {
+               if(!window->is_visible())return false;
+               int x,y; window->get_position(x,y);
+               value=strprintf("%d %d",x,y);
+               return true;
+       }
+       if(key=="size")
+       {
+               if(!window->is_visible())return false;
+               int x,y; window->get_size(x,y);
+               value=strprintf("%d %d",x,y);
+               return true;
+       }
+       if(key=="x")
+       {
+               int x,y; window->get_position(x,y);
+               value=strprintf("%d",x);
+               return true;
+       }
+       if(key=="y")
+       {
+               int x,y; window->get_position(x,y);
+               value=strprintf("%d",y);
+               return true;
+       }
+       if(key=="w")
+       {
+               int x,y; window->get_size(x,y);
+               value=strprintf("%d",x);
+               return true;
+       }
+       if(key=="h")
+       {
+               int x,y; window->get_size(x,y);
+               value=strprintf("%d",y);
+               return true;
+       }
+       if(key=="visible")
+       {
+               value=window->is_visible()?"1":"0";
+               return true;
+       }
+
+       return synfigapp::Settings::get_value(key,value);
+}
+
+bool
+DialogSettings::set_value(const synfig::String& key,const synfig::String& value)
+{
+       if(value.empty())
+               return false;
+
+       if(key=="pos")
+       {
+               int x,y;
+               if(!strscanf(value,"%d %d",&x, &y))
+                       return false;
+               window->move(x,y);
+               return true;
+       }
+       if(key=="size")
+       {
+               int x,y;
+               if(!strscanf(value,"%d %d",&x, &y))
+                       return false;
+               window->set_default_size(x,y);
+               return true;
+       }
+       if(key=="x")
+       {
+               int x,y; window->get_position(x,y);
+               x=atoi(value.c_str());
+               window->move(x,y);
+               return true;
+       }
+       if(key=="y")
+       {
+               int x,y; window->get_position(x,y);
+               y=atoi(value.c_str());
+               window->move(x,y);
+               return true;
+       }
+       if(key=="w")
+       {
+               int x,y; window->get_size(x,y);
+               x=atoi(value.c_str());
+               window->set_default_size(x,y);
+               return true;
+       }
+       if(key=="h")
+       {
+               int x,y; window->get_size(x,y);
+               y=atoi(value.c_str());
+               window->set_default_size(x,y);
+               return true;
+       }
+       if(key=="visible")
+       {
+               if(value=="0")
+                       window->hide();
+               else
+                       window->present();
+               return true;
+       }
+
+       return synfigapp::Settings::set_value(key,value);
+}
+
+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;
+}