summaryrefslogtreecommitdiffstats
path: root/src/sp-title.cpp
blob: 522901eaffdfd750097de4c7d12870a6bed9dfdf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/*
 * SVG <title> implementation
 *
 * Authors:
 *   Jeff Schiller <codedread@gmail.com>
 *
 * Copyright (C) 2008 Jeff Schiller
 *
 * Released under GNU GPL, read the file 'COPYING' for more information
 */

#ifdef HAVE_CONFIG_H
# include "config.h"
#endif

#include "sp-title.h"
#include "xml/repr.h"

G_DEFINE_TYPE(SPTitle, sp_title, SP_TYPE_OBJECT);

static void
sp_title_class_init(SPTitleClass *klass)
{
}

CTitle::CTitle(SPTitle* title) : CObject(title) {
	this->sptitle = title;
}

CTitle::~CTitle() {
}

static void
sp_title_init(SPTitle *desc)
{
	desc->ctitle = new CTitle(desc);

	delete desc->cobject;
	desc->cobject = desc->ctitle;
}

Inkscape::XML::Node* CTitle::write(Inkscape::XML::Document *xml_doc, Inkscape::XML::Node *repr, guint flags) {
	SPTitle* object = this->sptitle;

    if (!repr) {
        repr = object->getRepr()->duplicate(xml_doc);
    }

    CObject::write(xml_doc, repr, flags);

    return repr;
}