summaryrefslogtreecommitdiffstats
blob: 56a575f2c46df6632a4171b89d5c74eabe10cb15 (plain)
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
/*
 * Copyright (c) 2014-2016 Isode Limited.
 * All rights reserved.
 * See the COPYING file for more information.
 */

#pragma once

#include <QSize>
#include <QWidget>

namespace Swift {

    class QtGridSelectionDialog : public QWidget {
            Q_OBJECT

            Q_PROPERTY(QSize currentGridSize READ getCurrentGridSize WRITE setCurrentGridSize NOTIFY currentGridSizeChanged)
            Q_PROPERTY(QSize minGridSize READ getMinGridSize WRITE setMinGridSize NOTIFY minGridSizeChanged)
            Q_PROPERTY(QSize maxGridSize READ getMaxGridSize WRITE setMaxGridSize NOTIFY maxGridSizeChanged)
        public:
            explicit QtGridSelectionDialog(QWidget* parent = nullptr);

            virtual QSize sizeHint() const;

            void setCurrentGridSize(const QSize& size);
            QSize getCurrentGridSize() const;
            void setMinGridSize(const QSize& size);
            QSize getMinGridSize() const;
            void setMaxGridSize(const QSize& size);
            QSize getMaxGridSize() const;

        signals:
            void currentGridSizeChanged(QSize);
            void minGridSizeChanged(QSize);
            void maxGridSizeChanged(QSize);

        protected:
            void keyReleaseEvent(QKeyEvent* event);
            void mousePressEvent(QMouseEvent* event);
            void mouseMoveEvent(QMouseEvent* event);
            void paintEvent(QPaintEvent* event);
            void showEvent(QShowEvent* event);
            void hideEvent(QHideEvent* event);
            void leaveEvent(QEvent *event);

        private:
            int padding;
            int horizontalMargin;
            int verticalMargin;

            QSize frameSize;

            QSize currentGridSize;
            QSize minGridSize;
            QSize maxGridSize;
    };
}