PhaseButton added

This commit is contained in:
marcus 2009-08-18 12:21:37 +02:00
parent f238b59935
commit 08a5338e9b
3 changed files with 135 additions and 16 deletions

View file

@ -0,0 +1,16 @@
#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