Remove .gitignore do nothing is ignored.
[synfig.git] / synfig-studio / trunk / src / gtkmm / dialogsettings.cpp
index f28c030..7f38a83 100644 (file)
@@ -2,19 +2,21 @@
 /*!    \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
+**     Copyright (c) 2007, 2008 Chris Moore
 **
-**     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
 */
 /* ========================================================================= */
@@ -30,6 +32,9 @@
 
 #include "dialogsettings.h"
 #include <synfigapp/main.h>
+#include <gdkmm/general.h>
+
+#include "general.h"
 
 #endif
 
@@ -65,14 +70,14 @@ DialogSettings::get_value(const synfig::String& key, synfig::String& value)const
 {
        if(key=="pos")
        {
-               if(!window->is_visible())return false;
+               // 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;
+               // if(!window->is_visible())return false;
                int x,y; window->get_size(x,y);
                value=strprintf("%d %d",x,y);
                return true;
@@ -113,26 +118,37 @@ DialogSettings::get_value(const synfig::String& key, synfig::String& value)const
 bool
 DialogSettings::set_value(const synfig::String& key,const synfig::String& value)
 {
+       int screen_w(Gdk::screen_width());
+       int screen_h(Gdk::screen_height());
+
        if(value.empty())
                return false;
-       
-       if(key=="pos") 
+
+       if(key=="pos")
        {
                int x,y;
                if(!strscanf(value,"%d %d",&x, &y))
                        return false;
+
+               if (x > screen_w) x = screen_w - 150; if (x < 0) x = 0;
+               if (y > screen_h) y = screen_h - 150; if (y < 0) y = 0;
+
                window->move(x,y);
                return true;
        }
-       if(key=="size") 
+       if(key=="size")
        {
                int x,y;
                if(!strscanf(value,"%d %d",&x, &y))
                        return false;
+
+               if (x > screen_w) x = 150; if (x < 0) x = 0;
+               if (y > screen_h) y = 150; if (y < 0) y = 0;
+
                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 +192,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;
 }