Use CAutoGeneralHandle
[TortoiseGit.git] / src / TortoiseProc / ChangedDlg.h
blob1366ef4b8f9e64da44dfbd8b8d3519aff98cacbc
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2003-2006,2008 - Stefan Kueng
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 "Git.h"
23 #include "Registry.h"
24 #include "Tooltip.h"
26 #include "GitStatusListCtrl.h"
28 /**
29 * \ingroup TortoiseProc
30 * Shows the "check for modifications" dialog.
32 class CChangedDlg : public CResizableStandAloneDialog
34 DECLARE_DYNAMIC(CChangedDlg)
36 public:
37 CChangedDlg(CWnd* pParent = NULL); // standard constructor
38 virtual ~CChangedDlg();
40 // Dialog Data
41 enum { IDD = IDD_CHANGEDFILES };
43 protected:
44 virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
45 virtual BOOL OnInitDialog();
46 virtual void OnOK();
47 virtual void OnCancel();
48 virtual BOOL PreTranslateMessage(MSG* pMsg);
49 afx_msg void OnBnClickedRefresh();
50 afx_msg void OnBnClickedCommit();
51 afx_msg void OnBnClickedStash();
52 afx_msg void OnBnClickedButtonUnifieddiff();
53 afx_msg void OnBnClickedShowunversioned();
54 afx_msg void OnBnClickedShowUnmodified();
55 afx_msg void OnBnClickedShowignored();
56 afx_msg void OnBnClickedShowexternals();
57 afx_msg void OnBnClickedShowUserProps();
58 afx_msg LRESULT OnSVNStatusListCtrlNeedsRefresh(WPARAM, LPARAM);
59 afx_msg LRESULT OnSVNStatusListCtrlItemCountChanged(WPARAM, LPARAM);
61 DECLARE_MESSAGE_MAP()
63 private:
64 CButton m_ctrlStash;
65 static UINT ChangedStatusThreadEntry(LPVOID pVoid);
66 UINT ChangedStatusThread();
67 void UpdateStatistics();
68 DWORD UpdateShowFlags();
70 enum
72 // needs to start with 1, since 0 is the return value if *nothing* is clicked on in the context menu
73 ID_STASH_SAVE = 1,
74 ID_STASH_POP,
75 ID_STASH_APPLY,
76 ID_STASH_LIST,
79 public:
80 CTGitPathList m_pathList;
82 private:
83 CRegDWORD m_regAddBeforeCommit;
84 CGitStatusListCtrl m_FileListCtrl;
85 bool m_bRemote;
86 BOOL m_bShowUnversioned;
87 int m_iShowUnmodified;
88 volatile LONG m_bBlock;
89 CString m_sTitle;
90 bool m_bCanceled;
91 BOOL m_bShowIgnored;
92 BOOL m_bShowExternals;
93 BOOL m_bShowUserProps;
94 CToolTips m_tooltips;