d/control: Recommend gdb
[gammaray-debian.git] / propertyeditor / propertyintpaireditor.cpp
blob3fa35f1728b620eab1e16ffd5c0eeac8c24030ea
1 /*
2 propertyintpaireditor.cpp
4 This file is part of GammaRay, the Qt application inspection and
5 manipulation tool.
7 Copyright (C) 2011 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com
8 Author: Volker Krause <volker.krause@kdab.com>
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation, either version 2 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program. If not, see <http://www.gnu.org/licenses/>.
24 #include "propertyintpaireditor.h"
26 #include "ui_propertyintpaireditor.h"
27 #include <QDebug>
29 #include <limits>
31 using namespace GammaRay;
33 PropertyIntPairEditor::PropertyIntPairEditor(QWidget *parent)
34 : QWidget(parent), ui(new Ui::PropertyIntPairEditor)
36 ui->setupUi(this);
37 ui->xBox->setMinimum(std::numeric_limits<int>::min());
38 ui->xBox->setMaximum(std::numeric_limits<int>::max());
39 ui->yBox->setMinimum(std::numeric_limits<int>::min());
40 ui->yBox->setMaximum(std::numeric_limits<int>::max());
43 PropertyPointEditor::PropertyPointEditor(QWidget *parent)
44 : PropertyIntPairEditor(parent)
48 QPoint PropertyPointEditor::point() const
50 return QPoint(ui->xBox->value(), ui->yBox->value());
53 void PropertyPointEditor::setPoint(const QPoint &point)
55 ui->xBox->setValue(point.x());
56 ui->yBox->setValue(point.y());
59 PropertySizeEditor::PropertySizeEditor(QWidget *parent)
60 : PropertyIntPairEditor(parent)
64 QSize PropertySizeEditor::sizeValue() const
66 return QSize(ui->xBox->value(), ui->yBox->value());
69 void PropertySizeEditor::setSizeValue(const QSize &size)
71 ui->xBox->setValue(size.width());
72 ui->yBox->setValue(size.height());
75 #include "propertyintpaireditor.moc"