#ifndef SEEN_INK_EXTENSION_PARAMBOOL_H #define SEEN_INK_EXTENSION_PARAMBOOL_H /* * Copyright (C) 2005-2007 Authors: * Ted Gould * Johan Engelen * * Jon A. Cruz * Released under GNU GPL, read the file 'COPYING' for more information */ #include "parameter.h" class SPDocument; namespace Gtk { class Widget; } namespace Inkscape { namespace XML { class Node; } namespace Extension { /** * A boolean parameter. */ class ParamBool : public Parameter { public: /** * Use the superclass' allocator and set the \c _value. */ ParamBool(const gchar * name, const gchar * guitext, const gchar * desc, const Parameter::_scope_t scope, bool gui_hidden, const gchar * gui_tip, Inkscape::Extension::Extension * ext, Inkscape::XML::Node * xml); /** * Returns the current state/value. */ bool get(const SPDocument *doc, const Inkscape::XML::Node *node) const; /** * A function to set the state/value. * This function sets the internal value, but it also sets the value * in the preferences structure. To put it in the right place, \c PREF_DIR * and \c pref_name() are used. * * @param in The value to set to * @param doc A document that should be used to set the value. * @param node The node where the value may be placed */ bool set(bool in, SPDocument * doc, Inkscape::XML::Node * node); /** * Creates a bool check button for a bool parameter. * Builds a hbox with a label and a check button in it. */ Gtk::Widget *get_widget(SPDocument * doc, Inkscape::XML::Node * node, sigc::signal * changeSignal); // Explicitly call superclass version to avoid method being hidden. virtual void string(std::list &list) const { return Parameter::string(list); } /** * Appends 'true' or 'false'. * @todo investigate. Returning a value that can then be appended would probably work better/safer. */ virtual void string(std::string &string) const; private: /** Internal value. */ bool _value; int _indent; }; } // namespace Extension } // namespace Inkscape #endif // SEEN_INK_EXTENSION_PARAMBOOL_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 :