00001 /****************************************************************************************************** 00002 * (C) 2014 markummitchell@github.com. This file is part of Engauge Digitizer, which is released * 00003 * under GNU General Public License version 2 (GPLv2) or (at your option) any later version. See file * 00004 * LICENSE or go to gnu.org/licenses for details. Distribution requires prior written permission. * 00005 ******************************************************************************************************/ 00006 00007 #ifndef POINT_SHAPE_H 00008 #define POINT_SHAPE_H 00009 00010 #include <QString> 00011 00012 enum PointShape { 00013 POINT_SHAPE_CIRCLE, 00014 POINT_SHAPE_CROSS, 00015 POINT_SHAPE_DIAMOND, 00016 POINT_SHAPE_SQUARE, 00017 POINT_SHAPE_TRIANGLE, 00018 POINT_SHAPE_X 00019 }; 00020 00021 extern QString pointShapeToString (PointShape pointShape); 00022 00023 #endif // POINT_SHAPE_H