Fixed issue #4126: Capitalize the first letter in the Push dialog
[TortoiseGit.git] / src / TortoiseProc / LFSLocksDlg.h
blob1e52ea8077958b1b1c5d7c9d26ed112db7c86ae8
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2003-2023 - 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.
19 #pragma once
21 #include "StandAloneDlg.h"
22 #include "GitStatusListCtrl.h"
24 /**
25 * \ingroup TortoiseProc
26 * Dialog showing a list of versioned files which don't have the status 'normal'.
27 * The dialog effectively shows a list of files which can be reverted.
29 class CLFSLocksDlg : public CResizableStandAloneDialog
31 DECLARE_DYNAMIC(CLFSLocksDlg)
33 public:
34 CLFSLocksDlg(CWnd* pParent = nullptr); // standard constructor
35 virtual ~CLFSLocksDlg();
37 enum { IDD = IDD_LFS_LOCKS };
39 protected:
40 void DoDataExchange(CDataExchange* pDX) override; // DDX/DDV support
41 BOOL OnInitDialog() override;
42 BOOL PreTranslateMessage(MSG* pMsg) override;
43 afx_msg void OnBnClickedSelectall();
44 afx_msg void OnBnClickedUnLock();
45 afx_msg LRESULT OnStatusListCtrlNeedsRefresh(WPARAM, LPARAM);
46 afx_msg void OnTimer(UINT_PTR nIDEvent);
48 DECLARE_MESSAGE_MAP()
50 private:
51 static UINT LocksThreadEntry(LPVOID pVoid);
52 UINT LocksThread();
53 void Refresh();
55 public:
56 CTGitPathList m_pathList;
58 private:
59 volatile LONG m_bThreadRunning = FALSE;
60 CGitStatusListCtrl m_LocksList;
61 CButton m_SelectAll;
62 CButton m_Force;
63 CButton m_UnLock;
64 CButton m_Refresh;
65 bool m_bCancelled = false;