summaryrefslogtreecommitdiffstats
path: root/general/PointWidget.h
diff options
context:
space:
mode:
Diffstat (limited to 'general/PointWidget.h')
-rw-r--r--general/PointWidget.h50
1 files changed, 50 insertions, 0 deletions
diff --git a/general/PointWidget.h b/general/PointWidget.h
new file mode 100644
index 00000000..3519679d
--- /dev/null
+++ b/general/PointWidget.h
@@ -0,0 +1,50 @@
+/*
+ * Copyright 2008 Ben Boeckel <MathStuf@gmail.com>
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef __POINTWIDGET__
+#define __POINTWIDGET__
+
+// Qt includes
+#include <QObject>
+#include <QWidget>
+
+// General includes
+#include "Point.h"
+
+// Form include
+#include "ui_point.h"
+
+class PointWidget : public QWidget, private Ui::formPoint
+{
+ Q_OBJECT
+
+ public:
+ PointWidget(const Point& value, QWidget* parent);
+
+ void setValue(const Point& value);
+
+ Point value() const;
+ signals:
+ void changed(bool);
+ public slots:
+ void on_varX_valueChanged(const int& x);
+ void on_varY_valueChanged(const int& y);
+ private:
+ Point m_value;
+};
+
+#endif