module; #include export module larra.main_window; namespace larra { export struct MainWindow : Gtk::ApplicationWindow { Gtk::Box main; Gtk::Box leftPanel{Gtk::Orientation::VERTICAL}; Gtk::Box accounts{Gtk::Orientation::VERTICAL}; MainWindow() { this->set_title("Larra"); auto settings = Gtk::Settings::get_default(); this->main.append(this->leftPanel); this->set_child(this->main); } }; } // namespace larra