ultimatepp/uppsrc/CtrlCore/Win32Top.h
mirek-fidler e8035690b9
libclang ide #94
- 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
2022-09-16 10:31:14 +02:00

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; }