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

对话框与窗口

开发平台:

Visual C++

  1. // SearchOptionsPane.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_SEARCHOPTIONSPANE_H__DCF380B3_6C33_4F6C_AC12_FD22771EEC76__INCLUDED_)
  21. #define AFX_SEARCHOPTIONSPANE_H__DCF380B3_6C33_4F6C_AC12_FD22771EEC76__INCLUDED_
  22. #if _MSC_VER > 1000
  23. #pragma once
  24. #endif // _MSC_VER > 1000
  25. /////////////////////////////////////////////////////////////////////////////
  26. // CSearchOptionsPane form view
  27. class CSearchOptionsPane : public CXTSearchOptionsView
  28. {
  29. protected:
  30. CSearchOptionsPane();           // protected constructor used by dynamic creation
  31. DECLARE_DYNCREATE(CSearchOptionsPane)
  32. // Form Data
  33. public:
  34. //{{AFX_DATA(CSearchOptionsPane)
  35. enum { IDD = IDD_FORMVIEW };
  36. CStatic m_txtSep;
  37. CXTSearchOptionsCtrl    m_expKeywords;
  38. CXTSearchOptionsCtrl    m_expFilters;
  39. CComboBox   m_combFavorites;
  40. CComboBox   m_combAtMost;
  41. CComboBox   m_combAtLeast;
  42. CButton m_chkAtMost;
  43. CButton m_chkAtLeast;
  44. CButton m_btnSearch;
  45. CButton m_btnSave;
  46. CButton m_btnDelete;
  47. CButton m_btnClear;
  48. //}}AFX_DATA
  49. bool m_bFirstTime;
  50. // draw text items flicker free.
  51. CXTNoFlickerWnd <CStatic> m_txtButNot;
  52. CXTNoFlickerWnd <CStatic> m_txtContaining;
  53. CXTNoFlickerWnd <CStatic> m_icoSearch;
  54. CXTNoFlickerWnd <CStatic> m_txtWords;
  55. CXTNoFlickerWnd <CStatic> m_txtLetters;
  56. CXTNoFlickerWnd <CStatic> m_txtHideWords;
  57. CXTNoFlickerWnd <CStatic> m_txtHideLetters;
  58. CXTNoFlickerWnd <CStatic> m_txtFavorites;
  59. CXTNoFlickerWnd <CStatic> m_txtTitle;
  60. CXTNoFlickerWnd <CEdit> m_editWords;
  61. CXTNoFlickerWnd <CEdit> m_editLetters;
  62. CXTNoFlickerWnd <CEdit> m_editContaining;
  63. CXTNoFlickerWnd <CEdit> m_editButNot;
  64. CXTNoFlickerWnd <CEdit> m_editAtMost;
  65. CXTNoFlickerWnd <CEdit> m_editAtLeast;
  66. // Attributes
  67. protected:
  68. HICON      m_hIcon;
  69. CXTCaption m_wndCaption;
  70. void InitFileFilters();
  71. void InitKeywordFilters();
  72. // Operations
  73. public:
  74. // Overrides
  75. // ClassWizard generated virtual function overrides
  76. //{{AFX_VIRTUAL(CSearchOptionsPane)
  77. public:
  78. virtual void OnInitialUpdate();
  79. protected:
  80. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  81. //}}AFX_VIRTUAL
  82. // Implementation
  83. protected:
  84. virtual ~CSearchOptionsPane();
  85. #ifdef _DEBUG
  86. virtual void AssertValid() const;
  87. virtual void Dump(CDumpContext& dc) const;
  88. #endif
  89. // Generated message map functions
  90. //{{AFX_MSG(CSearchOptionsPane)
  91. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  92. //}}AFX_MSG
  93. afx_msg void OnCaptionClose();
  94. afx_msg void OnFiltersContracting();
  95. afx_msg void OnFiltersContract();
  96. afx_msg void OnFiltersExpanding();
  97. afx_msg void OnFiltersExpand();
  98. afx_msg void OnKeywordContracting();
  99. afx_msg void OnKeywordContract();
  100. afx_msg void OnKeywordExpanding();
  101. afx_msg void OnKeywordExpand();
  102. DECLARE_MESSAGE_MAP()
  103. friend class CMainFrame;
  104. };
  105. /////////////////////////////////////////////////////////////////////////////
  106. //{{AFX_INSERT_LOCATION}}
  107. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  108. #endif // !defined(AFX_SEARCHOPTIONSPANE_H__DCF380B3_6C33_4F6C_AC12_FD22771EEC76__INCLUDED_)