summaryrefslogtreecommitdiffstats
path: root/src/extension/extension.cpp
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2006-03-29 05:42:22 +0000
committergouldtj <gouldtj@users.sourceforge.net>2006-03-29 05:42:22 +0000
commit48543cb2cb7f440c9a36ac6d66ebd00053e7f657 (patch)
tree347e0575404d3423b68072253edddae328bae831 /src/extension/extension.cpp
parentr10986@tres: ted | 2006-02-27 21:19:52 -0800 (diff)
downloadinkscape-48543cb2cb7f440c9a36ac6d66ebd00053e7f657.tar.gz
inkscape-48543cb2cb7f440c9a36ac6d66ebd00053e7f657.zip
r10987@tres: ted | 2006-02-28 01:06:37 -0800
The leg bone is connected to the knee bone The extension bone is connected to the extension-editor bone (bzr r351)
Diffstat (limited to 'src/extension/extension.cpp')
-rw-r--r--src/extension/extension.cpp27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/extension/extension.cpp b/src/extension/extension.cpp
index 62f590be3..03b12e0a1 100644
--- a/src/extension/extension.cpp
+++ b/src/extension/extension.cpp
@@ -23,6 +23,7 @@
#include <glibmm/i18n.h>
#include <gtkmm/box.h>
+#include <gtkmm/label.h>
#include "inkscape.h"
#include "extension/implementation/implementation.h"
@@ -624,6 +625,32 @@ Extension::paramString (void)
return param_string;
}
+/* Extension editor dialog stuff */
+
+Gtk::Widget *
+Extension::get_info_widget(void)
+{
+ Gtk::Widget * retval = Gtk::manage(new Gtk::Label("Info"));
+ retval->show();
+ return retval;
+}
+
+Gtk::Widget *
+Extension::get_help_widget(void)
+{
+ Gtk::Widget * retval = Gtk::manage(new Gtk::Label("Help"));
+ retval->show();
+ return retval;
+}
+
+Gtk::Widget *
+Extension::get_params_widget(void)
+{
+ Gtk::Widget * retval = Gtk::manage(new Gtk::Label("Params"));
+ retval->show();
+ return retval;
+}
+
} /* namespace Extension */
} /* namespace Inkscape */