Menu

[efa3d9]: / src / image-container.cpp  Maximize  Restore  History

Download this file

324 lines (272 with data), 9.0 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
#include "image-container.h"
#include <QDebug>
#include <QIcon>
#include "branch-container.h"
#include "branchitem.h"
#include "file.h"
#include "imageitem.h"
#include "link-container.h"
#include "mapdesign.h"
extern QDir cacheDir;
extern ulong imageLastID;
/////////////////////////////////////////////////////////////////
// ImageContainer
/////////////////////////////////////////////////////////////////
ImageContainer::ImageContainer()
{
//qDebug() << "Const ImageContainer () this=" << this;
init();
}
ImageContainer::~ImageContainer()
{
//qDebug() << "Destr ImageContainer this=" << this << " imageType = " << imageType ;
if (imageItem) imageItem->unlinkImageContainer();
}
void ImageContainer::copy(ImageContainer *other)
{
prepareGeometryChange();
if (imageType != ImageContainer::Undefined)
qWarning() << "ImageContainer::copy into existing image of type "
<< imageType;
switch (other->imageType) {
case ImageContainer::SVG:
case ImageContainer::ClonedSVG:
if (!other->svgCachePath.isEmpty()) {
// Loading here will also set imageType
load(other->svgCachePath, true);
}
else
qWarning() << "ImgObj::copy svg: no svgCachePath available.";
svgItem->setParentItem(this);
setRect(other->rect());
break;
case ImageContainer::Pixmap: {
pixmapItem = new QGraphicsPixmapItem();
pixmapItem->setPixmap(other->pixmapItem->pixmap());
pixmapItem->setParentItem(this);
QRectF r = other->pixmapItem->boundingRect();
pixmapItem->setPos( - r.width() / 2, - r.height() /2);
setRect(other->rect());
imageType = ImageContainer::Pixmap;
}
break;
default:
qWarning() << "ImgObj::copy other->imageType undefined";
return;
break;
}
setScale(other->scaleFactorInt);
}
void ImageContainer::init()
{
containerType = Image;
imageItem = nullptr;
selectionContainer = nullptr;
// Assign ID
imageLastID++;
imageID = imageLastID;
imageType = ImageContainer::Undefined;
layoutInt = Container::Horizontal;
svgItem = nullptr;
pixmapItem = nullptr;
scaleFactorInt = 1;
overlay = false; // Inherits FrameContainer, which has overlay == true
// FIXME-3 for testing we do some coloring and additional drawing
//setPen(QPen(Qt::white));
}
void ImageContainer::setWidth(qreal w)
{
if (boundingRect().width() == 0)
return;
setScale(w / boundingRect().width());
}
void ImageContainer::setScale(qreal f)
{
scaleFactorInt = f;
QGraphicsItem::setScale(f);
}
qreal ImageContainer::scale() { return scaleFactorInt; }
void ImageContainer::select()
{
SelectableContainer::select(
this,
imageItem->mapDesign()->selectionPen(),
imageItem->mapDesign()->selectionBrush());
float d = 10;
QRectF r = rect();
selectionContainer->setRect(QRectF(r.x() - d, r.y() - d, r.width() + 2 * d, r.height() + 2 * d));
}
bool ImageContainer::load(const QString &fn, bool createClone)
{
// createClone == true, if called via copy()
if (imageType != ImageContainer::Undefined) {
qWarning() << "ImageContainer::load (" << fn
<< ") into existing image of type " << imageType;
return false;
}
if (fn.toLower().endsWith(".svg")) {
svgItem = new QGraphicsSvgItem(fn, this);
if (createClone) {
imageType = ImageContainer::ClonedSVG;
svgCachePath = fn;
} else {
imageType = ImageContainer::SVG;
// Copy original file to cache
QFile svgFile(fn);
QString newPath = cacheDir.path() + "/" + QString().number(imageID) +
"-" + basename(fn);
if (!svgFile.copy(newPath)) {
qWarning() << "ImageContainer::load (" << fn
<< ") could not be copied to " << newPath;
}
svgCachePath = newPath;
} // No clone created
QRectF r = svgItem->boundingRect();
// Center svg
svgItem->setPos( -r.width() / 2, - r.height() / 2);
setRect(mapFromItem(svgItem, svgItem->boundingRect()).boundingRect());
} else {
// Not svg
QPixmap pm;
if (!pm.load(fn)) return false;
if (pixmapItem)
qWarning() << "ImageContainer::load " << fn
<< "pixmapIteam already exists";
imageType = ImageContainer::Pixmap;
pixmapItem = new QGraphicsPixmapItem(this);
pixmapItem->setPixmap(pm);
// Center svg
QRectF r = pixmapItem->boundingRect();
pixmapItem->setPos( -r.width() / 2, - r.height() / 2);
setRect(mapFromItem(pixmapItem, pixmapItem->boundingRect()).boundingRect());
}
return true;
}
bool ImageContainer::save(const QString &fn)
{
switch (imageType) {
case ImageContainer::SVG:
case ImageContainer::ClonedSVG:
if (svgItem) {
QFile svgFile(svgCachePath);
if (!QFile(fn).exists() && !svgFile.copy(fn)) {
qWarning() << "ImageContainer::save failed to copy " << svgCachePath
<< " to " << fn;
return false;
}
}
return true;
break;
case ImageContainer::Pixmap: {
bool b = pixmapItem->pixmap().save(fn, "PNG", 100);
return b;
}
break;
default:
break;
}
return false;
}
QString ImageContainer::getExtension()
{
QString s;
switch (imageType) {
case ImageContainer::SVG:
case ImageContainer::ClonedSVG:
s = ".svg";
break;
case ImageContainer::Pixmap:
s = ".png";
break;
default:
break;
}
return s;
}
ImageContainer::ImageType ImageContainer::getType() { return imageType; }
QIcon ImageContainer::getIcon()
{
switch (imageType) {
case ImageContainer::SVG:
case ImageContainer::ClonedSVG:
return QPixmap(svgCachePath);
break;
case ImageContainer::Pixmap:
return QIcon(pixmapItem->pixmap());
break;
default:
break;
}
return QIcon();
}
void ImageContainer::setImageItem(ImageItem* ii) {
imageItem = ii;
}
ImageItem* ImageContainer::getImageItem() { return imageItem;}
void ImageContainer::linkTo(BranchContainer *pbc)
{
if (!pbc)
return;
pbc->getLinkContainer()->addLink(upLink);
}
void ImageContainer::updateUpLink()
{
/*
if (imageItem)
qDebug() << "IC::updateUpLink() ii=" << imageItem->headingText() << " vis=" << isVisible() << " par_item=" << parentItem();
else
qDebug() << "IC::updateUpLink() No ii.";
*/
// Sets geometry
// Called from MapEditor e.g. during animation or
// from VymModel, when colors change
if (!isVisible())
return;
QPointF upLinkSelf_sp = mapToScene(center()); // upLinkPos(); // FIXME-4 use nearest corner?
QPointF downLink_sp = mapToScene(center()); // downLinkPos(); // Could be needed for bottomline later.
BranchContainer *pbc = nullptr;
if (imageItem)
pbc = imageItem->parentBranch()->getBranchContainer();
if (pbc) {
QPointF upLinkParent_sp;
upLinkParent_sp = pbc->downLinkPos();
QGraphicsItem *upLinkParent = upLink->parentItem();
if (!upLinkParent)
return;
upLink->setUpLinkPosParent(
upLinkParent->sceneTransform().inverted().map(upLinkParent_sp));
upLink->setUpLinkPosSelf(
upLinkParent->sceneTransform().inverted().map(upLinkSelf_sp));
upLink->setDownLinkPos(
upLinkParent->sceneTransform().inverted().map(downLink_sp));
}
else {
// FIXME-3 flags have no upLink... qWarning() << "ImageContainer::updateUpLink - No parent branch container ?!";
return;
}
// Color of link (depends on current parent)
BranchItem *pb = imageItem->parentBranch();
if (pb) {
if (upLink->linkColorHint() == LinkObj::HeadingColor)
upLink->setLinkColor(pb->headingColor());
else
upLink->setLinkColor(pb->mapDesign()->defaultLinkColor());
}
// Finally update geometry
upLink->updateLinkGeometry();
}
void ImageContainer::updateVisibility()
{
//qDebug() << "IC::updateVisibility";
if (imageItem->hideLinkUnselected()) {
if (!SelectableContainer::isSelected())
upLink->setVisible(false);
else
upLink->setVisible(true);
} else
upLink->setVisible(true);
}
void ImageContainer::reposition()
{
updateUpLink();
}
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.