Drake Designer
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Macros Pages
ddTaskSelection.h
Go to the documentation of this file.
1 #ifndef __ddTaskSelection_h
2 #define __ddTaskSelection_h
3 
4 #include <QWidget>
5 #include "ddAppConfigure.h"
6 
7 
8 class DD_APP_EXPORT ddTaskSelection : public QWidget
9 {
10  Q_OBJECT
11 
12 public:
13 
15  virtual ~ddTaskSelection();
16 
17 
18 
19 signals:
20 
21  void taskSelected(int taskId);
22 
23 
24 protected slots:
25 
26  void onButtonClicked();
27 
28 protected:
29 
30  class ddInternal;
31  ddInternal* Internal;
32 
33  Q_DISABLE_COPY(ddTaskSelection);
34 };
35 
36 #endif
ddInternal * Internal
#define DD_APP_EXPORT