DialogActions.h
上传用户:szled88
上传日期:2015-04-09
资源大小:43957k
文件大小:2k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. #if !defined(AFX_DIALOGACTIONS_H__2E0EB4F9_8AA3_4CE2_B48F_CCA5EFE08E78__INCLUDED_)
  2. #define AFX_DIALOGACTIONS_H__2E0EB4F9_8AA3_4CE2_B48F_CCA5EFE08E78__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // DialogActions.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CDialogActions dialog
  10. class CDialogActions : public CDialog
  11. {
  12. // Construction
  13. public:
  14. void FillActionsCombos();
  15. CDialogActions(CWnd* pParent = NULL);   // standard constructor
  16. // Dialog Data
  17. //{{AFX_DATA(CDialogActions)
  18. enum { IDD = IDD_DIALOG_ACTIONS };
  19. CComboBox m_lstActions;
  20. BOOL m_bChecked;
  21. BOOL m_bEnabled;
  22. BOOL m_bVisible;
  23. CString m_strCaption;
  24. CString m_strDescription;
  25. CString m_strTooltip;
  26. //}}AFX_DATA
  27. // Overrides
  28. // ClassWizard generated virtual function overrides
  29. //{{AFX_VIRTUAL(CDialogActions)
  30. protected:
  31. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  32. //}}AFX_VIRTUAL
  33. // Implementation
  34. protected:
  35. CXTPControlActions* m_pActions;
  36. // Generated message map functions
  37. //{{AFX_MSG(CDialogActions)
  38. virtual void OnOK();
  39. virtual void OnCancel();
  40. virtual BOOL OnInitDialog();
  41. afx_msg void OnComboActionsSelChanged();
  42. afx_msg void OnCheckVisible();
  43. afx_msg void OnCheckEnabled();
  44. afx_msg void OnCheckChecked();
  45. afx_msg void OnChangeEditCaption();
  46. afx_msg void OnChangeEditTooltip();
  47. afx_msg void OnChangeEditDescription();
  48. afx_msg void OnButtonLoad();
  49. afx_msg void OnButtonSave();
  50. //}}AFX_MSG
  51. DECLARE_MESSAGE_MAP()
  52. };
  53. //{{AFX_INSERT_LOCATION}}
  54. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  55. #endif // !defined(AFX_DIALOGACTIONS_H__2E0EB4F9_8AA3_4CE2_B48F_CCA5EFE08E78__INCLUDED_)