home *** CD-ROM | disk | FTP | other *** search
/ In'side Shareware 1995 April / ish0495.iso / update / truedic / truedic.pak / VC / TRDEDIC.H < prev    next >
C/C++ Source or Header  |  1995-05-01  |  1KB  |  50 lines

  1. //-------------------------------------------------------------------------
  2. // Truedic.H : Declares the class interfaces for the Truedic application.
  3. //-------------------------------------------------------------------------
  4.  
  5. #ifndef __Truedic_H__
  6. #define __Truedic_H__
  7.  
  8. //----------------------------------------------------------------------
  9. // CTruedicApp:
  10. // See Truedic.CPP for the code to the InitInstance() member function.
  11. //----------------------------------------------------------------------
  12. class CTruedicApp : public CWinApp
  13. {
  14. public:
  15.     virtual BOOL InitInstance();
  16. };
  17.  
  18. //----------------------------------------------------------------------
  19. // CMainDlgWindow : The main window for the Truedic application
  20. //----------------------------------------------------------------------
  21. class CMainDlgWindow : public CDialog
  22. {
  23.  
  24. private:
  25.  
  26. public:
  27.     
  28.     CMainDlgWindow();
  29.     
  30. protected:
  31.  
  32.     CBitmapButton m_cBitEng;
  33.     CBitmapButton m_cBitDeu;
  34.  
  35.  
  36.     //{{AFX_MSG(CMainDlgWindow)
  37.     afx_msg void OnClose();
  38.     afx_msg void OnExit();
  39.     afx_msg HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor);
  40.     afx_msg void OnDeueng();
  41.     afx_msg void OnEngdeu();
  42.     virtual BOOL OnInitDialog();
  43.     //}}AFX_MSG
  44.     DECLARE_MESSAGE_MAP()
  45.  
  46.  
  47. };
  48.  
  49. #endif // __Truedic_H__
  50.