OSDN Git Service

Add SYNC dialog
[tortoisegit/TortoiseGitJp.git] / src / TortoiseProc / SyncDlg.h
diff --git a/src/TortoiseProc/SyncDlg.h b/src/TortoiseProc/SyncDlg.h
new file mode 100644 (file)
index 0000000..4e6dfd7
--- /dev/null
@@ -0,0 +1,57 @@
+// TortoiseGit - a Windows shell extension for easy version control\r
+\r
+// Copyright (C) 2008-2009 - TortoiseGit\r
+\r
+// This program is free software; you can redistribute it and/or\r
+// modify it under the terms of the GNU General Public License\r
+// as published by the Free Software Foundation; either version 2\r
+// of the License, or (at your option) any later version.\r
+\r
+// This program is distributed in the hope that it will be useful,\r
+// but WITHOUT ANY WARRANTY; without even the implied warranty of\r
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
+// GNU General Public License for more details.\r
+\r
+// You should have received a copy of the GNU General Public License\r
+// along with this program; if not, write to the Free Software Foundation,\r
+// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\r
+//\r
+\r
+#pragma once\r
+#include "afxcmn.h"\r
+#include "afxwin.h"\r
+\r
+\r
+// CSyncDlg dialog\r
+\r
+class CSyncDlg : public CDialog\r
+{\r
+       DECLARE_DYNAMIC(CSyncDlg)\r
+\r
+public:\r
+       CSyncDlg(CWnd* pParent = NULL);   // standard constructor\r
+       virtual ~CSyncDlg();\r
+\r
+// Dialog Data\r
+       enum { IDD = IDD_SYNC };\r
+\r
+protected:\r
+       virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support\r
+\r
+       DECLARE_MESSAGE_MAP()\r
+public:\r
+       BOOL m_bAutoLoadPuttyKey;\r
+       CComboBoxEx m_ctrlLocalBranch;\r
+       CComboBoxEx m_ctrlRemoteBranch;\r
+       CComboBoxEx m_ctrlURL;\r
+       CButton m_ctrlDumyButton;\r
+       CButton m_ctrlPull;\r
+       CButton m_ctrlPush;\r
+       CStatic m_ctrlStatus;\r
+       afx_msg void OnBnClickedButtonPull();\r
+       afx_msg void OnBnClickedButtonPush();\r
+       afx_msg void OnBnClickedButtonApply();\r
+       afx_msg void OnBnClickedButtonEmail();\r
+       CProgressCtrl m_ctrlProgress;\r
+       CAnimateCtrl m_ctrlAnimate;\r
+};\r