mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 22:02:58 -06:00
- Assist/Autocomplete refactored to use libclang Other minor changes: - Removed CoWork Pipe - .dli runtime loading of dynamic libraries now supports path to library in access function - EditField::SetBackground - RichTextView::GotoLabel variant with Gate for matching - RichEdit::GotoLabel variant with Gate for matching
32 lines
879 B
C
32 lines
879 B
C
private:
|
|
friend struct MMCtrl;
|
|
friend struct MMImp;
|
|
|
|
static int WndCaretTime;
|
|
static bool WndCaretVisible;
|
|
static bool local_dnd_copy;
|
|
static void AnimateCaret();
|
|
static Ptr<Ctrl> lastActive;
|
|
|
|
friend void CocoInit(int argc, const char **argv, const char **envptr);
|
|
|
|
protected:
|
|
virtual void MMClose() {}
|
|
|
|
void Create(Ctrl *owner, dword style, bool active);
|
|
static void SetNSAppImage(const Image& img);
|
|
static void SyncAppIcon();
|
|
static void ResetCocoaMouse();
|
|
static void DoCancelPreedit();
|
|
|
|
public:
|
|
static void EndSession() {}
|
|
static bool IsEndSession() { return false; }
|
|
|
|
void *GetNSWindow() const;
|
|
void *GetNSView() const;
|
|
bool IsCocoActive() const;
|
|
|
|
void RegisterCocoaDropFormats();
|
|
|
|
static Rect GetScreenArea(Point pt);
|