home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1997 May / Pcwk0597.iso / delphi / prctvb25.lzh / VC.ZIP / VCVIEW.H < prev   
C/C++ Source or Header  |  1996-01-15  |  1KB  |  55 lines

  1. // vcview.h : interface of the CVcView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4.  
  5. class CVcView : public CFormView
  6. {
  7. protected: // create from serialization only
  8.     CVcView();
  9.     DECLARE_DYNCREATE(CVcView)
  10.  
  11. public:
  12.     //{{AFX_DATA(CVcView)
  13.     enum { IDD = IDD_VC_FORM };
  14.     CEdit    m_editv;
  15.     CEdit    m_editp;
  16.     CVBControl*    m_percent2;
  17.     CVBControl*    m_percent1;
  18.     //}}AFX_DATA
  19.  
  20. // Attributes
  21. public:
  22.     CVcDoc* GetDocument();
  23.  
  24. // Operations
  25. public:
  26.  
  27. // Implementation
  28. public:
  29.     virtual ~CVcView();
  30. #ifdef _DEBUG
  31.     virtual void AssertValid() const;
  32.     virtual void Dump(CDumpContext& dc) const;
  33. #endif
  34.  
  35. protected:
  36.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  37.  
  38. // Generated message map functions
  39. protected:
  40.     //{{AFX_MSG(CVcView)
  41.     afx_msg void OnChangeEditP();
  42.     afx_msg void OnChangeEditV();
  43.     afx_msg void OnChangePrcnt1(UINT, int, CWnd*, LPVOID);
  44.     afx_msg void OnChangePrcnt2(UINT, int, CWnd*, LPVOID);
  45.     //}}AFX_MSG
  46.     DECLARE_MESSAGE_MAP()
  47. };
  48.  
  49. #ifndef _DEBUG  // debug version in vcview.cpp
  50. inline CVcDoc* CVcView::GetDocument()
  51.    { return (CVcDoc*)m_pDocument; }
  52. #endif
  53.  
  54. /////////////////////////////////////////////////////////////////////////////
  55.