initial version
[synfig.git] / synfig-studio / trunk / src / gtkmm / dialogsettings.cpp
diff --git a/synfig-studio/trunk/src/gtkmm/dialogsettings.cpp b/synfig-studio/trunk/src/gtkmm/dialogsettings.cpp
new file mode 100644 (file)
index 0000000..260b750
--- /dev/null
@@ -0,0 +1,185 @@
+/* === S I N F 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.
+**
+**     This software and associated documentation
+**     are CONFIDENTIAL and PROPRIETARY property of
+**     the above-mentioned copyright holder.
+**
+**     You may not copy, print, publish, or in any
+**     other way distribute this software without
+**     a prior written agreement with
+**     the copyright holder.
+**     \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 <sinfgapp/main.h>
+
+#endif
+
+/* === U S I N G =========================================================== */
+
+using namespace std;
+using namespace etl;
+using namespace sinfg;
+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 sinfg::String& name):
+       window(window),
+       name(name)
+{
+       sinfgapp::Main::settings().add_domain(this,"window."+name);
+}
+
+DialogSettings::~DialogSettings()
+{
+       sinfgapp::Main::settings().remove_domain("window."+name);
+}
+
+bool
+DialogSettings::get_value(const sinfg::String& key, sinfg::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 sinfgapp::Settings::get_value(key,value);
+}
+
+bool
+DialogSettings::set_value(const sinfg::String& key,const sinfg::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 sinfgapp::Settings::set_value(key,value);
+}
+
+sinfgapp::Settings::KeyList
+DialogSettings::get_key_list()const
+{
+       sinfgapp::Settings::KeyList ret(sinfgapp::Settings::get_key_list());
+       
+       ret.push_back("size");
+       ret.push_back("pos");
+       ret.push_back("visible");
+       
+       return ret;
+}