18 lines
482 B
C++
18 lines
482 B
C++
//
|
|
// Created by selim on 03.01.2022.
|
|
//
|
|
|
|
#include "MainWindow.h"
|
|
#include "../gtkpp/Box.h"
|
|
#include "../gtkpp/HeaderBar.h"
|
|
|
|
MainWindow::MainWindow(std::shared_ptr<gtkpp::Application> app): gtkpp::Window(std::move(app), "/gui/MainWindow.xml") {
|
|
|
|
// gtkpp::Box rootBox(GTK_ORIENTATION_VERTICAL, 0);
|
|
// rootBox.append(gtkpp::HeaderBar("Main"));
|
|
//
|
|
// _leaflet.append(&rootBox);
|
|
//
|
|
// adw_application_window_set_content(ADW_APPLICATION_WINDOW(_window), _leaflet.gobj());
|
|
}
|