diff options
| author | Alex Valavanis <valavanisalex@gmail.com> | 2013-01-23 12:22:14 +0000 |
|---|---|---|
| committer | Alex Valavanis <valavanisalex@gmail.com> | 2013-01-23 12:22:14 +0000 |
| commit | 4569747878f930a0992a2b089460f3f8cdcb39c5 (patch) | |
| tree | f6de8c74dd1adc256f86a288cee479eaaca7710f /src/sp-line.h | |
| parent | minor cppcheck warning (diff) | |
| download | inkscape-4569747878f930a0992a2b089460f3f8cdcb39c5.tar.gz inkscape-4569747878f930a0992a2b089460f3f8cdcb39c5.zip | |
Clean up more GObject type definitions
(bzr r12055)
Diffstat (limited to 'src/sp-line.h')
| -rw-r--r-- | src/sp-line.h | 21 |
1 files changed, 3 insertions, 18 deletions
diff --git a/src/sp-line.h b/src/sp-line.h index 182f85a5c..836b2df67 100644 --- a/src/sp-line.h +++ b/src/sp-line.h @@ -19,7 +19,7 @@ -#define SP_TYPE_LINE (SPLine::sp_line_get_type()) +#define SP_TYPE_LINE (sp_line_get_type()) #define SP_LINE(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), SP_TYPE_LINE, SPLine)) #define SP_LINE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), SP_TYPE_LINE, SPLineClass)) #define SP_IS_LINE(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), SP_TYPE_LINE)) @@ -28,28 +28,16 @@ class SPLine; class SPLineClass; +GType sp_line_get_type(void) G_GNUC_CONST; + class SPLine : public SPShape { public: SVGLength x1; SVGLength y1; SVGLength x2; SVGLength y2; - static GType sp_line_get_type(void); private: - static void init(SPLine *line); - - static void build(SPObject * object, SPDocument * document, Inkscape::XML::Node * repr); - static void set(SPObject *object, unsigned int key, const gchar *value); - static Inkscape::XML::Node *write(SPObject *object, Inkscape::XML::Document *doc, Inkscape::XML::Node *repr, guint flags); - - static gchar *getDescription(SPItem * item); - static Geom::Affine setTransform(SPItem *item, Geom::Affine const &xform); - - static void update(SPObject *object, SPCtx *ctx, guint flags); - static void setShape(SPShape *shape); - static void convertToGuides(SPItem *item); - friend class SPLineClass; }; @@ -58,9 +46,6 @@ public: SPShapeClass parent_class; private: - static SPShapeClass *static_parent_class; - static void sp_line_class_init(SPLineClass *klass); - friend class SPLine; }; |
