12345678910111213141516171819202122232425262728 |
- #ifndef BUTTONEVENT_H
- #define BUTTONEVENT_H
- #include <QAbstractButton>
- #include "mainthreadinterface.h"
- class AWTLabelEvent : public AWTEvent {
-
- private:
- QAbstractButton *widget;
- QString *string;
-
- public:
- AWTLabelEvent(QAbstractButton *w, QString *s) : AWTEvent()
- {
- widget = w;
- string = s;
- }
- void runEvent()
- {
- widget->setText( *string );
- delete string;
- }
- };
- #endif
|