servatrice/cockatrice/src/phasebutton.h
2009-08-18 12:21:37 +02:00

16 lines
243 B
C++

#ifndef PHASEBUTTON_H
#define PHASEBUTTON_H
//
#include <QPushButton>
//
class PhaseButton : public QPushButton
{
Q_OBJECT
public:
PhaseButton();
PhaseButton(QIcon, QString);
void update();
void paintEvent(QPaintEvent *event);
};
#endif