X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=src%2Fui%2Fwidget%2Fpanel.h;h=e091c82a12b65c87560207381aba6cc8127bc3ce;hb=569ef8f6dbacc8a8b0b933d02a806c2e091ce02b;hp=cf201d6da7095980ba49c2a581a7d0f1cea34dd9;hpb=3cc86195f8421708895b8cfd3dcc1eea5dbf50d2;p=inkscape.git diff --git a/src/ui/widget/panel.h b/src/ui/widget/panel.h index cf201d6da..e091c82a1 100644 --- a/src/ui/widget/panel.h +++ b/src/ui/widget/panel.h @@ -14,6 +14,7 @@ #ifndef SEEN_INKSCAPE_UI_WIDGET_PANEL_H #define SEEN_INKSCAPE_UI_WIDGET_PANEL_H +#include #include #include #include @@ -34,8 +35,7 @@ class Panel : public Gtk::VBox public: Panel(); virtual ~Panel(); - Panel(Glib::ustring const &label, bool menuDesired = false ); - Panel(const gchar *prefs_path, bool menuDesired = false ); + Panel(Glib::ustring const &label, gchar const *prefs_path = 0, bool menuDesired = false ); void setLabel(Glib::ustring const &label); Glib::ustring const &getLabel() const; @@ -60,6 +60,7 @@ private: void bounceCall(int i, int j); void _popper(GdkEventButton* btn); + void _wrapToggled(Gtk::CheckMenuItem* toggler); Glib::ustring label; @@ -71,6 +72,8 @@ private: Gtk::EventBox menuPopper; Gtk::Button closeButton; Gtk::Menu* menu; + std::vector nonHorizontal; + std::vector nonVertical; PreviewFillable *_fillable; };