mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 06:05:58 -06:00
20 lines
No EOL
561 B
C
20 lines
No EOL
561 B
C
//$ class TopWindow {
|
|
public:
|
|
virtual LRESULT WindowProc(UINT message, WPARAM wParam, LPARAM lParam);
|
|
|
|
private:
|
|
dword style;
|
|
dword exstyle;
|
|
HICON ico, lico;
|
|
|
|
void DeleteIco0();
|
|
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; }
|
|
//$ };
|