13 lines
199 B
C++
13 lines
199 B
C++
#pragma once
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include "gtkmm/button.h"
|
|
|
|
class TextButton : public Gtk::Button {
|
|
public:
|
|
TextButton(const std::string &label);
|
|
void setText(const std::string &text);
|
|
}; |