Fixed issue #1264: TortoiseProc might crash if commands are executed w/o a working...
[TortoiseGit.git] / src / TortoiseProc / PushDlg.h
blob43be275206f3a0aa6663e99c16b4b5bc799f6e7d
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 "MenuButton.h"
25 #include "registry.h"
26 // CPushDlg dialog
28 class CPushDlg : public CHorizontalResizableStandAloneDialog
30 DECLARE_DYNAMIC(CPushDlg)
32 public:
33 CPushDlg(CWnd* pParent = NULL); // standard constructor
34 virtual ~CPushDlg();
36 // Dialog Data
37 enum { IDD = IDD_PUSH };
39 protected:
40 CHistoryCombo m_BranchRemote;
41 CHistoryCombo m_BranchSource;
42 CHistoryCombo m_Remote;
43 CHistoryCombo m_RemoteURL;
44 CMenuButton m_BrowseLocalRef;
46 public:
47 CString m_URL;
48 CString m_BranchSourceName;
49 CString m_BranchRemoteName;
50 CRegString m_RemoteReg;
52 BOOL m_bTags;
53 BOOL m_bForce;
54 BOOL m_bPack;
55 BOOL m_bAutoLoad;
56 BOOL m_bPushAllBranches;
58 protected:
59 CRegDWORD m_regAutoLoad;
61 virtual BOOL OnInitDialog();
63 virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
65 DECLARE_MESSAGE_MAP()
67 afx_msg void OnBnClickedRd();
68 afx_msg void OnCbnSelchangeBranchSource();
69 afx_msg void OnBnClickedOk();
70 afx_msg void OnBnClickedRemoteManage();
71 afx_msg void OnBnClickedButtonBrowseSourceBranch();
72 afx_msg void OnBnClickedButtonBrowseDestBranch();
73 afx_msg void OnBnClickedPushall();
74 virtual BOOL PreTranslateMessage(MSG* pMsg);
75 void Refresh();
76 void GetRemoteBranch(CString currentBranch);