]> Shamusworld >> Repos - ttedit/blobdiff - src/toolwindow.h
Added preview window to file loading dialog. :-)
[ttedit] / src / toolwindow.h
index 2864970fbb46c0bc4fc0768361ef6b4676008401..6fc37234868bdbe833ed8defa63d3df44b7bf916 100644 (file)
 // Enumerations
 
 enum ToolType {
-       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
+       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