Biomedical Image Analysis Library
The Biomedical Image Analysis Library is a poweful tool for developers, physicians, researchers, engineers, and so on.
functionalwidget.h
Go to the documentation of this file.
1 #ifndef FUNCTIONALWIDGET_H
2 #define FUNCTIONALWIDGET_H
3 
4 #include <QWidget>
5 
6 namespace Ui {
7  class FunctionalWidget;
8 }
9 
10 class FunctionalWidget : public QWidget {
11  Q_OBJECT
12 
13 public:
14  explicit FunctionalWidget( QWidget *parent = 0 );
15  ~FunctionalWidget( );
16 
17 signals:
18  void invertColors( );
19  void brightness( );
20 
21 private slots:
22  void on_pushButtonInvertColors_clicked( );
23 
24  void on_pushButtonInvertColors_2_clicked( );
25 
26 private:
27  Ui::FunctionalWidget *ui;
28 };
29 
30 #endif /* FUNCTIONALWIDGET_H */