diff options
| author | Johan B. C. Engelen <jbc.engelen@swissonline.ch> | 2006-09-18 23:44:37 +0000 |
|---|---|---|
| committer | johanengelen <johanengelen@users.sourceforge.net> | 2006-09-18 23:44:37 +0000 |
| commit | 7bfc1abfb0a9ad37b62f8230331ab76597e99d77 (patch) | |
| tree | 2502fafcdf518ecfd54d121482316f5a7ac4488e /src/extension/paramenum.h | |
| parent | deleted some incorrect comment of mine. (diff) | |
| download | inkscape-7bfc1abfb0a9ad37b62f8230331ab76597e99d77.tar.gz inkscape-7bfc1abfb0a9ad37b62f8230331ab76597e99d77.zip | |
Added support for enumerated types in the UI of Extensions! (all eyes on requester Spike to submit an example extension ! :P)
(bzr r1713)
Diffstat (limited to 'src/extension/paramenum.h')
| -rw-r--r-- | src/extension/paramenum.h | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/src/extension/paramenum.h b/src/extension/paramenum.h new file mode 100644 index 000000000..3c21c4065 --- /dev/null +++ b/src/extension/paramenum.h @@ -0,0 +1,67 @@ +#ifndef __INK_EXTENSION_PARAMENUM_H__
+#define __INK_EXTENSION_PARAMENUM_H__
+
+/** \file
+ * Enumeration parameter for extensions.
+ */
+
+/*
+ * Author:
+ * Johan Engelen <johan@shouraizou.nl>
+ *
+ * Copyright (C) 2006 Author
+ *
+ * Released under GNU GPL, read the file 'COPYING' for more information
+ */
+
+#include <gtkmm/widget.h>
+
+#include "xml/document.h"
+#include "extension-forward.h"
+
+#include "parameter.h"
+
+namespace Inkscape {
+namespace Extension {
+
+
+
+// \brief A class to represent a notebookparameter of an extension
+class ParamComboBox : public Parameter {
+private:
+ /** \brief Internal value. This should point to a string that has
+ been allocated in memory. And should be free'd.
+ It is the value of the current selected string */
+ gchar * _value;
+
+ GSList * choices; /**< A table to store the choice strings */
+
+public:
+ ParamComboBox(const gchar * name, const gchar * guitext, const gchar * desc, const Parameter::_scope_t scope, Inkscape::Extension::Extension * ext, Inkscape::XML::Node * xml);
+ ~ParamComboBox(void);
+ Gtk::Widget * get_widget(SPDocument * doc, Inkscape::XML::Node * node);
+ Glib::ustring * string (void);
+
+ const gchar * get (const SPDocument * doc, const Inkscape::XML::Node * node) { return _value; }
+ const gchar * set (const gchar * in, SPDocument * doc, Inkscape::XML::Node * node);
+}; /* class ParamComboBox */
+
+
+
+
+
+} /* namespace Extension */
+} /* namespace Inkscape */
+
+#endif /* __INK_EXTENSION_PARAMENUM_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 :
|
