BottomView.h 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. // BottomView.h : CBottomView クラス宣言およびインターフェイス定義
  2. // Date 2006/05/17 Ver. 1.22 Psytec Inc.
  3. #if !defined(AFX_BOTTOMVIEW_H__71E48AFF_E3E1_4C80_B69D_8CA5A9D4017D__INCLUDED_)
  4. #define AFX_BOTTOMVIEW_H__71E48AFF_E3E1_4C80_B69D_8CA5A9D4017D__INCLUDED_
  5. #if _MSC_VER > 1000
  6. #pragma once
  7. #endif // _MSC_VER > 1000
  8. #ifndef __AFXEXT_H__
  9. #include <afxext.h>
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CBottomView クラス
  13. class CBottomView : public CFormView
  14. {
  15. protected:
  16. CBottomView();
  17. DECLARE_DYNCREATE(CBottomView)
  18. // 形式数据
  19. public:
  20. //{{AFX_DATA(CBottomView)
  21. enum { IDD = IDD_BOTTOMVIEW };
  22. CEdit m_editSoureData;
  23. //}}AFX_DATA
  24. // 属性
  25. private:
  26. BOOL m_bInitControl;
  27. // 动作
  28. public:
  29. // override
  30. //{{AFX_VIRTUAL(CBottomView)
  31. protected:
  32. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV サポート
  33. virtual void OnUpdate(CView* pSender, LPARAM lHint, CObject* pHint);
  34. //}}AFX_VIRTUAL
  35. // implementation
  36. protected:
  37. virtual ~CBottomView();
  38. #ifdef _DEBUG
  39. virtual void AssertValid() const;
  40. virtual void Dump(CDumpContext& dc) const;
  41. #endif
  42. //{{AFX_MSG(CBottomView)
  43. afx_msg void OnUpdateEditUndo(CCmdUI* pCmdUI);
  44. afx_msg void OnUpdateEditCut(CCmdUI* pCmdUI);
  45. afx_msg void OnUpdateEditCopy(CCmdUI* pCmdUI);
  46. afx_msg void OnUpdateEditPaste(CCmdUI* pCmdUI);
  47. afx_msg void OnEditUndo();
  48. afx_msg void OnEditCut();
  49. afx_msg void OnEditCopy();
  50. afx_msg void OnEditPaste();
  51. afx_msg void OnEditSelectAll();
  52. afx_msg void OnChangeSourceData();
  53. //}}AFX_MSG
  54. DECLARE_MESSAGE_MAP()
  55. };
  56. /////////////////////////////////////////////////////////////////////////////
  57. //{{AFX_INSERT_LOCATION}}
  58. #endif // !defined(AFX_BOTTOMVIEW_H__71E48AFF_E3E1_4C80_B69D_8CA5A9D4017D__INCLUDED_)