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 : #include <basic/basmgr.hxx>
21 : #include <basic/sbmod.hxx>
22 : #include <basic/sbx.hxx>
23 : #include <bastype2.hxx>
24 : #include <basobj.hxx>
25 : #include <baside2.hrc>
26 : #include <iderid.hxx>
27 : #include <bastypes.hxx>
28 : #include <basdoc.hxx>
29 : #include <com/sun/star/script/XLibraryContainer.hpp>
30 : #include <com/sun/star/script/XLibraryContainerPassword.hpp>
31 : #include <deque>
32 : #include <sfx2/docfac.hxx>
33 : #include "svtools/treelistentry.hxx"
34 :
35 : namespace basctl
36 : {
37 :
38 : using namespace ::com::sun::star::uno;
39 : using namespace ::com::sun::star;
40 :
41 :
42 : typedef std::deque< SvTreeListEntry* > EntryArray;
43 :
44 :
45 0 : void TreeListBox::RequestingChildren( SvTreeListEntry* pEntry )
46 : {
47 0 : EntryDescriptor aDesc = GetEntryDescriptor(pEntry);
48 0 : ScriptDocument aDocument = aDesc.GetDocument();
49 : OSL_ENSURE( aDocument.isAlive(), "basctl::TreeListBox::RequestingChildren: invalid document!" );
50 0 : if ( !aDocument.isAlive() )
51 0 : return;
52 :
53 0 : LibraryLocation eLocation = aDesc.GetLocation();
54 0 : EntryType eType = aDesc.GetType();
55 :
56 0 : if ( eType == OBJ_TYPE_DOCUMENT )
57 : {
58 0 : ImpCreateLibEntries( pEntry, aDocument, eLocation );
59 : }
60 0 : else if ( eType == OBJ_TYPE_LIBRARY )
61 : {
62 0 : OUString aOULibName( aDesc.GetLibName() );
63 :
64 : // check password
65 0 : bool bOK = true;
66 0 : Reference< script::XLibraryContainer > xModLibContainer( aDocument.getLibraryContainer( E_SCRIPTS ) );
67 0 : if ( xModLibContainer.is() && xModLibContainer->hasByName( aOULibName ) )
68 : {
69 0 : Reference< script::XLibraryContainerPassword > xPasswd( xModLibContainer, UNO_QUERY );
70 0 : if ( xPasswd.is() && xPasswd->isLibraryPasswordProtected( aOULibName ) && !xPasswd->isLibraryPasswordVerified( aOULibName ) )
71 : {
72 0 : OUString aPassword;
73 0 : bOK = QueryPassword( xModLibContainer, aOULibName, aPassword );
74 0 : }
75 : }
76 :
77 0 : if ( bOK )
78 : {
79 : // load module library
80 0 : bool bModLibLoaded = false;
81 0 : if ( xModLibContainer.is() && xModLibContainer->hasByName( aOULibName ) )
82 : {
83 0 : if ( !xModLibContainer->isLibraryLoaded( aOULibName ) )
84 : {
85 0 : EnterWait();
86 0 : xModLibContainer->loadLibrary( aOULibName );
87 0 : LeaveWait();
88 : }
89 0 : bModLibLoaded = xModLibContainer->isLibraryLoaded( aOULibName );
90 : }
91 :
92 : // load dialog library
93 0 : bool bDlgLibLoaded = false;
94 0 : Reference< script::XLibraryContainer > xDlgLibContainer( aDocument.getLibraryContainer( E_DIALOGS ), UNO_QUERY );
95 0 : if ( xDlgLibContainer.is() && xDlgLibContainer->hasByName( aOULibName ) )
96 : {
97 0 : if ( !xDlgLibContainer->isLibraryLoaded( aOULibName ) )
98 : {
99 0 : EnterWait();
100 0 : xDlgLibContainer->loadLibrary( aOULibName );
101 0 : LeaveWait();
102 : }
103 0 : bDlgLibLoaded = xDlgLibContainer->isLibraryLoaded( aOULibName );
104 : }
105 :
106 0 : if ( bModLibLoaded || bDlgLibLoaded )
107 : {
108 : // create the sub entries
109 0 : ImpCreateLibSubEntries( pEntry, aDocument, aOULibName );
110 :
111 : // exchange image
112 0 : bool bDlgMode = ( nMode & BROWSEMODE_DIALOGS ) && !( nMode & BROWSEMODE_MODULES );
113 0 : Image aImage( IDEResId( bDlgMode ? RID_IMG_DLGLIB : RID_IMG_MODLIB ) );
114 0 : SetEntryBitmaps( pEntry, aImage );
115 : }
116 : else
117 : {
118 : OSL_FAIL( "basctl::TreeListBox::RequestingChildren: Error loading library!" );
119 0 : }
120 0 : }
121 : }
122 0 : else if ( eType == OBJ_TYPE_DOCUMENT_OBJECTS
123 : || eType == OBJ_TYPE_USERFORMS
124 : || eType == OBJ_TYPE_NORMAL_MODULES
125 : || eType == OBJ_TYPE_CLASS_MODULES )
126 : {
127 0 : OUString aLibName( aDesc.GetLibName() );
128 0 : ImpCreateLibSubSubEntriesInVBAMode( pEntry, aDocument, aLibName );
129 : }
130 : else {
131 : OSL_FAIL( "basctl::TreeListBox::RequestingChildren: Unknown Type!" );
132 0 : }
133 : }
134 :
135 0 : void TreeListBox::ExpandedHdl()
136 : {
137 0 : SvTreeListEntry* pEntry = GetHdlEntry();
138 : DBG_ASSERT( pEntry, "Was wurde zugeklappt?" );
139 :
140 0 : if ( !IsExpanded( pEntry ) && pEntry->HasChildrenOnDemand() )
141 : {
142 0 : SvTreeListEntry* pChild = FirstChild( pEntry );
143 0 : while ( pChild )
144 : {
145 0 : GetModel()->Remove( pChild ); // does also call the DTOR
146 0 : pChild = FirstChild( pEntry );
147 : }
148 : }
149 0 : }
150 :
151 0 : void TreeListBox::ScanAllEntries()
152 : {
153 0 : ScanEntry( ScriptDocument::getApplicationScriptDocument(), LIBRARY_LOCATION_USER );
154 0 : ScanEntry( ScriptDocument::getApplicationScriptDocument(), LIBRARY_LOCATION_SHARE );
155 :
156 0 : ScriptDocuments aDocuments( ScriptDocument::getAllScriptDocuments( ScriptDocument::DocumentsSorted ) );
157 0 : for ( ScriptDocuments::const_iterator doc = aDocuments.begin();
158 0 : doc != aDocuments.end();
159 : ++doc
160 : )
161 : {
162 0 : if ( doc->isAlive() )
163 0 : ScanEntry( *doc, LIBRARY_LOCATION_DOCUMENT );
164 0 : }
165 0 : }
166 :
167 0 : SbxVariable* TreeListBox::FindVariable( SvTreeListEntry* pEntry )
168 : {
169 0 : if ( !pEntry )
170 0 : return 0;
171 :
172 0 : ScriptDocument aDocument( ScriptDocument::getApplicationScriptDocument() );
173 0 : EntryArray aEntries;
174 :
175 0 : while ( pEntry )
176 : {
177 0 : sal_uInt16 nDepth = GetModel()->GetDepth( pEntry );
178 0 : switch ( nDepth )
179 : {
180 : case 4:
181 : case 3:
182 : case 2:
183 : case 1:
184 : {
185 0 : aEntries.push_front( pEntry );
186 : }
187 0 : break;
188 : case 0:
189 : {
190 0 : aDocument = static_cast<DocumentEntry*>(pEntry->GetUserData())->GetDocument();
191 : }
192 0 : break;
193 : }
194 0 : pEntry = GetParent( pEntry );
195 : }
196 :
197 0 : SbxVariable* pVar = 0;
198 0 : bool bDocumentObjects = false;
199 0 : if ( !aEntries.empty() )
200 : {
201 0 : for ( size_t n = 0; n < aEntries.size(); n++ )
202 : {
203 0 : SvTreeListEntry* pLE = aEntries[n];
204 : DBG_ASSERT( pLE, "Can not find entry in array" );
205 0 : Entry* pBE = static_cast<Entry*>(pLE->GetUserData());
206 : DBG_ASSERT( pBE, "The data in the entry not found!" );
207 0 : String aName( GetEntryText( pLE ) );
208 :
209 0 : switch ( pBE->GetType() )
210 : {
211 : case OBJ_TYPE_LIBRARY:
212 : {
213 0 : if (BasicManager* pBasMgr = aDocument.getBasicManager())
214 0 : pVar = pBasMgr->GetLib( aName );
215 : }
216 0 : break;
217 : case OBJ_TYPE_MODULE:
218 : {
219 : DBG_ASSERT(dynamic_cast<StarBASIC*>(pVar), "FindVariable: invalid Basic");
220 : // extract the module name from the string like "Sheet1 (Example1)"
221 0 : if( bDocumentObjects )
222 : {
223 0 : sal_uInt16 nIndex = 0;
224 0 : aName = aName.GetToken( 0, ' ', nIndex );
225 : }
226 0 : pVar = static_cast<StarBASIC*>(pVar)->FindModule( aName );
227 : }
228 0 : break;
229 : case OBJ_TYPE_METHOD:
230 : {
231 : DBG_ASSERT(dynamic_cast<SbxObject*>(pVar), "FindVariable: invalid modul/object");
232 0 : pVar = static_cast<SbxObject*>(pVar)->GetMethods()->Find(aName, SbxCLASS_METHOD);
233 : }
234 0 : break;
235 : case OBJ_TYPE_DIALOG:
236 : {
237 : // sbx dialogs removed
238 : }
239 0 : break;
240 : case OBJ_TYPE_DOCUMENT_OBJECTS:
241 0 : bDocumentObjects = true;
242 : case OBJ_TYPE_USERFORMS:
243 : case OBJ_TYPE_NORMAL_MODULES:
244 : case OBJ_TYPE_CLASS_MODULES:
245 : {
246 : // skip, to find the child entry.
247 0 : continue;
248 : }
249 : default:
250 : {
251 : OSL_FAIL( "FindVariable: Unbekannter Typ!" );
252 0 : pVar = 0;
253 : }
254 0 : break;
255 : }
256 0 : if ( !pVar )
257 : break;
258 0 : }
259 : }
260 :
261 0 : return pVar;
262 : }
263 :
264 0 : EntryDescriptor TreeListBox::GetEntryDescriptor( SvTreeListEntry* pEntry )
265 : {
266 0 : ScriptDocument aDocument( ScriptDocument::getApplicationScriptDocument() );
267 0 : LibraryLocation eLocation = LIBRARY_LOCATION_UNKNOWN;
268 0 : String aLibName;
269 0 : String aLibSubName;
270 0 : String aName;
271 0 : String aMethodName;
272 0 : EntryType eType = OBJ_TYPE_UNKNOWN;
273 :
274 0 : if ( !pEntry )
275 0 : return EntryDescriptor( aDocument, eLocation, aLibName, aLibSubName, aName, aMethodName, eType );
276 :
277 0 : EntryArray aEntries;
278 :
279 0 : while ( pEntry )
280 : {
281 0 : sal_uInt16 nDepth = GetModel()->GetDepth( pEntry );
282 0 : switch ( nDepth )
283 : {
284 : case 4:
285 : case 3:
286 : case 2:
287 : case 1:
288 : {
289 0 : aEntries.push_front( pEntry );
290 : }
291 0 : break;
292 : case 0:
293 : {
294 0 : if (DocumentEntry* pDocumentEntry = static_cast<DocumentEntry*>(pEntry->GetUserData()))
295 : {
296 0 : aDocument = pDocumentEntry->GetDocument();
297 0 : eLocation = pDocumentEntry->GetLocation();
298 0 : eType = OBJ_TYPE_DOCUMENT;
299 : }
300 : }
301 0 : break;
302 : }
303 0 : pEntry = GetParent( pEntry );
304 : }
305 :
306 0 : if ( !aEntries.empty() )
307 : {
308 0 : for ( size_t n = 0; n < aEntries.size(); n++ )
309 : {
310 0 : SvTreeListEntry* pLE = aEntries[n];
311 : DBG_ASSERT( pLE, "Entrie im Array nicht gefunden" );
312 0 : Entry* pBE = static_cast<Entry*>(pLE->GetUserData());
313 : DBG_ASSERT( pBE, "Keine Daten im Eintrag gefunden!" );
314 :
315 0 : switch ( pBE->GetType() )
316 : {
317 : case OBJ_TYPE_LIBRARY:
318 : {
319 0 : aLibName = GetEntryText( pLE );
320 0 : eType = pBE->GetType();
321 : }
322 0 : break;
323 : case OBJ_TYPE_MODULE:
324 : {
325 0 : aName = GetEntryText( pLE );
326 0 : eType = pBE->GetType();
327 : }
328 0 : break;
329 : case OBJ_TYPE_METHOD:
330 : {
331 0 : aMethodName = GetEntryText( pLE );
332 0 : eType = pBE->GetType();
333 : }
334 0 : break;
335 : case OBJ_TYPE_DIALOG:
336 : {
337 0 : aName = GetEntryText( pLE );
338 0 : eType = pBE->GetType();
339 : }
340 0 : break;
341 : case OBJ_TYPE_DOCUMENT_OBJECTS:
342 : case OBJ_TYPE_USERFORMS:
343 : case OBJ_TYPE_NORMAL_MODULES:
344 : case OBJ_TYPE_CLASS_MODULES:
345 : {
346 0 : aLibSubName = GetEntryText( pLE );
347 0 : eType = pBE->GetType();
348 : }
349 0 : break;
350 : default:
351 : {
352 : OSL_FAIL( "GetEntryDescriptor: Unbekannter Typ!" );
353 0 : eType = OBJ_TYPE_UNKNOWN;
354 : }
355 0 : break;
356 : }
357 :
358 0 : if ( eType == OBJ_TYPE_UNKNOWN )
359 0 : break;
360 : }
361 : }
362 :
363 0 : return EntryDescriptor( aDocument, eLocation, aLibName, aLibSubName, aName, aMethodName, eType );
364 : }
365 :
366 0 : ItemType TreeListBox::ConvertType (EntryType eType)
367 : {
368 0 : switch (eType)
369 : {
370 0 : case OBJ_TYPE_DOCUMENT: return TYPE_SHELL;
371 0 : case OBJ_TYPE_LIBRARY: return TYPE_LIBRARY;
372 0 : case OBJ_TYPE_MODULE: return TYPE_MODULE;
373 0 : case OBJ_TYPE_DIALOG: return TYPE_DIALOG;
374 0 : case OBJ_TYPE_METHOD: return TYPE_METHOD;
375 : default:
376 0 : return static_cast<ItemType>(OBJ_TYPE_UNKNOWN);
377 : }
378 : }
379 :
380 0 : bool TreeListBox::IsValidEntry( SvTreeListEntry* pEntry )
381 : {
382 0 : bool bIsValid = false;
383 :
384 0 : EntryDescriptor aDesc( GetEntryDescriptor( pEntry ) );
385 0 : ScriptDocument aDocument( aDesc.GetDocument() );
386 0 : LibraryLocation eLocation( aDesc.GetLocation() );
387 0 : String aLibName( aDesc.GetLibName() );
388 0 : String aName( aDesc.GetName() );
389 0 : String aMethodName( aDesc.GetMethodName() );
390 0 : EntryType eType( aDesc.GetType() );
391 :
392 0 : switch ( eType )
393 : {
394 : case OBJ_TYPE_DOCUMENT:
395 : {
396 0 : bIsValid = aDocument.isAlive()
397 0 : && (aDocument.isApplication()
398 0 : || GetRootEntryName(aDocument, eLocation).equals(GetEntryText(pEntry)));
399 : }
400 0 : break;
401 : case OBJ_TYPE_LIBRARY:
402 : {
403 0 : bIsValid = aDocument.hasLibrary( E_SCRIPTS, aLibName ) || aDocument.hasLibrary( E_DIALOGS, aLibName );
404 : }
405 0 : break;
406 : case OBJ_TYPE_MODULE:
407 : {
408 0 : bIsValid = aDocument.hasModule( aLibName, aName );
409 : }
410 0 : break;
411 : case OBJ_TYPE_DIALOG:
412 : {
413 0 : bIsValid = aDocument.hasDialog( aLibName, aName );
414 : }
415 0 : break;
416 : case OBJ_TYPE_METHOD:
417 : {
418 0 : bIsValid = HasMethod( aDocument, aLibName, aName, aMethodName );
419 : }
420 0 : break;
421 : case OBJ_TYPE_DOCUMENT_OBJECTS:
422 : case OBJ_TYPE_USERFORMS:
423 : case OBJ_TYPE_NORMAL_MODULES:
424 : case OBJ_TYPE_CLASS_MODULES:
425 : {
426 0 : bIsValid = true;
427 : }
428 0 : break;
429 : default: ;
430 : }
431 :
432 0 : return bIsValid;
433 : }
434 :
435 0 : SbModule* TreeListBox::FindModule( SvTreeListEntry* pEntry )
436 : {
437 0 : return dynamic_cast<SbModule*>(FindVariable(pEntry));
438 : }
439 :
440 0 : SvTreeListEntry* TreeListBox::FindRootEntry( const ScriptDocument& rDocument, LibraryLocation eLocation )
441 : {
442 : OSL_ENSURE( rDocument.isValid(), "basctl::TreeListBox::FindRootEntry: invalid document!" );
443 0 : sal_uLong nRootPos = 0;
444 0 : SvTreeListEntry* pRootEntry = GetEntry( nRootPos );
445 0 : while ( pRootEntry )
446 : {
447 : DBG_ASSERT( static_cast<Entry*>(pRootEntry->GetUserData())->GetType() == OBJ_TYPE_DOCUMENT, "Kein Shelleintrag?" );
448 0 : DocumentEntry* pBDEntry = static_cast<DocumentEntry*>(pRootEntry->GetUserData());
449 0 : if (pBDEntry && pBDEntry->GetDocument() == rDocument && pBDEntry->GetLocation() == eLocation)
450 0 : return pRootEntry;
451 0 : pRootEntry = GetEntry( ++nRootPos );
452 : }
453 0 : return 0;
454 : }
455 :
456 0 : OUString CreateMgrAndLibStr( const OUString& rMgrName, const OUString& rLibName )
457 : {
458 0 : return "[" + rMgrName + "]." + rLibName;
459 : }
460 :
461 :
462 : } // namespace basctl
463 :
464 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|