1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 01:07:36 +00:00

IRCClient: Hacking on IRCClient bringup.

This commit is contained in:
Andreas Kling 2019-03-15 13:07:04 +01:00
parent aa19735c5a
commit 850c7504a2
11 changed files with 210 additions and 12 deletions

View file

@ -3,6 +3,7 @@
#include <LibGUI/GWindow.h>
#include <LibGUI/GWidget.h>
#include "IRCClient.h"
#include "IRCSubWindow.h"
class IRCAppWindow : public GWindow {
public:
@ -13,5 +14,10 @@ private:
void setup_client();
void setup_widgets();
void create_subwindow(IRCSubWindow::Type, const String& name);
IRCClient m_client;
GWidget* m_subwindow_container { nullptr };
Vector<IRCSubWindow*> m_subwindows;
};