Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 :
20 : #undef SC_DLLIMPLEMENTATION
21 :
22 : #include <sfx2/app.hxx>
23 : #include <sfx2/docfile.hxx>
24 : #include <sfx2/docinsert.hxx>
25 : #include <sfx2/filedlghelper.hxx>
26 : #include <svtools/ehdl.hxx>
27 : #include <svtools/sfxecode.hxx>
28 : #include <vcl/msgbox.hxx>
29 :
30 : #include "global.hxx"
31 : #include "docsh.hxx"
32 : #include "viewdata.hxx"
33 : #include "scresid.hxx"
34 : #include "globstr.hrc"
35 : #include "instbdlg.hxx"
36 :
37 0 : ScInsertTableDlg::ScInsertTableDlg( vcl::Window* pParent, ScViewData& rData, SCTAB nTabCount, bool bFromFile )
38 : : ModalDialog(pParent, "InsertSheetDialog", "modules/scalc/ui/insertsheet.ui")
39 : , rViewData(rData)
40 0 : , rDoc(*rData.GetDocument())
41 : , pDocShTables(NULL)
42 : , pDocInserter(NULL)
43 : , bMustClose(false)
44 : , nSelTabIndex(0)
45 0 : , nTableCount(nTabCount)
46 : {
47 0 : get(m_pBtnBefore, "before");
48 0 : get(m_pBtnBehind, "after");
49 0 : get(m_pBtnNew, "new");
50 0 : get(m_pBtnFromFile, "fromfile");
51 0 : get(m_pFtCount, "countft");
52 0 : get(m_pNfCount, "countnf");
53 0 : get(m_pFtName, "nameft");
54 0 : get(m_pEdName, "nameed");
55 0 : m_sSheetDotDotDot = m_pEdName->GetText();
56 0 : get(m_pLbTables, "tables");
57 0 : m_pLbTables->SetDropDownLineCount(8);
58 0 : get(m_pFtPath, "path");
59 0 : get(m_pBtnBrowse, "browse");
60 0 : get(m_pBtnLink, "link");
61 0 : get(m_pBtnOk, "ok");
62 0 : Init_Impl( bFromFile );
63 0 : }
64 :
65 0 : ScInsertTableDlg::~ScInsertTableDlg()
66 : {
67 0 : disposeOnce();
68 0 : }
69 :
70 0 : void ScInsertTableDlg::dispose()
71 : {
72 0 : if (pDocShTables)
73 0 : pDocShTables->DoClose();
74 0 : delete pDocInserter;
75 0 : m_pBtnBefore.clear();
76 0 : m_pBtnBehind.clear();
77 0 : m_pBtnNew.clear();
78 0 : m_pBtnFromFile.clear();
79 0 : m_pFtCount.clear();
80 0 : m_pNfCount.clear();
81 0 : m_pFtName.clear();
82 0 : m_pEdName.clear();
83 0 : m_pLbTables.clear();
84 0 : m_pFtPath.clear();
85 0 : m_pBtnBrowse.clear();
86 0 : m_pBtnLink.clear();
87 0 : m_pBtnOk.clear();
88 0 : ModalDialog::dispose();
89 0 : }
90 :
91 0 : void ScInsertTableDlg::Init_Impl( bool bFromFile )
92 : {
93 0 : m_pLbTables->EnableMultiSelection(true);
94 0 : m_pBtnBrowse->SetClickHdl( LINK( this, ScInsertTableDlg, BrowseHdl_Impl ) );
95 0 : m_pBtnNew->SetClickHdl( LINK( this, ScInsertTableDlg, ChoiceHdl_Impl ) );
96 0 : m_pBtnFromFile->SetClickHdl( LINK( this, ScInsertTableDlg, ChoiceHdl_Impl ) );
97 0 : m_pLbTables->SetSelectHdl( LINK( this, ScInsertTableDlg, SelectHdl_Impl ) );
98 0 : m_pNfCount->SetModifyHdl( LINK( this, ScInsertTableDlg, CountHdl_Impl));
99 0 : m_pBtnOk->SetClickHdl( LINK( this, ScInsertTableDlg, DoEnterHdl ));
100 0 : m_pBtnBefore->Check();
101 :
102 0 : m_pNfCount->SetText( OUString::number(nTableCount) );
103 0 : m_pNfCount->SetMax( MAXTAB - rDoc.GetTableCount() + 1 );
104 :
105 0 : if(nTableCount==1)
106 : {
107 0 : OUString aName;
108 0 : rDoc.CreateValidTabName( aName );
109 0 : m_pEdName->SetText( aName );
110 : }
111 : else
112 : {
113 0 : m_pEdName->SetText(m_sSheetDotDotDot);
114 0 : m_pFtName->Disable();
115 0 : m_pEdName->Disable();
116 : }
117 :
118 0 : bool bShared = rViewData.GetDocShell() && rViewData.GetDocShell()->IsDocShared();
119 :
120 0 : if ( !bFromFile || bShared )
121 : {
122 0 : m_pBtnNew->Check();
123 0 : SetNewTable_Impl();
124 0 : if ( bShared )
125 : {
126 0 : m_pBtnFromFile->Disable();
127 : }
128 : }
129 : else
130 : {
131 0 : m_pBtnFromFile->Check();
132 0 : SetFromTo_Impl();
133 :
134 0 : aBrowseTimer.SetTimeoutHdl( LINK( this, ScInsertTableDlg, BrowseTimeoutHdl ) );
135 0 : aBrowseTimer.SetTimeout( 200 );
136 : }
137 0 : }
138 :
139 0 : short ScInsertTableDlg::Execute()
140 : {
141 : // set Parent of DocumentInserter and Doc-Manager
142 0 : vcl::Window* pOldDefParent = Application::GetDefDialogParent();
143 0 : Application::SetDefDialogParent( this );
144 :
145 0 : if ( m_pBtnFromFile->IsChecked() )
146 0 : aBrowseTimer.Start();
147 :
148 0 : short nRet = ModalDialog::Execute();
149 0 : Application::SetDefDialogParent( pOldDefParent );
150 0 : return nRet;
151 : }
152 :
153 0 : void ScInsertTableDlg::SetNewTable_Impl()
154 : {
155 0 : if (m_pBtnNew->IsChecked() )
156 : {
157 0 : m_pNfCount->Enable();
158 0 : m_pFtCount->Enable();
159 0 : m_pLbTables->Disable();
160 0 : m_pFtPath->Disable();
161 0 : m_pBtnBrowse->Disable();
162 0 : m_pBtnLink->Disable();
163 :
164 0 : if(nTableCount==1)
165 : {
166 0 : m_pEdName->Enable();
167 0 : m_pFtName->Enable();
168 : }
169 : }
170 0 : }
171 :
172 0 : void ScInsertTableDlg::SetFromTo_Impl()
173 : {
174 0 : if (m_pBtnFromFile->IsChecked() )
175 : {
176 0 : m_pEdName->Disable();
177 0 : m_pFtName->Disable();
178 0 : m_pFtCount->Disable();
179 0 : m_pNfCount->Disable();
180 0 : m_pLbTables->Enable();
181 0 : m_pFtPath->Enable();
182 0 : m_pBtnBrowse->Enable();
183 0 : m_pBtnLink->Enable();
184 : }
185 0 : }
186 :
187 0 : void ScInsertTableDlg::FillTables_Impl( ScDocument* pSrcDoc )
188 : {
189 0 : m_pLbTables->SetUpdateMode( false );
190 0 : m_pLbTables->Clear();
191 :
192 0 : if ( pSrcDoc )
193 : {
194 0 : SCTAB nCount = pSrcDoc->GetTableCount();
195 0 : OUString aName;
196 :
197 0 : for ( SCTAB i=0; i<nCount; i++ )
198 : {
199 0 : pSrcDoc->GetName( i, aName );
200 0 : m_pLbTables->InsertEntry( aName );
201 0 : }
202 : }
203 :
204 0 : m_pLbTables->SetUpdateMode( true );
205 :
206 0 : if(m_pLbTables->GetEntryCount()==1)
207 0 : m_pLbTables->SelectEntryPos(0);
208 0 : }
209 :
210 0 : const OUString* ScInsertTableDlg::GetFirstTable( sal_uInt16* pN )
211 : {
212 0 : const OUString* pStr = NULL;
213 :
214 0 : if ( m_pBtnNew->IsChecked() )
215 : {
216 0 : aStrCurSelTable = m_pEdName->GetText();
217 0 : pStr = &aStrCurSelTable;
218 : }
219 0 : else if ( nSelTabIndex < m_pLbTables->GetSelectEntryCount() )
220 : {
221 0 : aStrCurSelTable = m_pLbTables->GetSelectEntry( 0 );
222 0 : pStr = &aStrCurSelTable;
223 0 : if ( pN )
224 0 : *pN = m_pLbTables->GetSelectEntryPos( 0 );
225 0 : nSelTabIndex = 1;
226 : }
227 :
228 0 : return pStr;
229 : }
230 :
231 0 : const OUString* ScInsertTableDlg::GetNextTable( sal_uInt16* pN )
232 : {
233 0 : const OUString* pStr = NULL;
234 :
235 0 : if ( !m_pBtnNew->IsChecked() && nSelTabIndex < m_pLbTables->GetSelectEntryCount() )
236 : {
237 0 : aStrCurSelTable = m_pLbTables->GetSelectEntry( nSelTabIndex );
238 0 : pStr = &aStrCurSelTable;
239 0 : if ( pN )
240 0 : *pN = m_pLbTables->GetSelectEntryPos( nSelTabIndex );
241 0 : nSelTabIndex++;
242 : }
243 :
244 0 : return pStr;
245 : }
246 :
247 : // Handler:
248 :
249 0 : IMPL_LINK_NOARG(ScInsertTableDlg, CountHdl_Impl)
250 : {
251 0 : nTableCount = static_cast<SCTAB>(m_pNfCount->GetValue());
252 0 : if ( nTableCount==1)
253 : {
254 0 : OUString aName;
255 0 : rDoc.CreateValidTabName( aName );
256 0 : m_pEdName->SetText( aName );
257 0 : m_pFtName->Enable();
258 0 : m_pEdName->Enable();
259 : }
260 : else
261 : {
262 0 : m_pEdName->SetText(m_sSheetDotDotDot);
263 0 : m_pFtName->Disable();
264 0 : m_pEdName->Disable();
265 : }
266 :
267 0 : DoEnable_Impl();
268 0 : return 0;
269 : }
270 :
271 0 : IMPL_LINK_NOARG(ScInsertTableDlg, ChoiceHdl_Impl)
272 : {
273 0 : if ( m_pBtnNew->IsChecked() )
274 0 : SetNewTable_Impl();
275 : else
276 0 : SetFromTo_Impl();
277 :
278 0 : DoEnable_Impl();
279 0 : return 0;
280 : }
281 :
282 0 : IMPL_LINK_NOARG(ScInsertTableDlg, BrowseHdl_Impl)
283 : {
284 0 : if ( pDocInserter )
285 0 : delete pDocInserter;
286 : pDocInserter = new ::sfx2::DocumentInserter(
287 0 : OUString::createFromAscii( ScDocShell::Factory().GetShortName() ) );
288 0 : pDocInserter->StartExecuteModal( LINK( this, ScInsertTableDlg, DialogClosedHdl ) );
289 0 : return 0;
290 : }
291 :
292 0 : IMPL_LINK_NOARG(ScInsertTableDlg, SelectHdl_Impl)
293 : {
294 0 : DoEnable_Impl();
295 0 : return 0;
296 : }
297 :
298 0 : void ScInsertTableDlg::DoEnable_Impl()
299 : {
300 0 : if ( m_pBtnNew->IsChecked() || ( pDocShTables && m_pLbTables->GetSelectEntryCount() ) )
301 0 : m_pBtnOk->Enable();
302 : else
303 0 : m_pBtnOk->Disable();
304 0 : }
305 :
306 0 : IMPL_LINK_NOARG(ScInsertTableDlg, DoEnterHdl)
307 : {
308 0 : if(nTableCount > 1 || ScDocument::ValidTabName(m_pEdName->GetText()))
309 : {
310 0 : EndDialog(RET_OK);
311 : }
312 : else
313 : {
314 0 : OUString aErrMsg ( ScGlobal::GetRscString( STR_INVALIDTABNAME ) );
315 0 : (void)ScopedVclPtrInstance<MessageDialog>::Create(this, aErrMsg)->Execute();
316 : }
317 0 : return 0;
318 : }
319 :
320 0 : IMPL_LINK_NOARG_TYPED(ScInsertTableDlg, BrowseTimeoutHdl, Timer *, void)
321 : {
322 0 : bMustClose = true;
323 0 : BrowseHdl_Impl(m_pBtnBrowse);
324 0 : }
325 :
326 0 : IMPL_LINK( ScInsertTableDlg, DialogClosedHdl, sfx2::FileDialogHelper*, _pFileDlg )
327 : {
328 0 : if ( ERRCODE_NONE == _pFileDlg->GetError() )
329 : {
330 0 : SfxMedium* pMed = pDocInserter->CreateMedium();
331 0 : if ( pMed )
332 : {
333 : // ERRCTX_SFX_OPENDOC -> "Error loading document"
334 0 : SfxErrorContext aEc( ERRCTX_SFX_OPENDOC, pMed->GetName() );
335 :
336 0 : if ( pDocShTables )
337 0 : pDocShTables->DoClose(); // deletion is done when assigning to the reference
338 :
339 0 : pMed->UseInteractionHandler( true ); // to enable the filter options dialog
340 :
341 0 : pDocShTables = new ScDocShell;
342 0 : aDocShTablesRef = pDocShTables;
343 :
344 0 : Pointer aOldPtr( GetPointer() );
345 0 : SetPointer( Pointer( PointerStyle::Wait ) );
346 0 : pDocShTables->DoLoad( pMed );
347 0 : SetPointer( aOldPtr );
348 :
349 0 : sal_uLong nErr = pDocShTables->GetErrorCode();
350 0 : if ( nErr )
351 0 : ErrorHandler::HandleError( nErr ); // warnings, too
352 :
353 0 : if ( !pDocShTables->GetError() ) // errors only
354 : {
355 0 : FillTables_Impl( &pDocShTables->GetDocument() );
356 0 : m_pFtPath->SetText( pDocShTables->GetTitle( SFX_TITLE_FULLNAME ) );
357 : }
358 : else
359 : {
360 0 : pDocShTables->DoClose();
361 0 : aDocShTablesRef.Clear();
362 0 : pDocShTables = NULL;
363 :
364 0 : FillTables_Impl( NULL );
365 0 : m_pFtPath->SetText( EMPTY_OUSTRING );
366 0 : }
367 : }
368 :
369 0 : DoEnable_Impl();
370 : }
371 0 : else if ( bMustClose )
372 : // execute slot FID_INS_TABLE_EXT and cancel file dialog
373 0 : EndDialog( RET_CANCEL );
374 :
375 0 : return 0;
376 0 : }
377 :
378 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|