Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041 #ifndef __CXUTILS_MOUSE__H
00042 #define __CXUTILS_MOUSE__H
00043
00044 #include "cxutils/cxbase.h"
00045
00046 namespace CxUtils
00047 {
00058 class CX_UTILS_DLL Mouse
00059 {
00060 public:
00067 enum Button
00068 {
00069 Any = -1,
00070 Invalid = 0,
00071 LeftButton = 0x01,
00072 RightButton = 0x02,
00073 MiddleButton = 0x04
00074 };
00075 static bool IsButtonDown(const Button button = Any);
00076 static Button GetCurrentButton();
00077 static bool FakeButtonPress(const Button button,
00078 const bool releaseFlag = true);
00079 static bool FakeButtonRelease(const Button button);
00080 static bool SetCursorPosition(const double dx,
00081 const double dy,
00082 const bool absoluteFlag = true);
00083 static bool GetCursorPosition(double& x,
00084 double& y,
00085 const bool normalized = true);
00086 static bool GetScreenResolution(unsigned int& width, unsigned int& height);
00087 };
00088 }
00089
00090
00091 #endif
00092