X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=src%2Fextension%2Fprefdialog.h;h=8092a83d9c1715409755f9ef50a95ece789184b9;hb=300868e9fd6365e6815d376def3229cb5d1155d0;hp=02b3b6a49bf4e86c9ca089f9087e1a1e38e7f399;hpb=6b15695578f07a3f72c4c9475c1a261a3021472a;p=inkscape.git diff --git a/src/extension/prefdialog.h b/src/extension/prefdialog.h index 02b3b6a49..8092a83d9 100644 --- a/src/extension/prefdialog.h +++ b/src/extension/prefdialog.h @@ -20,11 +20,17 @@ 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); + };