19 lines
312 B
C++
19 lines
312 B
C++
//
|
|
// Created by selim on 11.05.2022.
|
|
//
|
|
|
|
#include "Button.h"
|
|
|
|
namespace gtkpp {
|
|
|
|
Button::Button() : Widget() {
|
|
_widget = gtk_button_new();
|
|
setupSignals();
|
|
}
|
|
|
|
void Button::setTitle(const std::string &title) {
|
|
gtk_button_set_label(GTK_BUTTON(_widget), title.c_str());
|
|
}
|
|
|
|
}
|