OSDN Git Service

Record Push and Pull button at sync dialog
[tortoisegit/TortoiseGitJp.git] / src / TortoiseProc / SyncDlg.h
1 // TortoiseGit - a Windows shell extension for easy version control\r
2 \r
3 // Copyright (C) 2008-2009 - TortoiseGit\r
4 \r
5 // This program is free software; you can redistribute it and/or\r
6 // modify it under the terms of the GNU General Public License\r
7 // as published by the Free Software Foundation; either version 2\r
8 // of the License, or (at your option) any later version.\r
9 \r
10 // This program is distributed in the hope that it will be useful,\r
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of\r
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
13 // GNU General Public License for more details.\r
14 \r
15 // You should have received a copy of the GNU General Public License\r
16 // along with this program; if not, write to the Free Software Foundation,\r
17 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\r
18 //\r
19 \r
20 #pragma once\r
21 #include "afxcmn.h"\r
22 #include "afxwin.h"\r
23 \r
24 #include "StandAloneDlg.h"\r
25 #include "HistoryCombo.h"\r
26 #include "MenuButton.h"\r
27 #include "registry.h"\r
28 // CSyncDlg dialog\r
29 \r
30 class CSyncDlg : public CResizableStandAloneDialog\r
31 {\r
32         DECLARE_DYNAMIC(CSyncDlg)\r
33 \r
34 public:\r
35         CSyncDlg(CWnd* pParent = NULL);   // standard constructor\r
36         virtual ~CSyncDlg();\r
37 \r
38 // Dialog Data\r
39         enum { IDD = IDD_SYNC };\r
40 \r
41 protected:\r
42         virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support\r
43 \r
44         CRegDWORD m_regPullButton;\r
45         CRegDWORD m_regPushButton;\r
46 \r
47         DECLARE_MESSAGE_MAP()\r
48 public:\r
49         BOOL m_bAutoLoadPuttyKey;\r
50         CComboBoxEx m_ctrlLocalBranch;\r
51         CComboBoxEx m_ctrlRemoteBranch;\r
52         CComboBoxEx m_ctrlURL;\r
53         CButton m_ctrlDumyButton;\r
54         CMenuButton m_ctrlPull;\r
55         CMenuButton m_ctrlPush;\r
56         CMenuButton m_ctrlStatus;\r
57         afx_msg void OnBnClickedButtonPull();\r
58         afx_msg void OnBnClickedButtonPush();\r
59         afx_msg void OnBnClickedButtonApply();\r
60         afx_msg void OnBnClickedButtonEmail();\r
61         CProgressCtrl m_ctrlProgress;\r
62         CAnimateCtrl m_ctrlAnimate;\r
63         virtual BOOL OnInitDialog();\r
64 };\r