Dropped unused variables
[TortoiseGit.git] / src / TortoiseProc / RevisionGraph / RevGraphFilterDlg.h
blobb5b8da63fca88ff518556e742c6930cdbe3b434a
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2003-2006 - Stefan Kueng
4 // Copyright (C) 2012 - 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 "afxcmn.h"
22 #include "afxwin.h"
23 #include "acedit.h"
25 /**
26 * \ingroup TortoiseProc
27 * helper dialog to enter filter data for the revision graph.
29 class CRevGraphFilterDlg : public CDialog
31 DECLARE_DYNAMIC(CRevGraphFilterDlg)
33 public:
34 CRevGraphFilterDlg(CWnd* pParent = NULL); // standard constructor
35 virtual ~CRevGraphFilterDlg();
37 void GetRevisionRange (CString& minrev, CString& maxrev);
38 void SetRevisionRange (CString minrev, CString maxrev);
40 // Dialog Data
41 enum { IDD = IDD_REVGRAPHFILTER };
43 BOOL m_bCurrentBranch;
45 protected:
46 virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
47 afx_msg void OnBnClickedResetfilter();
48 virtual BOOL OnInitDialog();
49 virtual void OnOK();
51 DECLARE_MESSAGE_MAP()
52 CString m_sFromRev;
53 CString m_sToRev;
54 afx_msg void OnBnClickedRev1btn1();
55 afx_msg void OnBnClickedRev1btn2();
56 CACEdit m_ctrlFromRev;
57 CACEdit m_ctrlToRev;