source: flair-src/trunk/tools/FlairGCS/src/PushButton.h@ 451

Last change on this file since 451 was 15, checked in by Bayard Gildas, 8 years ago

sources reformatted with flair-format-dir script

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