CALCDRIV.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:2k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // calcdriv.h : main header file for the CALCDRIV application
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1995 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. #ifndef __AFXWIN_H__
  13.     #error include 'stdafx.h' before including this file for PCH
  14. #endif
  15. #include "resource.h"       // main symbols
  16. /////////////////////////////////////////////////////////////////////////////
  17. // CCalcDrivApp:
  18. // See calcdriv.cpp for the implementation of this class
  19. class CCalcDrivApp : public CWinApp
  20. {
  21. public:
  22.     CCalcDrivApp();
  23. // Overrides
  24.     virtual BOOL InitInstance();
  25.     virtual int ExitInstance();
  26. // Implementation
  27.     //{{AFX_MSG(CCalcDrivApp)
  28.         // NOTE - the ClassWizard will add and remove member functions here.
  29.         //    DO NOT EDIT what you see in these blocks of generated code !
  30.     //}}AFX_MSG
  31.     DECLARE_MESSAGE_MAP()
  32. };
  33. /////////////////////////////////////////////////////////////////////////////
  34. // CDriverDlg dialog
  35. // Include the type-safe class generated from ClassWizard's "Read Type Library"
  36. //  button to interface with the IDispatch enabled calculator object.
  37. //#include "calctype.h"
  38. class CDriverDlg : public CDialog
  39. {
  40. // Construction
  41. public:
  42.     CDriverDlg(CWnd* pParent = NULL);   // standard constructor
  43. // Dialog Data
  44.     //{{AFX_DATA(CDriverDlg)
  45.     enum { IDD = IDD_CALCDRIV };
  46.     CStatic m_stcOperator;
  47.     CStatic m_stcOperand;
  48.     CStatic m_stcAccum;
  49.     CEdit   m_editExpression;
  50.     //}}AFX_DATA
  51.     // an instance of the IDispatch enabled calculator
  52.     ICalcDlgPtr m_calc;  
  53. // Implementation
  54. public:
  55.     virtual ~CDriverDlg();
  56. protected:
  57.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  58.     // Generated message map functions
  59.     //{{AFX_MSG(CDriverDlg)
  60.     afx_msg void OnGo();
  61.     afx_msg void OnSingleStep();
  62.     virtual BOOL OnInitDialog();
  63.     afx_msg void OnRefresh();
  64.     //}}AFX_MSG
  65.     DECLARE_MESSAGE_MAP()
  66. };