-
-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathAnnotationArea.cpp
More file actions
459 lines (389 loc) · 13 KB
/
AnnotationArea.cpp
File metadata and controls
459 lines (389 loc) · 13 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
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
/*
* Copyright (C) 2018 Damir Porobic <damir.porobic@gmx.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include "AnnotationArea.h"
namespace kImageAnnotator {
AnnotationArea::AnnotationArea(
Config *config,
AbstractSettingsProvider *settingsProvider,
IDevicePixelRatioScaler *devicePixelRatioScaler,
ZoomValueProvider *zoomValueProvider,
QWidget *parent) :
QGraphicsScene(parent),
mUndoStack(new UndoStack),
mBackgroundImage(nullptr),
mCurrentItem(nullptr),
mUndoAction(nullptr),
mRedoAction(nullptr),
mConfig(config),
mKeyHelper(new KeyHelper),
mSettingsProvider(settingsProvider),
mItemModifier(new AnnotationItemModifier(zoomValueProvider)),
mPropertiesFactory(new AnnotationPropertiesFactory(config, mSettingsProvider)),
mItemFactory(new AnnotationItemFactory(mPropertiesFactory, mSettingsProvider, mConfig)),
mItems(new QList<AbstractAnnotationItem *>()),
mItemCopier(new AnnotationItemClipboard(mItemModifier)),
mDevicePixelRatioScaler(devicePixelRatioScaler),
mCanvasColor(config->canvasColor())
{
Q_ASSERT(mSettingsProvider != nullptr);
Q_ASSERT(mConfig != nullptr);
addItem(mItemModifier);
connect(mItemModifier, &AnnotationItemModifier::newCommand, mUndoStack, &UndoStack::push);
connect(mItemModifier, &AnnotationItemModifier::itemsSelected, this, &AnnotationArea::itemsSelected);
connect(mItemModifier, &AnnotationItemModifier::itemsDeselected, this, &AnnotationArea::itemsDeselected);
connect(mItemModifier, &AnnotationItemModifier::itemModified, this, &AnnotationArea::imageChanged);
connect(mUndoStack, &UndoStack::indexChanged, this, &AnnotationArea::update);
connect(mKeyHelper, &KeyHelper::deleteReleased, this, &AnnotationArea::deleteSelectedItems);
connect(mKeyHelper, &KeyHelper::escapeReleased, mItemModifier, &AnnotationItemModifier::clear);
connect(mKeyHelper, &KeyHelper::undoPressed, mUndoStack, &UndoStack::undo);
connect(mKeyHelper, &KeyHelper::redoPressed, mUndoStack, &UndoStack::redo);
connect(&mKeyListener, &KeyEventListener::keyPressed, mKeyHelper, &KeyHelper::keyPress);
connect(&mKeyListener, &KeyEventListener::keyReleased, mKeyHelper, &KeyHelper::keyRelease);
}
AnnotationArea::~AnnotationArea()
{
delete mPropertiesFactory;
delete mItemFactory;
delete mItems;
delete mKeyHelper;
delete mUndoStack;
delete mItemModifier;
delete mItemCopier;
delete mDevicePixelRatioScaler;
}
void AnnotationArea::loadImage(const QPixmap &image)
{
if (image.isNull()) {
return;
}
resetAnnotationArea();
replaceBackgroundImage(image);
imageEffectChanged(mSettingsProvider->effect());
}
void AnnotationArea::insertImageItem(const QPointF &position, const QPixmap &image)
{
auto imageItem = mItemFactory->create(position, image);
mUndoStack->push(new AddCommand(imageItem, this));
toolChanged(mSettingsProvider->toolType());
}
void AnnotationArea::replaceBackgroundImage(const QPixmap &image)
{
mBackgroundImage = QSharedPointer<QGraphicsPixmapItem>(addPixmap(image));
setSceneRect(QRect());
}
QImage AnnotationArea::image()
{
if (mBackgroundImage == nullptr) {
return QImage();
}
mItemModifier->clear();
setSceneRect(canvasRect());
auto scaleFactor = mDevicePixelRatioScaler->scaleFactor();
auto sceneRect = this->sceneRect();
auto scaledSceneSize = sceneRect.size().toSize() * scaleFactor;
auto scaledSceneRect = QRectF(sceneRect.topLeft(), scaledSceneSize);
QImage image(scaledSceneSize, QImage::Format_ARGB32_Premultiplied);
image.fill(mCanvasColor);
image.setDevicePixelRatio(scaleFactor);
QPainter painter(&image);
painter.setRenderHint(QPainter::Antialiasing);
render(&painter, QRectF(), scaledSceneRect);
setSceneRect(QRect()); // Reset scene rect
return image;
}
QAction *AnnotationArea::undoAction()
{
if(mUndoAction == nullptr) {
mUndoAction = mUndoStack->createUndoAction(this);
}
return mUndoAction;
}
QAction *AnnotationArea::redoAction()
{
if(mRedoAction == nullptr) {
mRedoAction = mUndoStack->createRedoAction(this);
}
return mRedoAction;
}
void AnnotationArea::addAnnotationItem(AbstractAnnotationItem *item)
{
mItems->prepend(item);
addItem(item);
emit imageChanged();
}
void AnnotationArea::removeAnnotationItem(AbstractAnnotationItem *item)
{
removeItem(item);
mItems->removeOne(item);
emit imageChanged();
}
void AnnotationArea::crop(const QRectF &rect)
{
auto scaledRect = mDevicePixelRatioScaler->scale(rect);
mUndoStack->push(new CropCommand(mBackgroundImage.data(), scaledRect, this));
emit imageChanged();
}
void AnnotationArea::scale(const QSize &size)
{
mUndoStack->push(new ScaleCommand(mBackgroundImage.data(), size, this));
emit imageChanged();
}
void AnnotationArea::rotate(qreal angel)
{
mUndoStack->push(new RotateCommand(mBackgroundImage.data(), angel, this));
emit imageChanged();
}
void AnnotationArea::flip(FlipDirection direction)
{
mUndoStack->push(new FlipCommand(mBackgroundImage.data(), direction));
emit imageChanged();
}
void AnnotationArea::clearSelection()
{
mItemModifier->clear();
QGraphicsScene::clearSelection();
}
void AnnotationArea::itemSettingsChanged()
{
auto selectedItems = mItemModifier->selectedItems();
if(selectedItems.count() == 1) {
auto item = selectedItems.first();
auto properties = mPropertiesFactory->create(item->toolType());
mUndoStack->push(new ChangePropertiesCommand(item, properties));
}
}
void AnnotationArea::numberToolSeedChanged(int numberToolSeed)
{
mItemFactory->setNumberToolSeed(numberToolSeed);
}
int AnnotationArea::numberToolSeed() const
{
return mItemFactory->numberToolSeed();
}
void AnnotationArea::imageEffectChanged(ImageEffects effect)
{
auto graphicsEffect = ImageEffectFactory::create(effect);
mBackgroundImage->setGraphicsEffect(graphicsEffect);
}
void AnnotationArea::setCanvasRect(const QRectF &rect)
{
mCanvasRect = rect;
}
QRectF AnnotationArea::canvasRect() const
{
if(!isCustomCanvasRect()) {
auto backgroundImageRect = mBackgroundImage->graphicsEffect()->boundingRect();
return annotationItemsBoundingRect().united(backgroundImageRect);
} else {
return mCanvasRect;
}
}
bool AnnotationArea::isCustomCanvasRect() const
{
return !mCanvasRect.isNull();
}
void AnnotationArea::setCanvasColor(const QColor &color)
{
mCanvasColor = color;
}
QColor AnnotationArea::canvasColor() const
{
return mCanvasColor;
}
void AnnotationArea::modifyCanvas(const QRectF &canvasRect, const QColor &color)
{
mUndoStack->push(new ModifyCanvasCommand(canvasRect, color, this));
emit imageChanged();
}
QRectF AnnotationArea::backgroundImageRect() const
{
return mBackgroundImage->boundingRect();
}
void AnnotationArea::update()
{
mItemModifier->updateSelection();
QGraphicsScene::update();
}
void AnnotationArea::mousePressEvent(QGraphicsSceneMouseEvent *event)
{
if (event->button() == Qt::LeftButton) {
if (mSettingsProvider->toolType() == Tools::Select) {
mItemModifier->handleMousePress(event->scenePos(), mItems, mKeyHelper->isControlPressed());
} else {
mItemModifier->clear();
addItemAtPosition(event->scenePos());
}
}
QGraphicsScene::mousePressEvent(event);
}
void AnnotationArea::mouseMoveEvent(QGraphicsSceneMouseEvent *event)
{
if (event->buttons() == Qt::LeftButton) {
if (mCurrentItem) {
addPointToCurrentItem(event->scenePos());
} else {
mItemModifier->handleMouseMove(event->scenePos(), mKeyHelper->isControlPressed());
}
}
QGraphicsScene::mouseMoveEvent(event);
}
void AnnotationArea::mouseReleaseEvent(QGraphicsSceneMouseEvent *event)
{
if (event->button() == Qt::LeftButton) {
if (mSettingsProvider->toolType() == Tools::Select) {
mItemModifier->handleMouseRelease(mItems);
}
finishDrawingItem(event->scenePos());
}
QGraphicsScene::mouseReleaseEvent(event);
}
void AnnotationArea::finishDrawingItem(const QPointF &pos)
{
if(mCurrentItem != nullptr) {
mCurrentItem->finish();
auto isSelectToolAfterDrawingEnabled = mConfig->switchToSelectToolAfterDrawingItem() && mConfig->selectItemAfterDrawing();
if (mCurrentItem->requiresSelectionAfterCreation() || isSelectToolAfterDrawingEnabled) {
mItemModifier->selectItem(mCurrentItem);
} else if (mConfig->switchToSelectToolAfterDrawingItem()) {
mSettingsProvider->activateSelectTool();
}
mCurrentItem = nullptr;
}
}
QRectF AnnotationArea::annotationItemsBoundingRect() const
{
QRectF boundingRect;
for(auto item : *mItems) {
boundingRect = boundingRect.united(item->boundingRect());
}
return boundingRect;
}
void AnnotationArea::mouseDoubleClickEvent(QGraphicsSceneMouseEvent *event)
{
if (event->button() == Qt::LeftButton && mSettingsProvider->toolType() == Tools::Select) {
mItemModifier->handleMouseDoubleClick(event->scenePos(), mItems);
}
}
void AnnotationArea::contextMenuEvent(QGraphicsSceneContextMenuEvent *event)
{
finishDrawingItem(event->scenePos());
mItemModifier->handleSelectionAt(event->scenePos(), mItems, mKeyHelper->isControlPressed());
auto selectedItems = mItemModifier->selectedItems();
AnnotationContextMenu contextMenu;
auto isMenuOverItem = !selectedItems.isEmpty();
contextMenu.setOverItem(isMenuOverItem);
contextMenu.setPastEnabled(!mItemCopier->isEmpty());
contextMenu.setEditVisible(selectedEditableItem() != nullptr);
AnnotationItemArranger itemArranger(selectedItems, mItems);
connect(&itemArranger, &AnnotationItemArranger::newCommand, mUndoStack, &UndoStack::push);
connect(&contextMenu, &AnnotationContextMenu::bringToFront, &itemArranger, &AnnotationItemArranger::bringToFront);
connect(&contextMenu, &AnnotationContextMenu::bringForward, &itemArranger, &AnnotationItemArranger::bringForward);
connect(&contextMenu, &AnnotationContextMenu::sendBackward, &itemArranger, &AnnotationItemArranger::sendBackward);
connect(&contextMenu, &AnnotationContextMenu::sendToBack, &itemArranger, &AnnotationItemArranger::sendToBack);
connect(&contextMenu, &AnnotationContextMenu::copy, mItemCopier, &AnnotationItemClipboard::copyItems);
connect(&contextMenu, &AnnotationContextMenu::paste, this, &AnnotationArea::pasteCopiedItems);
connect(&contextMenu, &AnnotationContextMenu::erase, this, &AnnotationArea::deleteSelectedItems);
connect(&contextMenu, &AnnotationContextMenu::edit, this, &AnnotationArea::enableEditing);
contextMenu.exec(event->screenPos());
}
void AnnotationArea::addItemAtPosition(const QPointF &position)
{
mCurrentItem = mItemFactory->create(position);
mUndoStack->push(new AddCommand(mCurrentItem, this));
}
void AnnotationArea::addPointToCurrentItem(const QPointF &position)
{
mCurrentItem->addPoint(position, mKeyHelper->isControlPressed());
}
void AnnotationArea::toolChanged(Tools toolType)
{
auto isSelectTool = toolType == Tools::Select;
for (auto item : *mItems) {
if (isSelectTool) {
item->setCursor(CursorHelper::movableCursor());
} else {
item->unsetCursor();
}
}
if (!isSelectTool) {
mItemModifier->clear();
}
}
void AnnotationArea::resetAnnotationArea()
{
removeAllItems();
mItemModifier->clear();
mItemCopier->clear();
mUndoStack->clear();
mItemFactory->reset();
mKeyHelper->reset();
}
void AnnotationArea::removeAllItems()
{
for (auto item : *mItems) {
removeAnnotationItem(item);
}
}
void AnnotationArea::deleteSelectedItems()
{
auto selectedItems = mItemModifier->selectedItems();
mItemModifier->clear();
mUndoStack->push(new DeleteCommand(selectedItems, this));
if (mSettingsProvider->toolType() == Tools::Select) {
mSettingsProvider->activateSelectTool();
}
}
void AnnotationArea::pasteCopiedItems(const QPointF &position)
{
auto copiedItems = mItemCopier->copiedItemsWithOffset();
mUndoStack->push(new PasteCommand(copiedItems, position, mItemFactory, this));
}
void AnnotationArea::enableEditing()
{
auto editableItem = selectedEditableItem();
if(editableItem != nullptr) {
mItemModifier->clear();
editableItem->enableEditing();
itemsDeselected();
}
}
EditableItem* AnnotationArea::selectedEditableItem() const
{
auto selectedItems = mItemModifier->selectedItems();
return selectedItems.length() != 1 ? nullptr : dynamic_cast<EditableItem *>(selectedItems[0]);
}
void AnnotationArea::itemsSelected(const QList<AbstractAnnotationItem *> &items) const
{
if(items.count() != 1) {
mSettingsProvider->activateSelectTool();
return;
}
auto item = items.first();
mSettingsProvider->editItem(item);
}
void AnnotationArea::itemsDeselected()
{
mSettingsProvider->activateSelectTool();
}
void AnnotationArea::dragMoveEvent(QGraphicsSceneDragDropEvent *event)
{
Q_UNUSED(event)
// Overriding default dragMoveEvent in order to accept drops without items under them
}
} // namespace kImageAnnotator