diff options
Diffstat (limited to 'dlgpreferences.h')
| -rw-r--r-- | dlgpreferences.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/dlgpreferences.h b/dlgpreferences.h index 2921959..6848cc6 100644 --- a/dlgpreferences.h +++ b/dlgpreferences.h @@ -8,6 +8,9 @@ namespace Ui { class DlgPreferences; } +/** + * @brief The DlgPreferences class + */ class DlgPreferences : public QDialog { Q_OBJECT @@ -19,11 +22,21 @@ public: explicit DlgPreferences(QWidget *parent = 0); ~DlgPreferences(); + /** + * @brief Height from lineEditHeight + * @return + * The hight entered by the user. + */ int Height() const { return m_Height; } + /** + * @brief Width from lineEditWidth + * @return + * The width entered by the user. + */ int Width() const { return m_Width; |
