aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlcppcodegen/data/theme.cpp
blob: c5dea8c0a853aee52165d527d437cb0169775aa1 (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
#include "theme.h"

namespace Utils {

Theme::Theme(QObject *parent) : QObject{parent} {}

int Theme::index(Area area) const
{
    switch(area) {
        case TopLeft: return 12;
        case BottomRight: return 13;
    }
    return -1;
}

QRectF Theme::area(Area area) const
{
    switch(area) {
        case TopLeft: return QRectF(0.0, 0.0, 5.0, 10.0);
        case BottomRight: return QRectF(5.0, 10.0, 1.0, 1.0);
    }
    return QRectF();
}

}