RightView.h 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. // RightView.h : CRightView クラス宣言およびインターフェイス定義
  2. // Date 2006/05/17 Ver. 1.22 Psytec Inc.
  3. #if !defined(AFX_RIGHTVIEW_H__F346E2CF_81BB_46DF_9F23_8351B7F80F49__INCLUDED_)
  4. #define AFX_RIGHTVIEW_H__F346E2CF_81BB_46DF_9F23_8351B7F80F49__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. // CRightView クラス
  13. class CRightView : public CFormView
  14. {
  15. protected:
  16. CRightView();
  17. DECLARE_DYNCREATE(CRightView)
  18. // フォーム データ
  19. public:
  20. //{{AFX_DATA(CRightView)
  21. enum { IDD = IDD_RIGHTVIEW };
  22. CComboBox m_comboLevel;
  23. CComboBox m_comboVersion;
  24. CStatic m_staticVersion;
  25. CButton m_checkAutoExtent;
  26. CComboBox m_comboMaskingNo;
  27. CStatic m_staticMaskingNo;
  28. CEdit m_editModuleSize;
  29. CSpinButtonCtrl m_spinModuleSize;
  30. CStatic m_staticBmpSize;
  31. CButton m_buttonCopy;
  32. CButton m_buttonSave;
  33. //}}AFX_DATA
  34. // アトリビュート
  35. private:
  36. BOOL m_bInitControl;
  37. // オペレーション
  38. public:
  39. // オーバーライド
  40. //{{AFX_VIRTUAL(CRightView)
  41. protected:
  42. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV サポート
  43. virtual void OnUpdate(CView* pSender, LPARAM lHint, CObject* pHint);
  44. //}}AFX_VIRTUAL
  45. // インプリメンテーション
  46. protected:
  47. virtual ~CRightView();
  48. #ifdef _DEBUG
  49. virtual void AssertValid() const;
  50. virtual void Dump(CDumpContext& dc) const;
  51. #endif
  52. //{{AFX_MSG(CRightView)
  53. afx_msg void OnUpdateEditUndo(CCmdUI* pCmdUI);
  54. afx_msg void OnEditUndo();
  55. afx_msg void OnUpdateEditCut(CCmdUI* pCmdUI);
  56. afx_msg void OnUpdateEditCopy(CCmdUI* pCmdUI);
  57. afx_msg void OnUpdateEditPaste(CCmdUI* pCmdUI);
  58. afx_msg void OnEditCut();
  59. afx_msg void OnEditCopy();
  60. afx_msg void OnEditPaste();
  61. afx_msg void OnEditSelectAll();
  62. afx_msg void OnSelChangeLevel();
  63. afx_msg void OnSelChangeVersion();
  64. afx_msg void OnAutoExtent();
  65. afx_msg void OnSelChangeMaskNo();
  66. afx_msg void OnChangeDrawSize();
  67. afx_msg void OnKillFocusDrawSize();
  68. afx_msg void OnCopy();
  69. afx_msg void OnSave();
  70. //}}AFX_MSG
  71. DECLARE_MESSAGE_MAP()
  72. };
  73. /////////////////////////////////////////////////////////////////////////////
  74. //{{AFX_INSERT_LOCATION}}
  75. #endif // !defined(AFX_RIGHTVIEW_H__F346E2CF_81BB_46DF_9F23_8351B7F80F49__INCLUDED_)