diff options
author | Dees Troy <dees_troy@teamw.in> | 2014-02-07 19:39:53 +0100 |
---|---|---|
committer | Gerrit Code Review <gerrit2@gerrit> | 2014-02-07 19:39:53 +0100 |
commit | e492e27d77ad0c033fc0f55d7a5ffe18752ac7bd (patch) | |
tree | a8f5b7c167c0f365dec2735c11717e09c781a9b7 /gui/pages.hpp | |
parent | Merge "Expansion of vibrate options" into android-4.4 (diff) | |
parent | Implement mouse cursor (diff) | |
download | android_bootable_recovery-e492e27d77ad0c033fc0f55d7a5ffe18752ac7bd.tar android_bootable_recovery-e492e27d77ad0c033fc0f55d7a5ffe18752ac7bd.tar.gz android_bootable_recovery-e492e27d77ad0c033fc0f55d7a5ffe18752ac7bd.tar.bz2 android_bootable_recovery-e492e27d77ad0c033fc0f55d7a5ffe18752ac7bd.tar.lz android_bootable_recovery-e492e27d77ad0c033fc0f55d7a5ffe18752ac7bd.tar.xz android_bootable_recovery-e492e27d77ad0c033fc0f55d7a5ffe18752ac7bd.tar.zst android_bootable_recovery-e492e27d77ad0c033fc0f55d7a5ffe18752ac7bd.zip |
Diffstat (limited to 'gui/pages.hpp')
-rw-r--r-- | gui/pages.hpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gui/pages.hpp b/gui/pages.hpp index a37cdb9f2..2a2ef2c32 100644 --- a/gui/pages.hpp +++ b/gui/pages.hpp @@ -28,6 +28,7 @@ class ResourceManager; class RenderObject; class ActionObject; class InputObject; +class MouseCursor; class Page { @@ -130,6 +131,9 @@ public: static int SetKeyBoardFocus(int inFocus); static int NotifyVarChange(std::string varName, std::string value); + static MouseCursor *GetMouseCursor(); + static void LoadCursorData(xml_node<>* node); + protected: static PageSet* FindPackage(std::string name); @@ -137,6 +141,7 @@ protected: static std::map<std::string, PageSet*> mPageSets; static PageSet* mCurrentSet; static PageSet* mBaseSet; + static MouseCursor *mMouseCursor; }; #endif // _PAGES_HEADER_HPP |