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