// SearchOptionsPane.h // // (c)1998-2025 Codejock Software, All Rights Reserved. // // THIS SOURCE FILE IS THE PROPERTY OF CODEJOCK SOFTWARE AND IS NOT TO BE // RE-DISTRIBUTED BY ANY MEANS WHATSOEVER WITHOUT THE EXPRESSED WRITTEN // CONSENT OF CODEJOCK SOFTWARE. // // THIS SOURCE CODE CAN ONLY BE USED UNDER THE TERMS AND CONDITIONS OUTLINED // IN THE XTREME TOOLKIT PRO LICENSE AGREEMENT. CODEJOCK SOFTWARE GRANTS TO // YOU (ONE SOFTWARE DEVELOPER) THE LIMITED RIGHT TO USE THIS SOFTWARE ON A // SINGLE COMPUTER. // // CONTACT INFORMATION: // support@codejock.com // http://www.codejock.com // ///////////////////////////////////////////////////////////////////////////// #if !defined(AFX_SEARCHOPTIONSPANE_H__DCF380B3_6C33_4F6C_AC12_FD22771EEC76__INCLUDED_) # define AFX_SEARCHOPTIONSPANE_H__DCF380B3_6C33_4F6C_AC12_FD22771EEC76__INCLUDED_ # if _MSC_VER > 1000 # pragma once # endif // _MSC_VER > 1000 ///////////////////////////////////////////////////////////////////////////// // CSearchOptionsPane form view class CSearchOptionsPane : public CXTPSearchOptionsView { protected: CSearchOptionsPane(); // protected constructor used by dynamic creation DECLARE_DYNCREATE(CSearchOptionsPane) // Form Data public: //{{AFX_DATA(CSearchOptionsPane) enum { IDD = IDD_FORMVIEW }; CStatic m_txtSep; CXTPSearchOptionsCtrl m_expKeywords; CXTPSearchOptionsCtrl m_expFilters; CComboBox m_combFavorites; CComboBox m_combAtMost; CComboBox m_combAtLeast; CButton m_chkAtMost; CButton m_chkAtLeast; CButton m_btnSearch; CButton m_btnSave; CButton m_btnDelete; CButton m_btnClear; //}}AFX_DATA bool m_bFirstTime; // draw text items flicker free. CXTPNoFlickerWnd m_txtButNot; CXTPNoFlickerWnd m_txtContaining; CXTPNoFlickerWnd m_icoSearch; CXTPNoFlickerWnd m_txtWords; CXTPNoFlickerWnd m_txtLetters; CXTPNoFlickerWnd m_txtHideWords; CXTPNoFlickerWnd m_txtHideLetters; CXTPNoFlickerWnd m_txtFavorites; CXTPNoFlickerWnd m_txtTitle; CXTPNoFlickerWnd m_editWords; CXTPNoFlickerWnd m_editLetters; CXTPNoFlickerWnd m_editContaining; CXTPNoFlickerWnd m_editButNot; CXTPNoFlickerWnd m_editAtMost; CXTPNoFlickerWnd m_editAtLeast; // Attributes protected: HICON m_hIcon; CXTPCaption m_wndCaption; void InitFileFilters(); void InitKeywordFilters(); // Operations public: // Overrides // ClassWizard generated virtual function overrides //{{AFX_VIRTUAL(CSearchOptionsPane) public: virtual void OnInitialUpdate(); protected: virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support //}}AFX_VIRTUAL // Implementation protected: virtual ~CSearchOptionsPane(); # ifdef _DEBUG virtual void AssertValid() const; virtual void Dump(CDumpContext& dc) const; # endif // Generated message map functions //{{AFX_MSG(CSearchOptionsPane) afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct); //}}AFX_MSG afx_msg void OnCaptionClose(); afx_msg void OnFiltersContracting(); afx_msg void OnFiltersContract(); afx_msg void OnFiltersExpanding(); afx_msg void OnFiltersExpand(); afx_msg void OnKeywordContracting(); afx_msg void OnKeywordContract(); afx_msg void OnKeywordExpanding(); afx_msg void OnKeywordExpand(); DECLARE_MESSAGE_MAP() friend class CMainFrame; }; ///////////////////////////////////////////////////////////////////////////// //{{AFX_INSERT_LOCATION}} // Microsoft Visual C++ will insert additional declarations immediately before the previous line. #endif // !defined(AFX_SEARCHOPTIONSPANE_H__DCF380B3_6C33_4F6C_AC12_FD22771EEC76__INCLUDED_)