home *** CD-ROM | disk | FTP | other *** search
- //-------------------------------------------------------------------------
- // Truedic.H : Declares the class interfaces for the Truedic application.
- //-------------------------------------------------------------------------
-
- #ifndef __Truedic_H__
- #define __Truedic_H__
-
- //----------------------------------------------------------------------
- // CTruedicApp:
- // See Truedic.CPP for the code to the InitInstance() member function.
- //----------------------------------------------------------------------
- class CTruedicApp : public CWinApp
- {
- public:
- virtual BOOL InitInstance();
- };
-
- //----------------------------------------------------------------------
- // CMainDlgWindow : The main window for the Truedic application
- //----------------------------------------------------------------------
- class CMainDlgWindow : public CDialog
- {
-
- private:
-
- public:
-
- CMainDlgWindow();
-
- protected:
-
- CBitmapButton m_cBitEng;
- CBitmapButton m_cBitDeu;
-
-
- //{{AFX_MSG(CMainDlgWindow)
- afx_msg void OnClose();
- afx_msg void OnExit();
- afx_msg HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor);
- afx_msg void OnDeueng();
- afx_msg void OnEngdeu();
- virtual BOOL OnInitDialog();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
-
-
- };
-
- #endif // __Truedic_H__
-