X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Ftoolwindow.h;h=2864970fbb46c0bc4fc0768361ef6b4676008401;hb=1881acb17ed405cdb5aa2cb333a7af77f644a86d;hp=f9134bc2f0392ecde8ec627f544f2e2abcb504ad;hpb=360d040a4727383cc8e78d0b8a3c8151c27d26fc;p=ttedit diff --git a/src/toolwindow.h b/src/toolwindow.h old mode 100755 new mode 100644 index f9134bc..2864970 --- a/src/toolwindow.h +++ b/src/toolwindow.h @@ -8,7 +8,7 @@ #ifndef __TOOLWINDOW_H__ #define __TOOLWINDOW_H__ -#include +#include // Enumerations @@ -16,14 +16,16 @@ enum ToolType { TOOLNone = -1, // No tool TOOLSelect = 0, // The "selection" tool TOOLPolySelect, // Polygon selection tool - TOOLScroll, // Scroll window tool + TOOLMultiSelect, // Rectangle selection tool TOOLZoom, // Zoom window tool TOOLAddPt, // Add point tool TOOLAddPoly, // Polygon creation tool TOOLDelPt, // Delete point tool TOOLDelPoly, // Delete polygon tool TOOLRotate, // Rotate tool - TOOLRotatePoly // Rotate polygon around centroid tool + TOOLRotatePoly, // Rotate polygon around centroid tool + TOOLFlipWinding, // Change polygon's winding direction tool + TOOLScroll // Scroll window tool }; class ToolWindow: public QWidget @@ -47,3 +49,4 @@ class ToolWindow: public QWidget }; #endif // __TOOLWINDOW_H__ +