diff options
| author | MenTaLguY <mental@rydia.net> | 2006-01-16 02:36:01 +0000 |
|---|---|---|
| committer | mental <mental@users.sourceforge.net> | 2006-01-16 02:36:01 +0000 |
| commit | 179fa413b047bede6e32109e2ce82437c5fb8d34 (patch) | |
| tree | a5a6ac2c1708bd02288fbd8edb2ff500ff2e0916 /src/sp-style-elem.h | |
| download | inkscape-179fa413b047bede6e32109e2ce82437c5fb8d34.tar.gz inkscape-179fa413b047bede6e32109e2ce82437c5fb8d34.zip | |
moving trunk for module inkscape
(bzr r1)
Diffstat (limited to 'src/sp-style-elem.h')
| -rw-r--r-- | src/sp-style-elem.h | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/src/sp-style-elem.h b/src/sp-style-elem.h new file mode 100644 index 000000000..f63fa1eb9 --- /dev/null +++ b/src/sp-style-elem.h @@ -0,0 +1,36 @@ +#ifndef INKSCAPE_SP_STYLE_ELEM_H +#define INKSCAPE_SP_STYLE_ELEM_H + +#include "sp-object.h" +#include "media.h" + +#define SP_TYPE_STYLE_ELEM (sp_style_elem_get_type()) +#define SP_STYLE_ELEM(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), SP_TYPE_STYLE_ELEM, SPStyleElem)) +#define SP_STYLE_ELEM_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), SP_TYPE_STYLE_ELEM, SPStyleElemClass)) +#define SP_IS_STYLE_ELEM(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), SP_TYPE_STYLE_ELEM)) +#define SP_IS_STYLE_ELEM_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), SP_TYPE_STYLE_ELEM)) + +class SPStyleElem : public SPObject { +public: + Media media; + bool is_css; +}; + +class SPStyleElemClass : public SPObjectClass { +}; + +GType sp_style_elem_get_type(); + + +#endif /* !INKSCAPE_SP_STYLE_ELEM_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 : |
