diff options
Diffstat (limited to 'plugingui/mainwindow.h')
-rw-r--r-- | plugingui/mainwindow.h | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/plugingui/mainwindow.h b/plugingui/mainwindow.h index 886dc3e..89e323a 100644 --- a/plugingui/mainwindow.h +++ b/plugingui/mainwindow.h @@ -28,10 +28,13 @@ #include <settings.h> -#include "window.h" +#include "frame.h" +#include "image.h" +#include "textedit.h" #include "tabwidget.h" #include "texturedbox.h" -#include "image.h" +#include "window.h" +#include "maintab.h" namespace GUI { @@ -57,6 +60,10 @@ private: void repaintEvent(RepaintEvent* repaintEvent) override final; TabWidget tabs{this}; + + MainTab main_tab{this}; + // TODO use some nice textfield widget here + TextEdit gpl_text_field{&tabs}; Image back{":bg.png"}; Image logo{":logo.png"}; |