SymbolView.h
上传用户:ch83438830
上传日期:2007-01-01
资源大小:104k
文件大小:2k
源码类别:

文件操作

开发平台:

Visual C++

  1. // winpeView.h : interface of the CSymbolView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. class CSymbolView : public CScrollView
  5. {
  6. protected: // create from serialization only
  7. CSymbolView();
  8. DECLARE_DYNCREATE(CSymbolView)
  9. // Attributes
  10. public:
  11. CWinpeDoc* GetDocument();
  12. // Operations
  13. public:
  14. // Overrides
  15. // ClassWizard generated virtual function overrides
  16. //{{AFX_VIRTUAL(CSymbolView)
  17. public:
  18. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  19. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  20. virtual void OnInitialUpdate();
  21. protected:
  22. virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
  23. virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
  24. virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
  25. virtual void OnUpdate(CView* pSender, LPARAM lHint, CObject* pHint);
  26. //}}AFX_VIRTUAL
  27. // Implementation
  28. public:
  29. virtual ~CSymbolView();
  30. #ifdef _DEBUG
  31. virtual void AssertValid() const;
  32. virtual void Dump(CDumpContext& dc) const;
  33. #endif
  34. protected:
  35. // Generated message map functions
  36. protected:
  37. //{{AFX_MSG(CSymbolView)
  38. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  39. //}}AFX_MSG
  40. DECLARE_MESSAGE_MAP()
  41. private:
  42. CStringArray m_DisplayData;
  43. INT GetSymbols();
  44. CFont m_screenFont;
  45. CFont m_printerFont;
  46. UINT m_cyScreen;
  47. UINT m_cyPrinter;
  48. UINT m_cxOffset;
  49. UINT m_cxWidth;
  50. UINT m_nLinesTotal;
  51. UINT m_nLinesPerPage;
  52. //
  53. //
  54. //
  55. //
  56. };
  57. #ifndef _DEBUG  // debug version in winpeView.cpp
  58. inline CWinpeDoc* CSymbolView::GetDocument()
  59.    { return (CWinpeDoc*)m_pDocument; }
  60. #endif
  61. /////////////////////////////////////////////////////////////////////////////