mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-23 14:22:17 -06:00
25 lines
696 B
C
25 lines
696 B
C
//$ class Ctrl {
|
|
private:
|
|
friend struct MMCtrl;
|
|
friend struct MMImp;
|
|
|
|
friend void DrawDragRect(Ctrl& q, const Rect& rect1, const Rect& rect2, const Rect& clip, int n,
|
|
Color color, int type, int animation);
|
|
friend void FinishDragRect(Ctrl& q);
|
|
|
|
static int WndCaretTime;
|
|
static bool WndCaretVisible;
|
|
static void AnimateCaret();
|
|
|
|
protected:
|
|
virtual void MMClose() {}
|
|
|
|
void Create(Ctrl *owner, dword style, bool active);
|
|
|
|
public:
|
|
static void EndSession() {}
|
|
static bool IsEndSession() { return false; }
|
|
|
|
void *GetNSWindow() const;
|
|
void *GetNSView() const;
|
|
//$ };
|