mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-26 19:22:30 -05:00
61 lines
1.7 KiB
C++
61 lines
1.7 KiB
C++
#include "IRCAppWindow.h"
|
|
#include "IRCClientWindow.h"
|
|
#include <LibGUI/GListBox.h>
|
|
#include <LibGUI/GBoxLayout.h>
|
|
|
|
IRCAppWindow::IRCAppWindow()
|
|
: GWindow()
|
|
, m_client("127.0.0.1", 6667)
|
|
{
|
|
set_title(String::format("IRC Client: %s:%d", m_client.hostname().characters(), m_client.port()));
|
|
set_rect(200, 200, 600, 400);
|
|
setup_client();
|
|
setup_widgets();
|
|
}
|
|
|
|
IRCAppWindow::~IRCAppWindow()
|
|
{
|
|
}
|
|
|
|
void IRCAppWindow::setup_client()
|
|
{
|
|
m_client.on_connect = [this] {
|
|
m_client.join_channel("#test");
|
|
};
|
|
|
|
m_client.on_query_message = [this] (const String& name) {
|
|
// FIXME: Update query view.
|
|
};
|
|
|
|
m_client.on_channel_message = [this] (const String& channel_name) {
|
|
// FIXME: Update channel view.
|
|
};
|
|
|
|
m_client.connect();
|
|
}
|
|
|
|
void IRCAppWindow::setup_widgets()
|
|
{
|
|
auto* widget = new GWidget(nullptr);
|
|
widget->set_fill_with_background_color(true);
|
|
set_main_widget(widget);
|
|
widget->set_layout(make<GBoxLayout>(Orientation::Horizontal));
|
|
|
|
auto* subwindow_list = new GListBox(widget);
|
|
subwindow_list->set_size_policy(SizePolicy::Fixed, SizePolicy::Fill);
|
|
subwindow_list->set_preferred_size({ 120, 0 });
|
|
subwindow_list->add_item("Server");
|
|
subwindow_list->add_item("#test");
|
|
|
|
m_subwindow_container = new GWidget(widget);
|
|
m_subwindow_container->set_layout(make<GBoxLayout>(Orientation::Vertical));
|
|
m_subwindow_container->set_size_policy(SizePolicy::Fill, SizePolicy::Fill);
|
|
|
|
create_subwindow(IRCClientWindow::Server, "Server");
|
|
}
|
|
|
|
void IRCAppWindow::create_subwindow(IRCClientWindow::Type type, const String& name)
|
|
{
|
|
auto* subwindow = new IRCClientWindow(m_client, type, name, m_subwindow_container);
|
|
m_subwindows.append(subwindow);
|
|
}
|