float.h revision 05599a3f1fae49d54a2102c41c31271a158410de
#ifndef INK_EXTENSION_PARAMFLOAT_H_SEEN
#define INK_EXTENSION_PARAMFLOAT_H_SEEN
/*
* Copyright (C) 2005-2007 Authors:
* Ted Gould <ted@gould.cx>
* Johan Engelen <johan@shouraizou.nl> *
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include <document.h>
#include "parameter.h"
enum AppearanceMode {
};
bool gui_hidden,
/** \brief Returns \c _value */
float precision (void) { return _precision; }
Gtk::Widget * get_widget(SPDocument * doc, Inkscape::XML::Node * node, sigc::signal<void> * changeSignal);
/** \brief Internal value. */
float _value;
int _indent;
float _min;
float _max;
int _precision;
};
} /* namespace Extension */
} /* namespace Inkscape */
#endif /* INK_EXTENSION_PARAMFLOAT_H_SEEN */
/*
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 :