]> Shamusworld >> Repos - ttedit/blob - src/toolwindow.h
Added individual polygon rotation tool.
[ttedit] / src / toolwindow.h
1 //
2 // TOOLWINDOW.H: Header file
3 //
4 // by James L. Hammons
5 // (C) 2009 Underground Software
6 //
7
8 #ifndef __TOOLWINDOW_H__
9 #define __TOOLWINDOW_H__
10
11 #include <QtGui>
12
13 // Enumerations
14
15 enum ToolType {
16         TOOLNone = -1,                                                  // No tool
17         TOOLSelect = 0,                                                 // The "selection" tool
18         TOOLPolySelect,                                                 // Polygon selection tool
19         TOOLScroll,                                                             // Scroll window tool
20         TOOLZoom,                                                               // Zoom window tool
21         TOOLAddPt,                                                              // Add point tool
22         TOOLAddPoly,                                                    // Polygon creation tool
23         TOOLDelPt,                                                              // Delete point tool
24         TOOLDelPoly,                                                    // Delete polygon tool
25         TOOLRotate,                                                             // Rotate tool
26         TOOLRotatePoly                                                  // Rotate polygon around centroid tool
27 };
28
29 class ToolWindow: public QWidget
30 {
31         Q_OBJECT
32
33         public:
34                 ToolWindow(void);
35                 ToolType FindSelectedTool(void);
36
37         protected:
38                 QSize sizeHint() const;
39                 void paintEvent(QPaintEvent * event);
40
41         public:
42                 ToolType prevTool;
43
44         private:
45                 QImage img;
46                 QPoint sizeStamp, sizeTPBM;
47 };
48
49 #endif  // __TOOLWINDOW_H__