mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-30 14:20:21 +00:00
IRCClient: Start working on a simple graphical IRC client.
This will be a nice way to exercise both LibGUI and the TCP/IP support. :^)
This commit is contained in:
parent
f87dec1cbf
commit
aa19735c5a
Notes:
sideshowbarker
2024-07-19 15:03:00 +09:00
Author: https://github.com/awesomekling
Commit: aa19735c5a
18 changed files with 779 additions and 1 deletions
17
Applications/IRCClient/IRCAppWindow.h
Normal file
17
Applications/IRCClient/IRCAppWindow.h
Normal file
|
@ -0,0 +1,17 @@
|
|||
#pragma once
|
||||
|
||||
#include <LibGUI/GWindow.h>
|
||||
#include <LibGUI/GWidget.h>
|
||||
#include "IRCClient.h"
|
||||
|
||||
class IRCAppWindow : public GWindow {
|
||||
public:
|
||||
IRCAppWindow();
|
||||
virtual ~IRCAppWindow() override;
|
||||
|
||||
private:
|
||||
void setup_client();
|
||||
void setup_widgets();
|
||||
|
||||
IRCClient m_client;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue