added new log filter (for subject)
[TortoiseGit.git] / src / TortoiseProc / PushDlg.h
blob98ebbf6b52809eb7f852e4079fe63bfc41c2d3b8
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2008-2011 - 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.
20 #pragma once
22 #include "HorizontalResizableStandAloneDialog.h"
23 #include "HistoryCombo.h"
24 #include "registry.h"
25 // CPushDlg dialog
27 class CPushDlg : public CHorizontalResizableStandAloneDialog
29 DECLARE_DYNAMIC(CPushDlg)
31 public:
32 CPushDlg(CWnd* pParent = NULL); // standard constructor
33 virtual ~CPushDlg();
35 // Dialog Data
36 enum { IDD = IDD_PUSH };
38 protected:
39 CHistoryCombo m_BranchRemote;
40 CHistoryCombo m_BranchSource;
41 CHistoryCombo m_Remote;
42 CHistoryCombo m_RemoteURL;
44 public:
45 CString m_URL;
46 CString m_BranchSourceName;
47 CString m_BranchRemoteName;
48 CRegString m_RemoteReg;
50 BOOL m_bTags;
51 BOOL m_bForce;
52 BOOL m_bPack;
53 BOOL m_bAutoLoad;
54 BOOL m_bPushAllBranches;
56 protected:
57 CRegDWORD m_regAutoLoad;
59 virtual BOOL OnInitDialog();
61 virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
63 DECLARE_MESSAGE_MAP()
65 afx_msg void OnBnClickedRd();
66 afx_msg void OnCbnSelchangeBranchSource();
67 afx_msg void OnBnClickedOk();
68 afx_msg void OnBnClickedRemoteManage();
69 afx_msg void OnBnClickedButtonBrowseSourceBranch();
70 afx_msg void OnBnClickedButtonBrowseDestBranch();
71 afx_msg void OnBnClickedPushall();
72 virtual BOOL PreTranslateMessage(MSG* pMsg);
73 void Refresh();
74 void GetRemoteBranch(CString currentBranch);