diff options
author | Vojtech Bocek <vbocek@gmail.com> | 2014-01-29 18:37:19 +0100 |
---|---|---|
committer | Ethan Yonker <dees_troy@teamw.in> | 2014-02-07 19:37:13 +0100 |
commit | 1fc30fc77b5588c4b651085c21003aceb4ec5083 (patch) | |
tree | e8f522b1aa1150095bc0e440039c1a5b8205ab0c /gui/pages.hpp | |
parent | Expansion of vibrate options (diff) | |
download | android_bootable_recovery-1fc30fc77b5588c4b651085c21003aceb4ec5083.tar android_bootable_recovery-1fc30fc77b5588c4b651085c21003aceb4ec5083.tar.gz android_bootable_recovery-1fc30fc77b5588c4b651085c21003aceb4ec5083.tar.bz2 android_bootable_recovery-1fc30fc77b5588c4b651085c21003aceb4ec5083.tar.lz android_bootable_recovery-1fc30fc77b5588c4b651085c21003aceb4ec5083.tar.xz android_bootable_recovery-1fc30fc77b5588c4b651085c21003aceb4ec5083.tar.zst android_bootable_recovery-1fc30fc77b5588c4b651085c21003aceb4ec5083.zip |
Diffstat (limited to '')
-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 |