1234567891011121314151617181920212223 |
- // CheckBoxExt.h: interface for the CGroupBoxExt class.
- //
- //////////////////////////////////////////////////////////////////////
- class CGroupBoxExt
- {
- public:
- CGroupBoxExt();
- virtual ~CGroupBoxExt();
- static WNDPROC m_cWndProc;
- static int pos;
- static LRESULT DefWindowProc( HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam );
- static void OnPaint( HWND hWnd );
- };
|