Don't import ogdf namespace
[TortoiseGit.git] / src / TortoiseProc / ChangedDlg.h
blob99f6b8a6cd43fb39f00c46f1d97c3c16c5ea44a1
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2008, 2011-2018 - TortoiseGit
4 // Copyright (C) 2003-2006,2008 - 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.
20 #pragma once
22 #include "StandAloneDlg.h"
23 #include "registry.h"
24 #include "MenuButton.h"
25 #include "TGitPath.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 = nullptr); // standard constructor
38 virtual ~CChangedDlg();
40 // Dialog Data
41 enum { IDD = IDD_CHANGEDFILES };
43 protected:
44 virtual void DoDataExchange(CDataExchange* pDX) override; // DDX/DDV support
45 virtual BOOL OnInitDialog() override;
46 virtual void OnOK() override;
47 virtual void OnCancel() override;
48 virtual BOOL PreTranslateMessage(MSG* pMsg) override;
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 OnBnClickedShowlocalchangesignored();
57 afx_msg void OnBnClickedWholeProject();
58 afx_msg void OnBnClickedShowStaged();
59 afx_msg LRESULT OnSVNStatusListCtrlNeedsRefresh(WPARAM, LPARAM);
60 afx_msg LRESULT OnSVNStatusListCtrlItemCountChanged(WPARAM, LPARAM);
62 DECLARE_MESSAGE_MAP()
64 private:
65 CMenuButton m_ctrlStash;
66 static UINT ChangedStatusThreadEntry(LPVOID pVoid);
67 UINT ChangedStatusThread();
68 void UpdateStatistics();
69 DWORD UpdateShowFlags();
70 void SetDlgTitle();
72 enum
74 // needs to start with 1, since 0 is the return value if *nothing* is clicked on in the context menu
75 ID_STASH_SAVE = 1,
76 ID_STASH_POP,
77 ID_STASH_APPLY,
78 ID_STASH_LIST,
81 public:
82 CTGitPathList m_pathList;
84 private:
85 CRegDWORD m_regAddBeforeCommit;
86 CRegDWORD m_regShowWholeProject;
87 CRegDWORD m_regShowStaged;
88 CGitStatusListCtrl m_FileListCtrl;
89 bool m_bRemote;
90 BOOL m_bShowUnversioned;
91 int m_iShowUnmodified;
92 BOOL m_bShowLocalChangesIgnored;
93 volatile LONG m_bBlock;
94 CString m_sTitle;
95 bool m_bCanceled;
96 BOOL m_bShowIgnored;
97 BOOL m_bWholeProject;
98 BOOL m_bShowStaged;