summaryrefslogtreecommitdiffstats
path: root/general/FracWidget.h
diff options
context:
space:
mode:
Diffstat (limited to 'general/FracWidget.h')
-rw-r--r--general/FracWidget.h54
1 files changed, 54 insertions, 0 deletions
diff --git a/general/FracWidget.h b/general/FracWidget.h
new file mode 100644
index 00000000..0bb98d7e
--- /dev/null
+++ b/general/FracWidget.h
@@ -0,0 +1,54 @@
+/*
+ * 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 __FRACWIDGET__
+#define __FRACWIDGET__
+
+// Qt includes
+#include <QObject>
+#include <QWidget>
+
+// General includes
+#include "Frac.h"
+
+// Form include
+#include "ui_frac.h"
+
+class FracWidget : public QWidget, private Ui::formFrac
+{
+ Q_OBJECT
+
+ public:
+ FracWidget(const Frac& value, QWidget* parent);
+
+ void setBehavior(const int behavior);
+ void setValue(const Frac& value);
+
+ int behavior() const;
+ Frac value() const;
+ signals:
+ void changed(bool);
+ public slots:
+ void on_varNumerator_valueChanged(const int& numerator);
+ void on_varDenominator_valueChanged(const int& denominator);
+ void updateValue();
+ private:
+ int m_behavior;
+ Frac m_value;
+};
+
+#endif