Rev | Line | |
---|
[10] | 1 | // %flair:license{
|
---|
| 2 | // This file is part of the Flair framework distributed under the
|
---|
| 3 | // CECILL-C License, Version 1.0.
|
---|
| 4 | // %flair:license}
|
---|
[9] | 5 | #ifndef PUSHBUTTON_H
|
---|
| 6 | #define PUSHBUTTON_H
|
---|
| 7 |
|
---|
| 8 | #include "XmlWidget.h"
|
---|
| 9 |
|
---|
| 10 | class QPushButton;
|
---|
| 11 | class Layout;
|
---|
| 12 |
|
---|
| 13 | class PushButton: public XmlWidget
|
---|
| 14 | {
|
---|
| 15 | Q_OBJECT
|
---|
| 16 |
|
---|
| 17 | public:
|
---|
| 18 | PushButton(Layout* parent,int row, int col,QString name);
|
---|
| 19 | ~PushButton();
|
---|
| 20 |
|
---|
| 21 | private:
|
---|
| 22 | QPushButton *button;
|
---|
| 23 |
|
---|
| 24 | private slots:
|
---|
| 25 | void button_clicked(bool state);
|
---|
| 26 |
|
---|
| 27 | };
|
---|
| 28 |
|
---|
| 29 | #endif // PUSHBUTTON_H
|
---|
Note:
See
TracBrowser
for help on using the repository browser.