ultimatepp/rainbow/WinAlt/WinAltTop.h
cxl f0e42f8693 reorganizing repo
git-svn-id: svn://ultimatepp.org/upp/trunk@9214 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2015-11-22 19:53:58 +00:00

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