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:
parent
aa19735c5a
commit
850c7504a2
11 changed files with 210 additions and 12 deletions
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue