AutoCatGnome/gtkpp/Button.h

24 lines
400 B
C++

//
// Created by selim on 11.05.2022.
//
#ifndef AUTOCAT_GNOME_BUTTON_H
#define AUTOCAT_GNOME_BUTTON_H
#include "Widget.h"
#include <string>
namespace gtkpp {
class Button: public Widget {
public:
using Widget::Widget;
Button();
void setTitle(const std::string& title);
void setIconName(const std::string& name);
};
}
#endif //AUTOCAT_GNOME_BUTTON_H