/** * \brief Labelled Widget - Adds a label with optional icon or suffix to * another widget. * * Authors: * Carl Hetherington * Derek P. Moore * * Copyright (C) 2004 Carl Hetherington * * Released under GNU GPL. Read the file 'COPYING' for more information. */ #ifndef INKSCAPE_UI_WIDGET_LABELLED_H #define INKSCAPE_UI_WIDGET_LABELLED_H #include #include #include #include namespace Inkscape { namespace UI { namespace Widget { class Labelled : public Gtk::HBox { public: Labelled(Glib::ustring const &label, Glib::ustring const &tooltip, Gtk::Widget *widget, Glib::ustring const &suffix = "", Glib::ustring const &icon = "", bool mnemonic = true); /** * Allow the setting of the width of the labelled widget */ void setWidgetSizeRequest(int width, int height); const Gtk::Widget* const getWidget() const; const Gtk::Label* const getLabel() const; protected: Gtk::Widget *_widget; Gtk::Label *_label; Gtk::Label *_suffix; Gtk::Widget *_icon; Gtk::Tooltips _tooltips; }; } // namespace Widget } // namespace UI } // namespace Inkscape #endif // INKSCAPE_UI_WIDGET_LABELLED_H /* Local Variables: mode:c++ c-file-style:"stroustrup" c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +)) indent-tabs-mode:nil fill-column:99 End: */ // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :