diff options
| author | David Skoland <davidskoland@gmail.com> | 2017-01-18 03:19:26 +0100 |
|---|---|---|
| committer | David Skoland <davidskoland@gmail.com> | 2017-01-18 03:19:26 +0100 |
| commit | 93e2ddcab12f4e994e3cb29ff64504a98ea638a6 (patch) | |
| tree | cb60d34e14deef1427929963aaefacbff590e215 /courtroom.h | |
| parent | 4512e35dffb8816f9c57c61983c7c127e7109129 (diff) | |
implemented widget size from ini functionality
Diffstat (limited to 'courtroom.h')
| -rw-r--r-- | courtroom.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/courtroom.h b/courtroom.h index 8c24fad0..b20b63c1 100644 --- a/courtroom.h +++ b/courtroom.h @@ -5,6 +5,7 @@ #include "aobutton.h" #include "aocharbutton.h" #include "aopacket.h" +#include "datatypes.h" #include <QMainWindow> #include <QLineEdit> @@ -24,6 +25,8 @@ class Courtroom : public QMainWindow public: explicit Courtroom(AOApplication *parent = 0); void set_widgets(); + void set_size_and_pos(QWidget *p_widget, QString p_identifier); + ~Courtroom(); private: @@ -117,6 +120,8 @@ private: QLineEdit *ui_char_password; AOButton *ui_spectator; +private slots: + void on_reload_theme_clicked(); }; |
