CuteLogger
Fast and simple logging solution for Qt based applications
rectangleselector.h
1/*
2 * Copyright (c) 2025 Meltytech, LLC
3 *
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
16 */
17
18#ifndef RECTANGLESELECTOR_H
19#define RECTANGLESELECTOR_H
20
21#include <QPoint>
22#include <QRect>
23#include <QWidget>
24
25class RectangleSelector : public QWidget
26{
27 Q_OBJECT
28
29public:
30 explicit RectangleSelector(QWidget *parent = nullptr);
31 ~RectangleSelector();
32
33signals:
34 void rectangleSelected(const QRect &rect);
35 void canceled();
36
37protected:
38 void paintEvent(QPaintEvent *event) override;
39 void mousePressEvent(QMouseEvent *event) override;
40 void mouseMoveEvent(QMouseEvent *event) override;
41 void mouseReleaseEvent(QMouseEvent *event) override;
42 void keyPressEvent(QKeyEvent *event) override;
43
44private:
45 QRect getSelectionRect() const;
46
47 QPoint m_startPoint;
48 QPoint m_currentPoint;
49 bool m_selecting;
50};
51
52#endif // RECTANGLESELECTOR_H