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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
/*
For general Scribus (>=1.3.2) copyright and licensing information please refer
to the COPYING file provided with the program. Following this notice may exist
a copyright and/or license notice that predates the release of Scribus 1.3.2
for which a new license (GPL+exception) is in place.
*/
#include "cmdvar.h"
#include "scribusstructs.h"
#include "scribusdoc.h"
#include "scribus.h"
#include <QList>
// This file contains some basic methods for testing purposes,
// providing access to the docParagraphStyles member of the current
// ScribusDoc. It's a dirty hack that won't stay around.
//
// This will probably need to be replaced with a fake mapping class, since the
// styles are actually stored in a rather clumsy QValueList.
using namespace boost::python;
ParagraphStyle & getStyleRef(const QString & styleName)
{
QList<ParagraphStyle>::iterator it(ScCore->primaryMainWindow()->doc->docParagraphStyles.begin());
QList<ParagraphStyle>::iterator itEnd(ScCore->primaryMainWindow()->doc->docParagraphStyles.end());
for ( ; it != itEnd; ++it)
{
if ((*it).Vname == styleName)
return *it;
}
throw "Style not found";
}
ParagraphStyle & getStyleRefi(int index)
{
return ScCore->primaryMainWindow()->doc->docParagraphStyles[index];
}
ParagraphStyle getStyleVal(const QString & styleName)
{
return getStyleRef(styleName);
}
ParagraphStyle getStyleVali(int index)
{
return getStyleRefi(index);
}
void addStyle(const ParagraphStyle & style)
{
QList<ParagraphStyle>::iterator it(ScCore->primaryMainWindow()->doc->docParagraphStyles.begin());
QList<ParagraphStyle>::iterator itEnd(ScCore->primaryMainWindow()->doc->docParagraphStyles.end());
for ( ; it != itEnd; ++it)
{
if ((*it).Vname == style.Vname)
throw "Style of same name already exists";
}
ScCore->primaryMainWindow()->doc->docParagraphStyles.append(style);
}
// This returns a COPY of the paragraph styles; modifications to this list do
// NOT affect the real paragraph style list. That'll have to happen much later,
// probably with a "fake mapping" class wrapper around the docParagraphStyles
// list, since we don't want Python users seeing the int-indexed list.
dict getStylesVal()
{
dict d;
QList<ParagraphStyle>::iterator it(ScCore->primaryMainWindow()->doc->docParagraphStyles.begin());
QList<ParagraphStyle>::iterator itEnd(ScCore->primaryMainWindow()->doc->docParagraphStyles.end());
for ( ; it != itEnd; ++it)
d[(*it).Vname] = *it;
return d;
}
dict getStylesRef()
{
dict d;
QList<ParagraphStyle>::iterator it(ScCore->primaryMainWindow()->doc->docParagraphStyles.begin());
QList<ParagraphStyle>::iterator itEnd(ScCore->primaryMainWindow()->doc->docParagraphStyles.end());
for ( ; it != itEnd; ++it)
d[(*it).Vname] = boost::ref(*it);
return d;
}
list getStyleNames()
{
list l;
QList<ParagraphStyle>::iterator it(ScCore->primaryMainWindow()->doc->docParagraphStyles.begin());
QList<ParagraphStyle>::iterator itEnd(ScCore->primaryMainWindow()->doc->docParagraphStyles.end());
for ( ; it != itEnd; ++it)
l.append((*it).Vname);
return l;
}
void nothing() { }
void export_styles()
{
def("getStyleRef", getStyleRef, return_internal_reference<>());
def("getStyleVal", getStyleVal);
def("getStyleRefi", getStyleRefi, return_internal_reference<>());
def("getStyleVali", getStyleVali);
def("addStyle", addStyle);
def("getStylesVal", getStylesVal);
def("getStylesRef", getStylesRef);
def("getStyleNames", getStyleNames);
}
|