SQLView.h
上传用户:jsxglz
上传日期:2007-01-03
资源大小:117k
文件大小:2k
源码类别:

SQL Server

开发平台:

Visual C++

  1. // SQLView.h : interface of the CSQLView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_SQLVIEW_H__C1AD240D_D2B0_11D1_AE85_204C4F4F5020__INCLUDED_)
  5. #define AFX_SQLVIEW_H__C1AD240D_D2B0_11D1_AE85_204C4F4F5020__INCLUDED_
  6. #if _MSC_VER >= 1000
  7. #pragma once
  8. #endif // _MSC_VER >= 1000
  9. #include "InteractiveSQLDoc.h"
  10. class CInteractiveSQLCntrItem;
  11. class CSQLView : public CRichEditView
  12. {
  13. protected: // create from serialization only
  14. CSQLView();
  15. DECLARE_DYNCREATE(CSQLView)
  16. // Attributes
  17. public:
  18. CInteractiveSQLDoc* GetDocument();
  19. // Operations
  20. public:
  21. // Overrides
  22. // ClassWizard generated virtual function overrides
  23. //{{AFX_VIRTUAL(CSQLView)
  24. public:
  25. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  26. protected:
  27. virtual void OnInitialUpdate(); // called first time after construct
  28. virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
  29. //}}AFX_VIRTUAL
  30. // Implementation
  31. public:
  32. virtual ~CSQLView();
  33. #ifdef _DEBUG
  34. virtual void AssertValid() const;
  35. virtual void Dump(CDumpContext& dc) const;
  36. #endif
  37. protected:
  38. virtual HMENU GetContextMenu(WORD wSelType, LPOLEOBJECT lpOleObj, CHARRANGE* lpChrg);
  39. // Generated message map functions
  40. protected:
  41. CFont m_font;
  42. //{{AFX_MSG(CSQLView)
  43. afx_msg void OnDestroy();
  44. afx_msg void OnSqlExecute();
  45. afx_msg void OnUpdateViewWrapWord(CCmdUI* pCmdUI);
  46. afx_msg void OnViewWrapWord();
  47. afx_msg void OnFilePrint();
  48. afx_msg void OnUpdateFilePrint(CCmdUI* pCmdUI);
  49. afx_msg void OnEditClear();
  50. afx_msg void OnUpdateEditClear(CCmdUI* pCmdUI);
  51. //}}AFX_MSG
  52. DECLARE_MESSAGE_MAP()
  53. };
  54. #ifndef _DEBUG  // debug version in SQLView.cpp
  55. inline CInteractiveSQLDoc* CSQLView::GetDocument()
  56.    { return (CInteractiveSQLDoc*)m_pDocument; }
  57. #endif
  58. /////////////////////////////////////////////////////////////////////////////
  59. //{{AFX_INSERT_LOCATION}}
  60. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  61. #endif // !defined(AFX_SQLVIEW_H__C1AD240D_D2B0_11D1_AE85_204C4F4F5020__INCLUDED_)