ultimatepp/rainbow/Framebuffer/Ctrl.h
cxl 5d0f272a87 .developing rainbow
git-svn-id: svn://ultimatepp.org/upp/trunk@3586 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2011-07-02 09:17:46 +00:00

15 lines
480 B
C

//$ class Ctrl {
public:
static void InitFB();
static void DoMouseFB(int event, Point p, int zdelta = 0);
static bool DoKeyFB(dword key, int cnt);
static void RemoveCursor(Rect& update);
static void RemoveCaret(Rect& update);
static void RemoveCursor();
static void RemoveCaret();
static void CursorSync();
static Image GetBak(Rect& tr);
void SetOpen(bool b) { isopen = b; }
void SetTop() { top = new Top; }
//$ };