#include "IRCAppWindow.h" #include "IRCClientWindow.h" #include "IRCClientWindowListModel.h" #include #include #include 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_join = [this] (const String& channel_name) { ensure_window(IRCClientWindow::Channel, channel_name); }; 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(Orientation::Horizontal)); auto* window_list = new GTableView(widget); window_list->set_headers_visible(false); window_list->set_model(OwnPtr(m_client.client_window_list_model())); window_list->set_size_policy(SizePolicy::Fixed, SizePolicy::Fill); window_list->set_preferred_size({ 120, 0 }); m_client.client_window_list_model()->on_activation = [this] (IRCClientWindow& window) { m_container->set_active_widget(&window); }; m_container = new GStackWidget(widget); create_subwindow(IRCClientWindow::Server, "Server"); } IRCClientWindow& IRCAppWindow::create_subwindow(IRCClientWindow::Type type, const String& name) { return *new IRCClientWindow(m_client, type, name, m_container); } IRCClientWindow& IRCAppWindow::ensure_window(IRCClientWindow::Type type, const String& name) { for (int i = 0; i < m_client.window_count(); ++i) { auto& window = m_client.window_at(i); if (window.name() == name) return window; } return create_subwindow(type, name); }