1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2011-2013 - TortoiseGit
5 // This program is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU General Public License
7 // as published by the Free Software Foundation; either version 2
8 // of the License, or (at your option) any later version.
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the Free Software Foundation,
17 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 #include "HistoryCombo.h"
25 #include "StandAloneDlg.h"
26 #include "LoglistCommonResource.h"
31 #define IDT_FILTER 101
33 class CFindDlg
: public CResizableStandAloneDialog
35 DECLARE_DYNAMIC(CFindDlg
)
38 CFindDlg(CWnd
* pParent
= NULL
); // standard constructor
40 void Create(CWnd
* pParent
= NULL
) {m_pParent
= pParent
; CDialog::Create(IDD
, pParent
);ShowWindow(SW_SHOW
);UpdateWindow();}
42 bool IsTerminating() {return m_bTerminating
;}
43 bool FindNext() {return m_bFindNext
;}
44 bool MatchCase() {return !!m_bMatchCase
;}
45 bool WholeWord() {return !!m_bWholeWord
;}
46 bool Regex() {return !!m_bRegex
;}
47 bool IsRef() {return !!m_bIsRef
;}
48 CString
GetFindString() {return m_FindString
;}
49 void SetFindString(const CString
& str
) { if (!str
.IsEmpty()) { m_FindCombo
.SetWindowText(str
); } }
52 enum { IDD
= IDD_FIND
};
55 virtual void DoDataExchange(CDataExchange
* pDX
); // DDX/DDV support
56 virtual void OnCancel();
57 virtual void PostNcDestroy();
59 virtual BOOL
OnInitDialog();
60 afx_msg
void OnCbnEditchangeFindcombo();
72 CHistoryCombo m_FindCombo
;
75 STRING_VECTOR m_RefList
;
76 CRegDWORD m_regMatchCase
;
77 CRegDWORD m_regWholeWord
;
83 CListCtrl m_ctrlRefList
;
85 afx_msg
void OnNMClickListRef(NMHDR
*pNMHDR
, LRESULT
*pResult
);
86 afx_msg
void OnEnChangeEditFilter();
87 afx_msg
void OnTimer(UINT_PTR nIDEvent
);