Krita Source Code Documentation
Loading...
Searching...
No Matches
KoShapeRubberSelectStrategy_p.h
Go to the documentation of this file.
1/* This file is part of the KDE project
2
3 SPDX-FileCopyrightText: 2006, 2009 Thomas Zander <zander@kde.org>
4
5 SPDX-License-Identifier: LGPL-2.0-or-later
6*/
7#ifndef KoShapeRubberSelectStrategyPrivate_H
8#define KoShapeRubberSelectStrategyPrivate_H
9
11#include "KoSnapGuide.h"
12
14{
15public:
18 snapGuide(new KoSnapGuide(owner->canvas()))
19 {
20 }
21
26
32 QRectF selectedRect() const {
33 return selectRect.normalized();
34 }
35
36 QRectF selectRect;
37 QPointF lastPos;
39};
40
41#endif