X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Ftoolwindow.h;h=6fc37234868bdbe833ed8defa63d3df44b7bf916;hb=HEAD;hp=1623eb44bc6edb3ec6f5c76bc382407c9ccbd8b3;hpb=3599953dec39d0ae662b039378a0b3eda39424e8;p=ttedit diff --git a/src/toolwindow.h b/src/toolwindow.h old mode 100755 new mode 100644 index 1623eb4..6fc3723 --- a/src/toolwindow.h +++ b/src/toolwindow.h @@ -8,20 +8,24 @@ #ifndef __TOOLWINDOW_H__ #define __TOOLWINDOW_H__ -#include +#include // Enumerations enum ToolType { - TOOLNone = -1, // No tool - TOOLSelect = 0, // The "selection" tool - TOOLPolySelect, // Polygon selection tool - TOOLScroll, // Scroll window tool - TOOLZoom, // Zoom window tool - TOOLAddPt, // Add point tool - TOOLAddPoly, // Polygon creation tool - TOOLDelPt, // Delete point tool - TOOLDelPoly // Delete polygon tool + TOOLNone = -1, // No tool + TOOLSelect = 0, // The "selection" tool + TOOLPolySelect, // Polygon selection 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 + TOOLFlipWinding, // Change polygon's winding direction tool + TOOLScroll // Scroll window tool }; class ToolWindow: public QWidget @@ -45,3 +49,4 @@ class ToolWindow: public QWidget }; #endif // __TOOLWINDOW_H__ +