home *** CD-ROM | disk | FTP | other *** search
- //***********************************************************************
- //
- // CtlDemo3.h
- //
- //***********************************************************************
-
- class CMyApp : public CWinApp
- {
- public:
- virtual BOOL InitInstance ();
- };
-
- class CMainWindow : public CFrameWnd
- {
- private:
- CFont m_font;
- HBITMAP m_hBitmap;
-
- CBitmapButton m_ctlButton1;
- CButton m_ctlButton2;
- CButton m_ctlButton3;
-
- CStatic m_ctlLabel1;
- CStatic m_ctlLabel2;
- CStatic m_ctlLabel3;
-
- public:
- CMainWindow ();
-
- protected:
- afx_msg int OnCreate (LPCREATESTRUCT);
- afx_msg void OnDestroy ();
- afx_msg void OnOptionsDisable ();
- afx_msg void OnOptionsExit ();
- afx_msg void OnUpdateOptionsDisableUI (CCmdUI*);
-
- DECLARE_MESSAGE_MAP ()
- };
-