replace own balloon implementation with mfc one
[TortoiseGit.git] / src / TortoiseProc / ExportDlg.cpp
blob94e3b9a5d4b791c4881d0e90965286a81958167d
1 // TortoiseGit - a Windows shell extension for easy version control
3 // Copyright (C) 2003-2008 - TortoiseSVN
4 // Copyright (C) 2008-2011 - 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,_T("The folder is invalidate\r\n Export file must be a zip file\r\n"),
138 _T("TortoiseGit"), MB_OK|MB_ICONERROR);
139 return;
141 if( CMessageBox::Show(NULL,m_strExportDirectory+_T(" is exist\r\nDo you want to overwire it?"),
142 _T("TortoiseGit"), MB_YESNO|MB_ICONQUESTION|MB_DEFBUTTON2) != IDYES)
144 return ;
147 else if (m_strExportDirectory.IsEmpty())
149 CMessageBox::Show(NULL,_T("You must select a filename for the zip-file!"), _T("TortoiseGit"), 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,
174 _T("*.Zip"));
176 if(dlg.DoModal()==IDOK)
178 UpdateData(TRUE);
179 m_strExportDirectory = dlg.GetPathName();
180 UpdateData(FALSE);
184 BOOL CExportDlg::PreTranslateMessage(MSG* pMsg)
186 m_tooltips.RelayEvent(pMsg);
187 return CHorizontalResizableStandAloneDialog::PreTranslateMessage(pMsg);
190 void CExportDlg::OnEnChangeCheckoutdirectory()
192 UpdateData(TRUE);
193 DialogEnableWindow(IDOK, !m_strExportDirectory.IsEmpty());
196 void CExportDlg::OnBnClickedHelp()
198 OnHelp();
201 void CExportDlg::OnBnClickedShowlog()
203 m_tooltips.Pop(); // hide the tooltips
207 void CExportDlg::OnCbnSelchangeEolcombo()
211 void CExportDlg::OnCbnEditchangeUrlcombo()
213 if (!m_bAutoCreateTargetName)
214 return;
215 if (m_sExportDirOrig.IsEmpty())
216 return;
217 // find out what to use as the checkout directory name
218 UpdateData();
219 m_URLCombo.GetWindowText(m_URL);
220 if (m_URL.IsEmpty())
221 return;
222 CString name = CAppUtils::GetProjectNameFromURL(m_URL);
223 m_strExportDirectory = m_sExportDirOrig+_T('\\')+name;
224 UpdateData(FALSE);
227 void CExportDlg::OnDestroy()
229 WaitForFinishLoading();
230 __super::OnDestroy();