diff options
| author | Stefan Suhren <suhren.stefan@fh-swf.de> | 2015-03-30 10:33:49 +0200 |
|---|---|---|
| committer | Stefan Suhren <suhren.stefan@fh-swf.de> | 2015-03-30 10:33:49 +0200 |
| commit | 80e36da2bbb4c6ce0e6f04ccff595f61769bb4ab (patch) | |
| tree | 69cd6d7a351bc07d4c41ffc271d17e8afc45dff4 /dlgpreferences.h | |
| parent | 74d0a4a6f634010db71d05536cffef15bfb1edd9 (diff) | |
| download | GUI_SS2015-80e36da2bbb4c6ce0e6f04ccff595f61769bb4ab.tar.gz GUI_SS2015-80e36da2bbb4c6ce0e6f04ccff595f61769bb4ab.zip | |
Adds comments and uses naming convention for auto connection
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; |
