diff options
Diffstat (limited to 'tracker-easy/tracker-easy.h')
-rw-r--r-- | tracker-easy/tracker-easy.h | 28 |
1 files changed, 22 insertions, 6 deletions
diff --git a/tracker-easy/tracker-easy.h b/tracker-easy/tracker-easy.h index e1dcee55..d99d4662 100644 --- a/tracker-easy/tracker-easy.h +++ b/tracker-easy/tracker-easy.h @@ -33,13 +33,29 @@ namespace EasyTracker { - // Order matters, it must match the order of the UI tabs - enum ModelType + namespace VertexPosition { - Clip, - Cap, - Custom - }; + enum Type + { + Top = 0, + Right, + Left, + TopRight, + TopLeft, + Center + }; + } + + namespace Model + { + // Order matters, it must match the order of the UI tabs + enum Type + { + Clip, + Cap, + Custom + }; + } static const QString KModuleName = "tracker-easy"; |