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

对话框与窗口

开发平台:

Visual C++

  1. // PopupControlDemoDlg.h : header file
  2. //
  3. // This file is a part of the XTREME TOOLKIT PRO MFC class library.
  4. // (c)1998-2008 Codejock Software, All Rights Reserved.
  5. //
  6. // THIS SOURCE FILE IS THE PROPERTY OF CODEJOCK SOFTWARE AND IS NOT TO BE
  7. // RE-DISTRIBUTED BY ANY MEANS WHATSOEVER WITHOUT THE EXPRESSED WRITTEN
  8. // CONSENT OF CODEJOCK SOFTWARE.
  9. //
  10. // THIS SOURCE CODE CAN ONLY BE USED UNDER THE TERMS AND CONDITIONS OUTLINED
  11. // IN THE XTREME TOOLKIT PRO LICENSE AGREEMENT. CODEJOCK SOFTWARE GRANTS TO
  12. // YOU (ONE SOFTWARE DEVELOPER) THE LIMITED RIGHT TO USE THIS SOFTWARE ON A
  13. // SINGLE COMPUTER.
  14. //
  15. // CONTACT INFORMATION:
  16. // support@codejock.com
  17. // http://www.codejock.com
  18. //
  19. /////////////////////////////////////////////////////////////////////////////
  20. #if !defined(AFX_POPUPWNDDEMODLG_H__375F8BC3_56DB_4F1F_9380_47F7460E9456__INCLUDED_)
  21. #define AFX_POPUPWNDDEMODLG_H__375F8BC3_56DB_4F1F_9380_47F7460E9456__INCLUDED_
  22. #if _MSC_VER > 1000
  23. #pragma once
  24. #endif // _MSC_VER > 1000
  25. /////////////////////////////////////////////////////////////////////////////
  26. // CPopupControlDemoDlg dialog
  27. class CPopupControlDemoDlg : public CDialog
  28. {
  29. // Construction
  30. public:
  31. CPopupControlDemoDlg(CWnd* pParent = NULL); // standard constructor
  32. ~CPopupControlDemoDlg();
  33. // Dialog Data
  34. //{{AFX_DATA(CPopupControlDemoDlg)
  35. enum { IDD = IDD_POPUPWNDDEMO_DIALOG };
  36. CXTPButton m_btnMore;
  37. CSliderCtrl m_Slider;
  38. int     m_nTheme;
  39. int     m_nAnimation;
  40. UINT    m_uAnimDelay;
  41. UINT    m_uShowDelay;
  42. BOOL    m_bAllowMove;
  43. //}}AFX_DATA
  44. void SetTheme();
  45. // ClassWizard generated virtual function overrides
  46. //{{AFX_VIRTUAL(CPopupControlDemoDlg)
  47. protected:
  48. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  49. //}}AFX_VIRTUAL
  50. //init theme of popup window
  51. void SetMSNTheme();
  52. void SetOffice2003Theme();
  53. void SetOffice2007Theme();
  54. void SetDefaultTheme();
  55. void SetOfficeXPTheme();
  56. void SetBlueTheme();
  57. void SetBlackTheme();
  58. void SetGreenTheme();
  59. void SetRedTheme();
  60. void SetTooltipTheme();
  61. //enable/disable of dialog controls
  62. void EnableItems(BOOL bEnable);
  63. void SetDefaults();
  64. // Implementation
  65. protected:
  66. //handle to icon
  67. HICON m_hIcon;
  68. CPoint m_ptPopup;
  69. void FindBestPosition(CSize szPopup);
  70. //popup window object
  71. CList<CXTPPopupControl*, CXTPPopupControl*> m_lstPopupControl;
  72. CXTPPopupControl* m_pActivePopup;
  73. // Generated message map functions
  74. //{{AFX_MSG(CPopupControlDemoDlg)
  75. virtual BOOL OnInitDialog();
  76. afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  77. afx_msg void OnPaint();
  78. afx_msg HCURSOR OnQueryDragIcon();
  79. afx_msg void OnButtonShow();
  80. afx_msg void OnSelchangeComboTheme();
  81. afx_msg void OnReleasedcaptureSliderTransparent(NMHDR* pNMHDR, LRESULT* pResult);
  82. afx_msg void OnSelchangeComboAnimation();
  83. afx_msg void OnChangeEditAnimationdelay();
  84. afx_msg void OnChangeEditShowdelay();
  85. afx_msg void OnCheckAllowMove();
  86. afx_msg void OnMoreRtfsample();
  87. afx_msg void OnMoreMarkupsample();
  88. afx_msg void OnMoreLayerSample();
  89. //}}AFX_MSG
  90. void OnMoreDropDown();
  91. afx_msg LRESULT OnPopUpNotify(WPARAM wParam, LPARAM lParam);
  92. DECLARE_MESSAGE_MAP()
  93. };
  94. //{{AFX_INSERT_LOCATION}}
  95. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  96. #endif // !defined(AFX_POPUPWNDDEMODLG_H__375F8BC3_56DB_4F1F_9380_47F7460E9456__INCLUDED_)