mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-09-09 03:24:59 -06:00
20 lines
460 B
C
20 lines
460 B
C
//$ class Ctrl {
|
|
private:
|
|
void SetImageCursor(const Image& img);
|
|
|
|
friend struct MMCtrl;
|
|
friend struct MMImp;
|
|
|
|
static int WndCaretTime;
|
|
static bool WndCaretVisible;
|
|
static void AnimateCaret();
|
|
|
|
protected:
|
|
virtual void MMClose() { DLOG("MMClose"); }
|
|
|
|
void Create(dword style);
|
|
|
|
public:
|
|
static void EndSession() {}
|
|
static bool IsEndSession() { return false; }
|
|
//$ };
|