Menu

[1ea1fc]: / ornamentedobj.cpp  Maximize  Restore  History

Download this file

325 lines (273 with data), 7.3 kB

  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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
#include <QDebug>
#include "branchitem.h"
#include "ornamentedobj.h"
#include "linkablemapobj.h"
#include "vymmodel.h"
extern bool debug;
/////////////////////////////////////////////////////////////////
// OrnamentedObj
/////////////////////////////////////////////////////////////////
OrnamentedObj::OrnamentedObj(QGraphicsItem *parent,TreeItem *ti) :LinkableMapObj(parent,ti)
{
//qDebug()<< "Const OrnamentedObj (s,ti) ti="<<ti;
treeItem=ti;
init ();
}
OrnamentedObj::~OrnamentedObj()
{
delete heading;
delete systemFlags;
delete standardFlags;
delete frame;
}
void OrnamentedObj::init ()
{
heading = new HeadingObj(this);
heading->setTreeItem (treeItem);
heading->move (absPos.x(), absPos.y());
systemFlags=new FlagRowObj(this);
standardFlags=new FlagRowObj(this);
frame = new FrameObj (this);
frame->setTreeItem (treeItem);
angle=0;
}
void OrnamentedObj::copy (OrnamentedObj* other)
{
LinkableMapObj::copy(other);
heading->copy(other->heading);
setColor (other->heading->getColor());
systemFlags->copy (other->systemFlags);
standardFlags->copy (other->standardFlags);
ornamentsBBox=other->ornamentsBBox;
}
void OrnamentedObj::setLinkColor()
{
VymModel *model=treeItem->getModel();
if (!model) return;
if (model->getMapLinkColorHint()==HeadingColor)
LinkableMapObj::setLinkColor (heading->getColor());
else
LinkableMapObj::setLinkColor (model->getMapDefLinkColor());
}
void OrnamentedObj::setColor (QColor col)
{
heading->setColor(col);
setLinkColor();
}
QColor OrnamentedObj::getColor ()
{
return heading->getColor();
}
QRectF OrnamentedObj::getBBoxHeading()
{
return heading->getBBox();
}
void OrnamentedObj::setRotation (const qreal &a)
{
MapObj::setRotation (a);
heading->setRotation(a); // FIXME-2 duplicated code...
}
FrameObj* OrnamentedObj::getFrame()
{
return frame;
}
FrameObj::FrameType OrnamentedObj::getFrameType()
{
return frame->getFrameType();
}
QString OrnamentedObj::getFrameTypeName()
{
return frame->getFrameTypeName();
}
void OrnamentedObj::setFrameType(const FrameObj::FrameType &t)
{
frame->setFrameType(t);
if (t == FrameObj::NoFrame)
{
linkpos=LinkableMapObj::Bottom;
useBottomline=true;
} else
{
linkpos=LinkableMapObj::Middle;
useBottomline=false;
}
updateVisibility(); // Update bottomline
calcBBoxSize();
positionBBox();
requestReposition();
}
void OrnamentedObj::setFrameType(const QString &s)
{
setFrameType(frame->getFrameType (s));
}
void OrnamentedObj::setFramePadding (const int &i)
{
frame->setPadding (i);
calcBBoxSize();
positionBBox();
requestReposition();
}
int OrnamentedObj::getFramePadding ()
{
return frame->getPadding();
}
void OrnamentedObj::setFrameBorderWidth (const int &i)
{
frame->setBorderWidth(i);
calcBBoxSize();
positionBBox();
requestReposition();
}
int OrnamentedObj::getFrameBorderWidth()
{
return frame->getBorderWidth();
}
void OrnamentedObj::setFramePenColor(QColor col)
{
frame->setPenColor (col);
}
QColor OrnamentedObj::getFramePenColor()
{
return frame->getPenColor ();
}
void OrnamentedObj::setFrameBrushColor(QColor col)
{
frame->setBrushColor (col);
}
QColor OrnamentedObj::getFrameBrushColor()
{
return frame->getBrushColor ();
}
void OrnamentedObj::setFrameIncludeChildren(bool b)
{
calcBBoxSizeWithChildren();
frame->setFrameIncludeChildren (b);
requestReposition();
}
bool OrnamentedObj::getFrameIncludeChildren()
{
return frame->getFrameIncludeChildren ();
}
void OrnamentedObj::positionContents() //FIXME-3 called multiple times for each object after moving an image with mouse
{
//positionContents FIXME-2 need to consider frame in calcBBox and positionContents
double x=absPos.x();
double y=absPos.y();
double dp=frame->getPadding();
double dp2=dp/2;
double ox=leftPad + dp;
double oy=topPad + dp;
//if (debug) qDebug()<< "OO: positionContents "<<treeItem->getHeading()<<" this="<<this;// dp="<<dp<<" absPos=="<<absPos<<" bboxTotal="<<bboxTotal<<" ox="<<ox<<" oy="<<oy;
// vertical align heading to bottom
heading->setZValue (dZ_TEXT);
heading->setTransformOriginPoint (
QPointF ( ox + systemFlags->getBBox().width(),
oy + ornamentsBBox.height() - heading->getHeight()
) );
heading->move (ox + x + systemFlags->getBBox().width(),
oy + y + ornamentsBBox.height() - heading->getHeight()
);
// Flags
systemFlags-> move (ox +x , oy + y );
systemFlags->setZValue (dZ_ICON);
standardFlags->move (ox +x + heading->getWidth() + systemFlags->getBBox().width() , oy + y );
standardFlags->setZValue (dZ_ICON);
ornamentsBBox.moveTopLeft ( QPointF (ox+x,oy+y));
clickPoly=QPolygonF (ornamentsBBox);
// Update bboxTotal coordinate (size set already)
if (orientation==LinkableMapObj::LeftOfCenter )
bboxTotal.setRect (
bbox.x()+(bbox.width() - bboxTotal.width()) ,
bbox.y()+bbox.height()/2 - bboxTotal.height()/2,
bboxTotal.width(),
bboxTotal.height());
else
bboxTotal.setRect (
bbox.x(),
bbox.y()+bbox.height()/2 - bboxTotal.height()/2,
bboxTotal.width(),
bboxTotal.height());
// Update frame
frame->setZValue (dZ_FRAME_LOW);
if (treeItem &&
treeItem->isBranchLikeType() &&
((BranchItem*)treeItem)->getFrameIncludeChildren()
)
frame->setRect( QRectF(
bboxTotal.x()+dp2,
bboxTotal.y()+dp2,
bboxTotal.width()-dp,
bboxTotal.height()-dp));
else
frame->setRect( QRectF(
bbox.x()+dp2,
bbox.y()+dp2,
bbox.width()-dp,
bbox.height()-dp));
}
void OrnamentedObj::move (double x, double y)
{
MapObj::move (x,y);
positionContents();
updateLinkGeometry();
requestReposition();
}
void OrnamentedObj::move (QPointF p)
{
move (p.x(), p.y());
}
void OrnamentedObj::moveBy (double x, double y)
{
MapObj::moveBy (x,y);
frame->moveBy (x,y);
systemFlags->moveBy (x,y);
standardFlags->moveBy (x,y);
heading->moveBy (x,y);
updateLinkGeometry();
requestReposition();
}
void OrnamentedObj::moveBy (QPointF p)
{
moveBy (p.x(), p.y());
}
void OrnamentedObj::move2RelPos(double x, double y)
{
setRelPos (QPointF(x,y));
if (parObj)
{
QPointF p=parObj->getChildPos();
move (p.x()+x, p.y() +y);
}
}
void OrnamentedObj::move2RelPos(QPointF p)
{
move2RelPos (p.x(),p.y());
}
void OrnamentedObj::activateStandardFlag(Flag *flag)
{
standardFlags->activate(flag);
calcBBoxSize();
positionBBox();
move (absPos.x(), absPos.y() );
forceReposition();
}
void OrnamentedObj::deactivateStandardFlag(const QString &name)
{
standardFlags->deactivate(name);
calcBBoxSize();
positionBBox();
move (absPos.x(),absPos.y() );
forceReposition();
}
QString OrnamentedObj::getSystemFlagName(const QPointF &p)
{
return systemFlags->getFlagName(p);
}
QRectF OrnamentedObj::getBBoxFlag (const QString &s)
{
FlagObj *fo=systemFlags->findFlag (s);
if (fo) return fo->getBBox();
fo=standardFlags->findFlag (s);
if (fo) return fo->getBBox();
return QRectF();
}
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.