]>
git.saurik.com Git - wxWidgets.git/blob - samples/mfc/mfctest.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Sample to demonstrate mixing MFC and wxWidgets code
4 // Author: Julian Smart
5 // Copyright: (c) Julian Smart
6 // Licence: wxWindows licence
7 /////////////////////////////////////////////////////////////////////////////
12 /////////////////////////////////////////////////////////////////////////////
15 // See hello.cpp for the code to the member functions and the message map.
17 class CMainWindow
: public CFrameWnd
22 //{{AFX_MSG( CMainWindow )
23 afx_msg
void OnPaint();
24 afx_msg
void OnAbout();
25 afx_msg
void OnTest();
31 // A dummy CWnd pointing to a wxWindow's HWND
32 class CDummyWindow
: public CWnd
35 CDummyWindow(HWND hWnd
);
39 /////////////////////////////////////////////////////////////////////////////
43 class CTheApp
: public CWinApp
49 // Override this to provide wxWidgets message loop
51 BOOL
PreTranslateMessage(MSG
*msg
);
52 BOOL
OnIdle(LONG lCount
);
55 /////////////////////////////////////////////////////////////////////////////
57 #endif // __MFCTEST_H__