summaryrefslogtreecommitdiffhomepage
path: root/tracker-easy/tracker-easy.h
diff options
context:
space:
mode:
authorStéphane Lenclud <github@lenclud.com>2019-04-28 10:27:28 +0200
committerStéphane Lenclud <github@lenclud.com>2019-04-28 10:27:28 +0200
commit6fc9a425a00e98387cdd0023a39885b463cd2d02 (patch)
treec40535c5e8c289df472ebea3dffa237b300033cf /tracker-easy/tracker-easy.h
parent389f77790d649a9da852ff7df3e0717b4c4dc1c3 (diff)
Easy Track: Five points model support.
Because we can!
Diffstat (limited to 'tracker-easy/tracker-easy.h')
-rw-r--r--tracker-easy/tracker-easy.h28
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";