pulled latest translations from Transifex
[TortoiseGit.git] / src / TortoiseProc / ExportDlg.cpp
blob25b91349d8054066c5d983c4745e7873106798f6
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2003-2008 - TortoiseSVN
4 // Copyright (C) 2008-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 #include "stdafx.h"
21 #include "TortoiseProc.h"
22 #include "ExportDlg.h"
24 #include "Messagebox.h"
25 #include "PathUtils.h"
26 #include "BrowseFolder.h"
27 #include "AppUtils.h"
30 IMPLEMENT_DYNAMIC(CExportDlg, CHorizontalResizableStandAloneDialog)
31 CExportDlg::CExportDlg(CWnd* pParent /*=NULL*/)
32 : CHorizontalResizableStandAloneDialog(CExportDlg::IDD, pParent)
33 , CChooseVersion(this)
34 , m_Revision(_T("HEAD"))
35 , m_strExportDirectory(_T(""))
36 , m_sExportDirOrig(_T(""))
37 , m_bNoExternals(FALSE)
38 , m_pLogDlg(NULL)
42 CExportDlg::~CExportDlg()
44 if (m_pLogDlg)
45 delete m_pLogDlg;
48 void CExportDlg::DoDataExchange(CDataExchange* pDX)
50 CHorizontalResizableStandAloneDialog::DoDataExchange(pDX);
51 DDX_Text(pDX, IDC_CHECKOUTDIRECTORY, m_strExportDirectory);
52 DDX_Control(pDX, IDC_CHECKOUTDIRECTORY, m_cCheckoutEdit);
54 CHOOSE_VERSION_DDX;
59 BEGIN_MESSAGE_MAP(CExportDlg, CHorizontalResizableStandAloneDialog)
60 ON_BN_CLICKED(IDC_CHECKOUTDIRECTORY_BROWSE, OnBnClickedCheckoutdirectoryBrowse)
61 ON_EN_CHANGE(IDC_CHECKOUTDIRECTORY, OnEnChangeCheckoutdirectory)
62 ON_BN_CLICKED(IDHELP, OnBnClickedHelp)
64 CHOOSE_VERSION_EVENT
65 ON_WM_DESTROY()
66 END_MESSAGE_MAP()
68 BOOL CExportDlg::OnInitDialog()
70 CHorizontalResizableStandAloneDialog::OnInitDialog();
71 CAppUtils::MarkWindowAsUnpinnable(m_hWnd);
73 m_sExportDirOrig = m_strExportDirectory;
74 m_bAutoCreateTargetName = !PathIsDirectoryEmpty(m_sExportDirOrig);
76 AddAnchor(IDC_REPOGROUP, TOP_LEFT, TOP_RIGHT);
77 AddAnchor(IDC_EXPORT_CHECKOUTDIR, TOP_LEFT);
78 AddAnchor(IDC_CHECKOUTDIRECTORY_BROWSE, TOP_RIGHT);
79 AddAnchor(IDC_CHECKOUTDIRECTORY, TOP_LEFT, TOP_RIGHT);
81 AddAnchor(IDOK, BOTTOM_RIGHT);
82 AddAnchor(IDCANCEL, BOTTOM_RIGHT);
83 AddAnchor(IDHELP, BOTTOM_RIGHT);
85 CString sWindowTitle;
86 GetWindowText(sWindowTitle);
87 CAppUtils::SetWindowTitle(m_hWnd, g_Git.m_CurrentDir, sWindowTitle);
89 CHOOSE_VERSION_ADDANCHOR;
90 this->AddOthersToAnchor();
91 Init();
92 if(this->m_Revision.IsEmpty())
94 SetDefaultChoose(IDC_RADIO_HEAD);
96 else
98 SetDefaultChoose(IDC_RADIO_VERSION);
99 this->GetDlgItem(IDC_COMBOBOXEX_VERSION)->SetWindowTextW(m_Revision);
102 m_tooltips.Create(this);
103 m_tooltips.AddTool(IDC_CHECKOUTDIRECTORY, IDS_CHECKOUT_TT_DIR);
105 SHAutoComplete(GetDlgItem(IDC_CHECKOUTDIRECTORY)->m_hWnd, SHACF_FILESYSTEM);
107 if ((m_pParentWnd==NULL)&&(hWndExplorer))
108 CenterWindow(CWnd::FromHandle(hWndExplorer));
109 EnableSaveRestore(_T("ExportDlg"));
110 return TRUE;
113 void CExportDlg::OnOK()
115 if (!UpdateData(TRUE))
116 return; // don't dismiss dialog (error message already shown by MFC framework)
118 // check it the export path is a valid windows path
119 UpdateRevsionName();
121 if (m_VersionName.IsEmpty())
123 m_tooltips.ShowBalloon(IDC_COMBOBOXEX_VERSION, IDS_ERR_INVALIDREV, IDS_ERR_ERROR, TTI_ERROR);
124 return;
127 m_bAutoCreateTargetName = false;
129 // m_URLCombo.SaveHistory();
130 // m_URL = m_URLCombo.GetString();
133 if(::PathFileExists(this->m_strExportDirectory))
135 if(::PathIsDirectory(m_strExportDirectory))
137 CMessageBox::Show(NULL, IDS_PROCEXPORTERRFOLDER, IDS_APPNAME, MB_OK | MB_ICONERROR);
138 return;
140 CString sMessage;
141 sMessage.Format(IDS_PROC_OVERWRITE_CONFIRM, m_strExportDirectory);
142 if (CMessageBox::Show(NULL, sMessage, _T("TortoiseGit"), MB_YESNO | MB_ICONQUESTION | MB_DEFBUTTON2) != IDYES)
144 return ;
147 else if (m_strExportDirectory.IsEmpty())
149 CMessageBox::Show(NULL, IDS_PROC_NOZIPFILE, IDS_APPNAME, MB_OK | MB_ICONERROR);
150 return;
153 UpdateData(FALSE);
154 CHorizontalResizableStandAloneDialog::OnOK();
157 void CExportDlg::OnBnClickedBrowse()
159 m_tooltips.Pop(); // hide the tooltips
163 void CExportDlg::OnBnClickedCheckoutdirectoryBrowse()
165 m_tooltips.Pop(); // hide the tooltips
167 // Create a folder browser dialog. If the user selects OK, we should update
168 // the local data members with values from the controls, copy the checkout
169 // directory from the browse folder, then restore the local values into the
170 // dialog controls.
172 this->UpdateRevsionName();
173 CFileDialog dlg(FALSE, _T("zip"), this->m_VersionName, OFN_HIDEREADONLY | OFN_OVERWRITEPROMPT, _T("*.zip"));
175 if(dlg.DoModal()==IDOK)
177 UpdateData(TRUE);
178 m_strExportDirectory = dlg.GetPathName();
179 UpdateData(FALSE);
183 BOOL CExportDlg::PreTranslateMessage(MSG* pMsg)
185 m_tooltips.RelayEvent(pMsg);
186 return CHorizontalResizableStandAloneDialog::PreTranslateMessage(pMsg);
189 void CExportDlg::OnEnChangeCheckoutdirectory()
191 UpdateData(TRUE);
192 DialogEnableWindow(IDOK, !m_strExportDirectory.IsEmpty());
195 void CExportDlg::OnBnClickedHelp()
197 OnHelp();
200 void CExportDlg::OnBnClickedShowlog()
202 m_tooltips.Pop(); // hide the tooltips
206 void CExportDlg::OnCbnSelchangeEolcombo()
210 void CExportDlg::OnCbnEditchangeUrlcombo()
212 if (!m_bAutoCreateTargetName)
213 return;
214 if (m_sExportDirOrig.IsEmpty())
215 return;
216 // find out what to use as the checkout directory name
217 UpdateData();
218 m_URLCombo.GetWindowText(m_URL);
219 if (m_URL.IsEmpty())
220 return;
221 CString name = CAppUtils::GetProjectNameFromURL(m_URL);
222 m_strExportDirectory = m_sExportDirOrig+_T('\\')+name;
223 UpdateData(FALSE);
226 void CExportDlg::OnDestroy()
228 WaitForFinishLoading();
229 __super::OnDestroy();