summaryrefslogtreecommitdiff
path: root/src/sudokuwidget.h
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2012-06-05 18:50:44 +0000
committerStijn Buys <ingar@osirion.org>2012-06-05 18:50:44 +0000
commit168d6e5763685b57c2ddd444209374c37bc5fdec (patch)
treed761a7284b48c9263ff235dd0ceb1638c28a4135 /src/sudokuwidget.h
parent42cb020233b6635f2d06b7f7b533a0ee4f85f4fa (diff)
Added solverwindow and sidebar buttons,
added Sudoku value container class.
Diffstat (limited to 'src/sudokuwidget.h')
-rw-r--r--src/sudokuwidget.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/sudokuwidget.h b/src/sudokuwidget.h
new file mode 100644
index 0000000..59e4f3c
--- /dev/null
+++ b/src/sudokuwidget.h
@@ -0,0 +1,22 @@
+
+#ifndef __INCLUDED_SUDOKUSOLVER_SUDOKUWIDGET__
+#define __INCLUDED_SUDOKUSOLVER_SUDOKUWIDGET__
+
+#include <QtGui>
+#include <QWidget>
+
+class QLineEdit;
+
+class SudokuWidget : public QWidget
+{
+ Q_OBJECT
+
+public:
+ SudokuWidget();
+
+private:
+ QLineEdit * sudokuwidget_value[9][9];
+
+};
+
+#endif // __INCLUDED_SUDOKUSOLVER_SUDOKUWIDGET__ \ No newline at end of file