mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-23 14:22:17 -06:00
13 lines
397 B
C
13 lines
397 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();
|
|
static void RemoveCaret();
|
|
static void CursorSync();
|
|
|
|
static Image GetBak(Rect& tr);
|
|
void SetOpen(bool b) { isopen = b; }
|
|
void SetTop() { top = new Top; }
|
|
//$ };
|