Code

r15556@tres: ted | 2007-06-08 08:57:40 -0700
authorgouldtj <gouldtj@users.sourceforge.net>
Wed, 27 Jun 2007 06:27:59 +0000 (06:27 +0000)
committergouldtj <gouldtj@users.sourceforge.net>
Wed, 27 Jun 2007 06:27:59 +0000 (06:27 +0000)
 Adding some functions for future expansion.

src/extension/prefdialog.cpp
src/extension/prefdialog.h

index db9d6b7d7345ce5322a93a3ebf4939419223cbb4..7c3b766391735df675158ced38c8ee370cade300 100644 (file)
@@ -79,6 +79,16 @@ PrefDialog::run (void) {
     return resp;
 }
 
+void
+PrefDialog::setPreviewState (Glib::ustring state) {
+
+}
+
+void
+PrefDialog::setPinned (bool in_pin) {
+    set_modal(!in_pin);
+}
+
 }; }; /* namespace Inkscape, Extension */
 
 /*
index 8092a83d9c1715409755f9ef50a95ece789184b9..4b7aa67b57294c9e72765031b19c757c2a8071a6 100644 (file)
@@ -31,6 +31,8 @@ public:
     PrefDialog (Glib::ustring name, gchar const * help, Gtk::Widget * controls);
     int run (void);
 
+    void setPreviewState (Glib::ustring state);
+    void setPinned (bool in_pin);
 };