~danieljabailey/inkscape/arc_node_editor

« back to all changes in this revision

Viewing changes to src/sp-style-elem.h

  • Committer: scislac
  • Date: 2009-08-12 07:57:52 UTC
  • Revision ID: scislac@users.sourceforge.net-20090812075752-3zt99jgeqr3bm16j
much better quality multi-size windows icon, thanks ChrisMorgan

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
#include "sp-object.h"
5
5
#include "media.h"
6
6
 
 
7
#define SP_TYPE_STYLE_ELEM (sp_style_elem_get_type())
 
8
#define SP_STYLE_ELEM(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), SP_TYPE_STYLE_ELEM, SPStyleElem))
 
9
#define SP_STYLE_ELEM_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), SP_TYPE_STYLE_ELEM, SPStyleElemClass))
 
10
#define SP_IS_STYLE_ELEM(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), SP_TYPE_STYLE_ELEM))
 
11
#define SP_IS_STYLE_ELEM_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), SP_TYPE_STYLE_ELEM))
 
12
 
7
13
class SPStyleElem : public SPObject {
8
14
public:
9
 
        SPStyleElem();
10
 
        virtual ~SPStyleElem();
11
 
 
12
15
    Media media;
13
16
    bool is_css;
14
 
 
15
 
        virtual void build(SPDocument* doc, Inkscape::XML::Node* repr);
16
 
        virtual void set(unsigned int key, char const* value);
17
 
        virtual void read_content();
18
 
        virtual Inkscape::XML::Node* write(Inkscape::XML::Document* doc, Inkscape::XML::Node* repr, unsigned int flags);
19
 
};
 
17
};
 
18
 
 
19
class SPStyleElemClass : public SPObjectClass {
 
20
};
 
21
 
 
22
GType sp_style_elem_get_type();
20
23
 
21
24
 
22
25
#endif /* !INKSCAPE_SP_STYLE_ELEM_H */
30
33
  fill-column:99
31
34
  End:
32
35
*/
33
 
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :
 
36
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :