summaryrefslogtreecommitdiff
path: root/src/sudokuwidget.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/sudokuwidget.h')
-rw-r--r--src/sudokuwidget.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/sudokuwidget.h b/src/sudokuwidget.h
index 9ca6098..fb13234 100644
--- a/src/sudokuwidget.h
+++ b/src/sudokuwidget.h
@@ -30,7 +30,15 @@ public:
* @brief return the default size hint for this widget
* */
virtual QSize sizeHint() const;
-
+
+ inline const bool showHintUnique() const
+ {
+ return m_showHintUnique;
+ }
+
+ void setShowHintUnique(const bool hintunique = true);
+
+
protected:
/**
* @brief handle paint events
@@ -44,6 +52,7 @@ protected:
private:
QLineEdit * sudokuwidget_value[9][9];
+ bool m_showHintUnique;
private slots:
void verify();