Last change
on this file since 418 was 324, checked in by Sanahuja Guillaume, 5 years ago |
removing opencv dependency
|
File size:
487 bytes
|
Rev | Line | |
---|
[324] | 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}
|
---|
| 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 | Q_OBJECT
|
---|
| 15 |
|
---|
| 16 | public:
|
---|
| 17 | PushButton(Layout *parent, int row, int col, QString name);
|
---|
| 18 | ~PushButton();
|
---|
| 19 |
|
---|
| 20 | private:
|
---|
| 21 | QPushButton *button;
|
---|
| 22 |
|
---|
| 23 | private slots:
|
---|
| 24 | void button_clicked(bool state);
|
---|
| 25 | };
|
---|
| 26 |
|
---|
| 27 | #endif // PUSHBUTTON_H
|
---|
Note:
See
TracBrowser
for help on using the repository browser.