From 93e2ddcab12f4e994e3cb29ff64504a98ea638a6 Mon Sep 17 00:00:00 2001 From: David Skoland Date: Wed, 18 Jan 2017 03:19:26 +0100 Subject: implemented widget size from ini functionality --- courtroom.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'courtroom.h') 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 #include @@ -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(); }; -- cgit