mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 14:16:07 -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
17 lines
504 B
C
17 lines
504 B
C
public:
|
|
virtual LRESULT WindowProc(UINT message, WPARAM wParam, LPARAM lParam);
|
|
|
|
private:
|
|
dword style;
|
|
dword exstyle;
|
|
HICON ico, lico;
|
|
|
|
void DeleteIco();
|
|
void CenterRect(HWND owner, int center);
|
|
|
|
public:
|
|
void Open(HWND ownerhwnd);
|
|
TopWindow& Style(dword _style);
|
|
dword GetStyle() const { return style; }
|
|
TopWindow& ExStyle(dword _exstyle);
|
|
dword GetExStyle() const { return exstyle; }
|