Engauge Digitizer  2
PointShape.h
1 /******************************************************************************************************
2  * (C) 2014 markummitchell@github.com. This file is part of Engauge Digitizer, which is released *
3  * under GNU General Public License version 2 (GPLv2) or (at your option) any later version. See file *
4  * LICENSE or go to gnu.org/licenses for details. Distribution requires prior written permission. *
5  ******************************************************************************************************/
6 
7 #ifndef POINT_SHAPE_H
8 #define POINT_SHAPE_H
9 
10 #include <QString>
11 
12 enum PointShape {
13  POINT_SHAPE_CIRCLE,
14  POINT_SHAPE_CROSS,
15  POINT_SHAPE_DIAMOND,
16  POINT_SHAPE_SQUARE,
17  POINT_SHAPE_TRIANGLE,
18  POINT_SHAPE_X
19 };
20 
21 extern QString pointShapeToString (PointShape pointShape);
22 
23 #endif // POINT_SHAPE_H