Don't import ogdf namespace
[TortoiseGit.git] / src / TortoiseProc / RevisionGraph / RevGraphFilterDlg.h
blobbf5c91653d78f372ad29021063efdb4d147d4e0e
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2003-2006 - Stefan Kueng
4 // Copyright (C) 2012, 2014-2016 - TortoiseGit
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
21 #include "acedit.h"
23 /**
24 * \ingroup TortoiseProc
25 * helper dialog to enter filter data for the revision graph.
27 class CRevGraphFilterDlg : public CDialog
29 DECLARE_DYNAMIC(CRevGraphFilterDlg)
31 public:
32 CRevGraphFilterDlg(CWnd* pParent = nullptr); // standard constructor
33 virtual ~CRevGraphFilterDlg();
35 void GetRevisionRange (CString& minrev, CString& maxrev);
36 void SetRevisionRange (CString minrev, CString maxrev);
38 // Dialog Data
39 enum { IDD = IDD_REVGRAPHFILTER };
41 BOOL m_bCurrentBranch;
42 BOOL m_bLocalBranches;
44 protected:
45 virtual void DoDataExchange(CDataExchange* pDX) override; // DDX/DDV support
46 afx_msg void OnBnClickedResetfilter();
47 afx_msg void OnBnClickedCurrentBranch();
48 afx_msg void OnBnClickedLocalBranches();
49 virtual BOOL OnInitDialog() override;
50 virtual void OnOK() override;
52 DECLARE_MESSAGE_MAP()
53 CString m_sFromRev;
54 CString m_sToRev;
55 afx_msg void OnBnClickedRev1btn1();
56 afx_msg void OnBnClickedRev1btn2();
57 CACEdit m_ctrlFromRev;
58 CACEdit m_ctrlToRev;