Code

Cleaned up more of the gboolean to bool janitorial task...great!
[inkscape.git] / src / extension / prefdialog.h
index 02b3b6a49bf4e86c9ca089f9087e1a1e38e7f399..8092a83d9c1715409755f9ef50a95ece789184b9 100644 (file)
 namespace Inkscape {
 namespace Extension {
 
+/** \brief  A class to represent the preferences for an extension */
 class PrefDialog : public Gtk::Dialog {
-    Gtk::Socket * _socket;
+    /** \brief  Help string if it exists */
+    gchar const * _help;
+    /** \brief  Name of the extension */
+    Glib::ustring _name;
 
 public:
-    PrefDialog (Glib::ustring name, Gtk::Widget * controls);
+    PrefDialog (Glib::ustring name, gchar const * help, Gtk::Widget * controls);
+    int run (void);
+
 };