AutoCatGnome/gtkpp/Button.cpp

18 lines
288 B
C++

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