Files
oak-editor/ui/playbutton.h
T
2019-06-15 07:39:55 -07:00

16 lines
226 B
C++

#ifndef PLAYBUTTON_H
#define PLAYBUTTON_H
#include <QPushButton>
class PlayButton : public QPushButton
{
public:
PlayButton(QWidget* parent = 0);
private:
QString play_text;
QString pause_text;
};
#endif // PLAYBUTTON_H