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 CURVE_CONNECT_AS 00008 #define CURVE_CONNECT_AS 00009 00010 #include <QString> 00011 00012 enum CurveConnectAs { 00013 CONNECT_AS_FUNCTION_SMOOTH, 00014 CONNECT_AS_FUNCTION_STRAIGHT, 00015 CONNECT_AS_RELATION_SMOOTH, 00016 CONNECT_AS_RELATION_STRAIGHT, 00017 CONNECT_SKIP_FOR_AXIS_CURVE 00018 }; 00019 00020 extern QString curveConnectAsToString (CurveConnectAs curveConnectAs); 00021 00022 #endif // CURVE_CONNECT_AS 00023 00024