123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- // BottomView.h : CBottomView クラス宣言およびインターフェイス定義
- // Date 2006/05/17 Ver. 1.22 Psytec Inc.
- #if !defined(AFX_BOTTOMVIEW_H__71E48AFF_E3E1_4C80_B69D_8CA5A9D4017D__INCLUDED_)
- #define AFX_BOTTOMVIEW_H__71E48AFF_E3E1_4C80_B69D_8CA5A9D4017D__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- #ifndef __AFXEXT_H__
- #include <afxext.h>
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CBottomView クラス
- class CBottomView : public CFormView
- {
- protected:
- CBottomView();
- DECLARE_DYNCREATE(CBottomView)
- // 形式数据
- public:
- //{{AFX_DATA(CBottomView)
- enum { IDD = IDD_BOTTOMVIEW };
- CEdit m_editSoureData;
- //}}AFX_DATA
- // 属性
- private:
- BOOL m_bInitControl;
- // 动作
- public:
- // override
- //{{AFX_VIRTUAL(CBottomView)
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV サポート
- virtual void OnUpdate(CView* pSender, LPARAM lHint, CObject* pHint);
- //}}AFX_VIRTUAL
- // implementation
- protected:
- virtual ~CBottomView();
- #ifdef _DEBUG
- virtual void AssertValid() const;
- virtual void Dump(CDumpContext& dc) const;
- #endif
- //{{AFX_MSG(CBottomView)
- afx_msg void OnUpdateEditUndo(CCmdUI* pCmdUI);
- afx_msg void OnUpdateEditCut(CCmdUI* pCmdUI);
- afx_msg void OnUpdateEditCopy(CCmdUI* pCmdUI);
- afx_msg void OnUpdateEditPaste(CCmdUI* pCmdUI);
- afx_msg void OnEditUndo();
- afx_msg void OnEditCut();
- afx_msg void OnEditCopy();
- afx_msg void OnEditPaste();
- afx_msg void OnEditSelectAll();
- afx_msg void OnChangeSourceData();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
- /////////////////////////////////////////////////////////////////////////////
- //{{AFX_INSERT_LOCATION}}
- #endif // !defined(AFX_BOTTOMVIEW_H__71E48AFF_E3E1_4C80_B69D_8CA5A9D4017D__INCLUDED_)
|