From b1d953f2dfc073052ea8288770aafc927ee46b3d Mon Sep 17 00:00:00 2001 From: Krisjanis Rijnieks Date: Tue, 9 Feb 2016 20:12:29 +0100 Subject: [PATCH] Add `GuiEventType` --- src/Application/GuiEventType.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/Application/GuiEventType.h diff --git a/src/Application/GuiEventType.h b/src/Application/GuiEventType.h new file mode 100644 index 0000000..7b60128 --- /dev/null +++ b/src/Application/GuiEventType.h @@ -0,0 +1,18 @@ +#pragma once + +namespace ofx { +namespace piMapper { + +struct GuiEventType { + enum { + SURFACE_HIT, + SURFACE_DRAGGED, + SURFACE_RELEASED, + HANDLE_HIT, + HANDLE_DRAGGED, + HANDLE_RELEASED + }; +}; + +} // namespace piMapper +} // namespace ofx \ No newline at end of file