X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-studio%2Ftrunk%2Fsrc%2Fgtkmm%2Fdialogsettings.cpp;h=e325dd9810529b5a49ed00880d7889af24b1b5ce;hb=a27deaf2322fab351ac47cbed699ec3ab8eb198d;hp=4c6b620fe3f1205feaa2986003358b5f83530391;hpb=c34eaa5441242b3e9a7b7645e9ee4983d14eae85;p=synfig.git diff --git a/synfig-studio/trunk/src/gtkmm/dialogsettings.cpp b/synfig-studio/trunk/src/gtkmm/dialogsettings.cpp index 4c6b620..e325dd9 100644 --- a/synfig-studio/trunk/src/gtkmm/dialogsettings.cpp +++ b/synfig-studio/trunk/src/gtkmm/dialogsettings.cpp @@ -2,7 +2,7 @@ /*! \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-2005 Robert B. Quattlebaum Jr., Adrian Bentley @@ -31,6 +31,9 @@ #include "dialogsettings.h" #include +#include + +#include "general.h" #endif @@ -114,6 +117,9 @@ 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; @@ -122,6 +128,10 @@ DialogSettings::set_value(const synfig::String& key,const synfig::String& value) 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; } @@ -130,6 +140,10 @@ DialogSettings::set_value(const synfig::String& key,const synfig::String& value) 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; }