GlobalClips.h 775 B

123456789101112131415161718192021222324252627282930313233343536
  1. #pragma once
  2. #include "DialogResizer.h"
  3. #include "ShowTaskBarIcon.h"
  4. // GlobalClips dialog
  5. class GlobalClips : public CDialogEx
  6. {
  7. DECLARE_DYNAMIC(GlobalClips)
  8. public:
  9. GlobalClips(CWnd* pParent = NULL); // standard constructor
  10. virtual ~GlobalClips();
  11. // Dialog Data
  12. enum { IDD = IDD_GLOBAL_CLIPS };
  13. protected:
  14. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  15. void InitListCtrlCols();
  16. virtual void OnCancel();
  17. void LoadItems();
  18. CDialogResizer m_Resize;
  19. CListCtrl m_List;
  20. HWND m_hWndParent;
  21. CShowTaskBarIcon m_showTaskbar;
  22. DECLARE_MESSAGE_MAP()
  23. public:
  24. void SetNotifyWnd(HWND hWnd);
  25. virtual BOOL OnInitDialog();
  26. afx_msg void OnClose();
  27. afx_msg void OnSize(UINT nType, int cx, int cy);
  28. afx_msg void OnBnClickedButtonRefresh();
  29. };