blob: 9b91bcf6affa4a86c85b9abd17bbf9b195efd9c0 (
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
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
|
#include "kivio_stencil.h"
#include "KIvioStencilIface.h"
KivioStencilIface::KivioStencilIface( KivioStencil *s ) :
DCOPObject(), stencil(s)
{
}
DCOPRef KivioStencilIface::ref()
{
return DCOPRef(this);
}
// DCOPRef duplicate();
bool KivioStencilIface::connected()
{
return false;
}
void KivioStencilIface::setConnected(bool /*c*/)
{
}
double KivioStencilIface::x()
{
return 0.0;
}
void KivioStencilIface::setX( double /*f*/ )
{
}
double KivioStencilIface::y()
{
return 0.0;
}
void KivioStencilIface::setY( double /*f*/ )
{
}
double KivioStencilIface::w()
{
return 0.0;
}
void KivioStencilIface::setW( double /*f*/ )
{
}
double KivioStencilIface::h()
{
return 0.0;
}
void KivioStencilIface::setH( double /*f*/ )
{
}
QRect KivioStencilIface::rect()
{
return QRect();
}
void KivioStencilIface::setPosition( double /*f1*/, double /*f2*/ )
{
}
void KivioStencilIface::setDimensions( double /*f1*/, double /*f2*/ )
{
}
QColor KivioStencilIface::fgColor()
{
return QColor();
}
void KivioStencilIface::setFGColor( QColor )
{
}
void KivioStencilIface::setBGColor( QColor )
{
}
QColor KivioStencilIface::bgColor()
{
return QColor();
}
void KivioStencilIface::setLineWidth( double )
{
}
double KivioStencilIface::lineWidth()
{
return 0.0;
}
// FOnt stuff
QColor KivioStencilIface::textColor()
{
return QColor();
}
void KivioStencilIface::setTextColor( QColor )
{
}
QFont KivioStencilIface::textFont()
{
return QFont();
}
void KivioStencilIface::setTextFont( const QFont & )
{
}
int KivioStencilIface::hTextAlign()
{
return 0;
}
int KivioStencilIface::vTextAlign()
{
return 0;
}
void KivioStencilIface::setHTextAlign(int)
{
}
void KivioStencilIface::setVTextAlign(int)
{
}
void KivioStencilIface::setText( const QString & )
{
}
QString KivioStencilIface::text()
{
return QString::null;
}
bool KivioStencilIface::isSelected()
{
return false;
}
void KivioStencilIface::select()
{
}
void KivioStencilIface::unselect()
{
}
void KivioStencilIface::subSelect( const double &, const double & )
{
}
|