/** * \brief Static style swatch (fill, stroke, opacity) * * Author: * buliabyak@gmail.com * * Copyright (C) 2005 author * * Released under GNU GPL. Read the file 'COPYING' for more information. */ #ifndef INKSCAPE_UI_CURRENT_STYLE_H #define INKSCAPE_UI_CURRENT_STYLE_H #include #include #include #include #include #include #include #include "button.h" class SPUnit; class SPStyle; class SPCSSAttr; namespace Inkscape { namespace XML { class Node; } } namespace Inkscape { namespace UI { namespace Widget { class StyleSwatch : public Gtk::HBox { public: StyleSwatch (SPCSSAttr *attr); ~StyleSwatch(); void setStyle(SPStyle *style); void setStyle(SPCSSAttr *attr); SPCSSAttr *getStyle(); void setWatched (Inkscape::XML::Node *watched, Inkscape::XML::Node *secondary); void setWatchedTool (const char *path, bool synthesize); char *_tool_path; protected: SPCSSAttr *_css; Inkscape::XML::Node *_watched; Inkscape::XML::Node *_watched_tool; Gtk::Table _table; Gtk::Label _label[2]; Gtk::EventBox _place[2]; Gtk::EventBox _opacity_place; Gtk::Label _value[2]; Gtk::Label _opacity_value; Gtk::Widget *_color_preview[2]; Glib::ustring __color[2]; Gtk::HBox _stroke; Gtk::EventBox _stroke_width_place; Gtk::Label _stroke_width; SPUnit *_sw_unit; Gtk::Tooltips _tooltips; }; } // namespace Widget } // namespace UI } // namespace Inkscape #endif // INKSCAPE_UI_WIDGET_BUTTON_H /* Local Variables: mode:c++ c-file-style:"stroustrup" c-file-offsets:((innamespace . 0)(inline-open . 0)) indent-tabs-mode:nil fill-column:99 End: */ // vim: filetype=c++:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :