18 lines
395 B
C++
18 lines
395 B
C++
//
|
|
// Created by selim on 03.01.2022.
|
|
//
|
|
|
|
#include "MainWindow.h"
|
|
#include "../gtkpp/HeaderBar.h"
|
|
|
|
#include <iostream>
|
|
|
|
MainWindow::MainWindow(std::shared_ptr<gtkpp::Application> app):
|
|
gtkpp::Window(std::move(app), "/gui/MainWindow.xml"),
|
|
_addNumberButton(_builder, "add_number_button") {
|
|
|
|
_addNumberButton.onClick([this] {
|
|
std::cout << "Add clicked" << std::endl;
|
|
});
|
|
}
|