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

对话框与窗口

开发平台:

Visual C++

  1. // ComboBoxSearch.h: interface for the CComboBoxSearch class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_COMBOBOXSEARCH_H__342A6E15_31D3_489A_A841_11E6DC0A069E__INCLUDED_)
  5. #define AFX_COMBOBOXSEARCH_H__342A6E15_31D3_489A_A841_11E6DC0A069E__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #define ID_LINK_STARTDRAG 1002
  10. class CComboBoxURL : public CXTPControlComboBox  
  11. {
  12. DECLARE_XTP_CONTROL(CComboBoxURL);
  13. public:
  14. CComboBoxURL(CXTPCommandBars* pCommandBars = 0);
  15. void UpdateComboBox();
  16. void SaveTypedURL();
  17. void OnClick(BOOL bKeyboard = FALSE, CPoint pt = CPoint(0, 0));
  18. void OnMouseMove(CPoint point);
  19. void DoPropExchange(CXTPPropExchange* pPX);
  20. };
  21. class CComboBoxSearch : public CXTPControlComboBox  
  22. {
  23. DECLARE_XTP_CONTROL(CComboBoxSearch);
  24. public:
  25. CComboBoxSearch(CXTPCommandBars* pCommandBars = 0);
  26. virtual ~CComboBoxSearch();
  27. virtual BOOL OnSetPopup(BOOL bPopup);
  28. virtual void OnSelChanged();
  29. virtual void OnEditChanged();
  30. public:
  31. int m_nCurrentEngine;
  32. CBrush m_brWindow;
  33. };
  34. #endif // !defined(AFX_COMBOBOXSEARCH_H__342A6E15_31D3_489A_A841_11E6DC0A069E__INCLUDED_)