diff options
Diffstat (limited to '')
-rw-r--r-- | gui/pages.hpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gui/pages.hpp b/gui/pages.hpp index f1179f53e..2ce3e13a4 100644 --- a/gui/pages.hpp +++ b/gui/pages.hpp @@ -4,6 +4,18 @@ #define _PAGES_HEADER_HPP #include "../minzip/Zip.h" +#include <vector> +#include <map> +#include "rapidxml.hpp" +using namespace rapidxml; + +enum TOUCH_STATE { + TOUCH_START = 0, + TOUCH_DRAG = 1, + TOUCH_RELEASE = 2, + TOUCH_HOLD = 3, + TOUCH_REPEAT = 4 +}; typedef struct { unsigned char red; |