1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2011-2015 - TortoiseGit
4 // Copyright (C) 2006 - Stefan Kueng
6 // This program is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU General Public License
8 // as published by the Free Software Foundation; either version 2
9 // of the License, or (at your option) any later version.
11 // This program is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // You should have received a copy of the GNU General Public License
17 // along with this program; if not, write to the Free Software Foundation,
18 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
27 IMPLEMENT_DYNAMIC(CFindDlg
, CResizableStandAloneDialog
)
29 CFindDlg::CFindDlg(CWnd
* pParent
/*=NULL*/)
30 : CResizableStandAloneDialog(CFindDlg::IDD
, pParent
)
31 , m_bTerminating(false)
34 , m_bLimitToDiffs(FALSE
)
39 , m_regMatchCase(L
"Software\\TortoiseGit\\LogDialog\\FindMatchCase", FALSE
)
40 , m_regWholeWord(L
"Software\\TortoiseGit\\LogDialog\\FindWholeWord", FALSE
)
41 , m_regRegex(L
"Software\\TortoiseGit\\LogDialog\\FindRegex", FALSE
)
50 void CFindDlg::DoDataExchange(CDataExchange
* pDX
)
52 CDialog::DoDataExchange(pDX
);
53 DDX_Check(pDX
, IDC_MATCHCASE
, m_bMatchCase
);
54 DDX_Check(pDX
, IDC_WHOLEWORD
, m_bWholeWord
);
55 DDX_Check(pDX
, IDC_CHECK_REGEX
, m_bRegex
);
56 DDX_Control(pDX
, IDC_FINDCOMBO
, m_FindCombo
);
57 DDX_Control(pDX
, IDC_LIST_REF
, m_ctrlRefList
);
58 DDX_Control(pDX
, IDC_EDIT_FILTER
, m_ctrlFilter
);
62 BEGIN_MESSAGE_MAP(CFindDlg
, CResizableStandAloneDialog
)
63 ON_CBN_EDITCHANGE(IDC_FINDCOMBO
, &CFindDlg::OnCbnEditchangeFindcombo
)
64 ON_NOTIFY(NM_CLICK
, IDC_LIST_REF
, &CFindDlg::OnNMClickListRef
)
65 ON_EN_CHANGE(IDC_EDIT_FILTER
, &CFindDlg::OnEnChangeEditFilter
)
70 // CFindDlg message handlers
72 void CFindDlg::OnCancel()
74 m_bTerminating
= true;
76 CWnd
*parent
= m_pParent
;
81 parent
->SendMessage(m_FindMsg
);
86 void CFindDlg::PostNcDestroy()
94 m_FindCombo
.SaveHistory();
96 m_regMatchCase
= m_bMatchCase
;
97 m_regWholeWord
= m_bWholeWord
;
98 m_regRegex
= m_bRegex
;
100 if (m_FindCombo
.GetString().IsEmpty())
103 m_FindString
= m_FindCombo
.GetString();
105 CWnd
*parent
= m_pParent
;
107 parent
= GetParent();
110 parent
->SendMessage(m_FindMsg
);
114 BOOL
CFindDlg::OnInitDialog()
116 CDialog::OnInitDialog();
117 m_FindMsg
= RegisterWindowMessage(FINDMSGSTRING
);
119 m_bMatchCase
= (BOOL
)(DWORD
)m_regMatchCase
;
120 m_bWholeWord
= (BOOL
)(DWORD
)m_regWholeWord
;
121 m_bRegex
= (BOOL
)(DWORD
)m_regRegex
;
124 m_FindCombo
.SetCaseSensitive(TRUE
);
125 m_FindCombo
.LoadHistory(_T("Software\\TortoiseGit\\History\\Find"), _T("Search"));
126 m_FindCombo
.SetCurSel(0);
127 m_FindCombo
.SetFocus();
129 this->AddAnchor(IDC_STATIC_FIND
, TOP_LEFT
, TOP_RIGHT
);
130 this->AddAnchor(IDC_FINDCOMBO
, TOP_LEFT
, TOP_RIGHT
);
131 this->AddAnchor(IDOK
, TOP_RIGHT
);
132 this->AddAnchor(IDCANCEL
, TOP_RIGHT
);
133 this->AddAnchor(IDC_STATIC_GROUP_REF
, TOP_LEFT
, BOTTOM_RIGHT
);
134 this->AddAnchor(IDC_STATIC_FILTER
, BOTTOM_LEFT
);
135 this->AddAnchor(IDC_EDIT_FILTER
, BOTTOM_LEFT
, BOTTOM_RIGHT
);
136 this->AddAnchor(IDC_LIST_REF
, TOP_LEFT
, BOTTOM_RIGHT
);
137 this->AddOthersToAnchor();
139 EnableSaveRestore(_T("FindDlg"));
141 CImageList
*imagelist
= new CImageList();
142 imagelist
->Create(IDB_BITMAP_REFTYPE
,16,3,RGB(255,255,255));
143 this->m_ctrlRefList
.SetImageList(imagelist
,LVSIL_SMALL
);
146 m_ctrlRefList
.GetClientRect(&rect
);
148 this->m_ctrlRefList
.InsertColumn(0,_T("Ref"),0, rect
.Width()-50);
153 void CFindDlg::RefreshList()
156 if (g_Git
.GetRefList(m_RefList
))
157 MessageBox(g_Git
.GetGitLastErr(_T("Could not get all refs.")), _T("TortoiseGit"), MB_ICONERROR
);
161 void CFindDlg::OnCbnEditchangeFindcombo()
164 GetDlgItem(IDOK
)->EnableWindow(!m_FindCombo
.GetString().IsEmpty());
167 void CFindDlg::AddToList()
169 this->m_ctrlRefList
.DeleteAllItems();
171 this->m_ctrlFilter
.GetWindowText(filter
);
174 for (size_t i
= 0; i
< m_RefList
.size(); ++i
)
177 CString ref
= m_RefList
[i
];
178 if(ref
.Find(_T("refs/tags")) == 0)
180 else if(ref
.Find(_T("refs/remotes"))==0)
182 else if(ref
.Find(_T("refs/heads"))== 0)
185 if(ref
.Find(filter
)>=0)
186 m_ctrlRefList
.InsertItem(item
++,ref
,nImage
);
190 void CFindDlg::OnNMClickListRef(NMHDR
*pNMHDR
, LRESULT
*pResult
)
192 LPNMITEMACTIVATE pNMItemActivate
= reinterpret_cast<LPNMITEMACTIVATE
>(pNMHDR
);
194 this->m_FindString
= this->m_ctrlRefList
.GetItemText(pNMItemActivate
->iItem
,0);
195 this->m_bIsRef
=true;
197 CWnd
*parent
= m_pParent
;
199 parent
= GetParent();
202 parent
->SendMessage(m_FindMsg
);
204 this->m_bIsRef
=false;
209 void CFindDlg::OnEnChangeEditFilter()
211 SetTimer(IDT_FILTER
, 1000, NULL
);
214 void CFindDlg::OnTimer(UINT_PTR nIDEvent
)
216 if( nIDEvent
== IDT_FILTER
)
218 KillTimer(IDT_FILTER
);
222 CResizableStandAloneDialog::OnTimer(nIDEvent
);