summaryrefslogtreecommitdiffstats
path: root/src/ui/widget/panel.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/widget/panel.h')
-rw-r--r--src/ui/widget/panel.h13
1 files changed, 9 insertions, 4 deletions
diff --git a/src/ui/widget/panel.h b/src/ui/widget/panel.h
index fe3e226b4..d51d942dd 100644
--- a/src/ui/widget/panel.h
+++ b/src/ui/widget/panel.h
@@ -1,6 +1,4 @@
-/**
- * \brief Generic Panel widget - A generic dockable container.
- *
+/*
* Authors:
* Bryce Harrington <bryce@bryceharrington.org>
* Jon A. Cruz <jon@joncruz.org>
@@ -35,16 +33,23 @@ namespace Inkscape {
namespace UI {
namespace Widget {
+/**
+ * A generic dockable container.
+ */
class Panel : public Gtk::VBox {
public:
static void prep();
- virtual ~Panel();
+ /**
+ * Construct a Panel.
+ */
Panel(Glib::ustring const &label = "", gchar const *prefs_path = 0,
int verb_num = 0, Glib::ustring const &apply_label = "",
bool menu_desired = false);
+ virtual ~Panel();
+
gchar const *getPrefsPath() const;
void setLabel(Glib::ustring const &label);
Glib::ustring const &getLabel() const;