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 :
21 : #include "DrawViewShell.hxx"
22 : #include <com/sun/star/form/FormButtonType.hpp>
23 : #include <com/sun/star/beans/XPropertySet.hpp>
24 : #include <comphelper/string.hxx>
25 : #include <svx/svxids.hrc>
26 : #include <svx/globl3d.hxx>
27 : #include <svx/hlnkitem.hxx>
28 : #include <editeng/eeitem.hxx>
29 : #include <editeng/flditem.hxx>
30 : #include <sfx2/viewfrm.hxx>
31 : #include <svl/whiter.hxx>
32 : #include <svl/eitem.hxx>
33 : #include <svl/itempool.hxx>
34 : #include <sfx2/tplpitem.hxx>
35 : #include <sfx2/bindings.hxx>
36 : #include <sfx2/app.hxx>
37 : #include <sfx2/templdlg.hxx>
38 : #include <svx/xdef.hxx>
39 : #include <svx/svddef.hxx>
40 : #include <svx/fmglob.hxx>
41 : #include <svx/svdouno.hxx>
42 : #include <svx/fmshell.hxx>
43 : #include <svl/cjkoptions.hxx>
44 :
45 : #ifndef SD_FRAME_VIEW
46 : #include "FrameView.hxx"
47 : #endif
48 : #include "Outliner.hxx"
49 : #include "app.hrc"
50 :
51 : #include "app.hxx"
52 : #include "stlsheet.hxx"
53 : #include "drawview.hxx"
54 : #include "drawdoc.hxx"
55 : #include "Window.hxx"
56 : #include "ViewShellBase.hxx"
57 : #include "FormShellManager.hxx"
58 : #include "cfgids.hxx"
59 : #include "anminfo.hxx"
60 :
61 : using ::rtl::OUString;
62 : using namespace ::com::sun::star;
63 :
64 : namespace sd {
65 :
66 : /*************************************************************************
67 : |*
68 : |* Status von Controller-SfxSlots setzen
69 : |*
70 : \************************************************************************/
71 :
72 0 : void DrawViewShell::GetCtrlState(SfxItemSet &rSet)
73 : {
74 0 : if (rSet.GetItemState(SID_RELOAD) != SFX_ITEM_UNKNOWN)
75 : {
76 : // "Letzte Version" vom SFx en/disablen lassen
77 0 : GetViewFrame()->GetSlotState (SID_RELOAD, NULL, &rSet);
78 : }
79 :
80 0 : if (SFX_ITEM_AVAILABLE == rSet.GetItemState(SID_HYPERLINK_GETLINK))
81 : {
82 0 : SvxHyperlinkItem aHLinkItem;
83 :
84 0 : OutlinerView* pOLV = mpDrawView->GetTextEditOutlinerView();
85 :
86 0 : if (pOLV)
87 : {
88 0 : bool bField = false;
89 0 : const SvxFieldItem* pFieldItem = pOLV->GetFieldAtSelection();
90 0 : if (pFieldItem)
91 : {
92 0 : ESelection aSel = pOLV->GetSelection();
93 0 : if ( abs( aSel.nEndPos - aSel.nStartPos ) == 1 )
94 : {
95 0 : const SvxFieldData* pField = pFieldItem->GetField();
96 0 : if (pField->ISA(SvxURLField))
97 : {
98 0 : aHLinkItem.SetName(((const SvxURLField*) pField)->GetRepresentation());
99 0 : aHLinkItem.SetURL(((const SvxURLField*) pField)->GetURL());
100 0 : aHLinkItem.SetTargetFrame(((const SvxURLField*) pField)->GetTargetFrame());
101 0 : bField = true;
102 : }
103 : }
104 : }
105 0 : if (!bField)
106 : {
107 : // use selected text as name for urls
108 0 : String sReturn = pOLV->GetSelected();
109 0 : sReturn.Erase(255);
110 0 : aHLinkItem.SetName(comphelper::string::stripEnd(sReturn, ' '));
111 : }
112 : }
113 : else
114 : {
115 0 : if (mpDrawView->GetMarkedObjectList().GetMarkCount() > 0)
116 : {
117 0 : bool bFound = false;
118 :
119 0 : SdrObject* pMarkedObj = mpDrawView->GetMarkedObjectList().GetMark(0)->GetMarkedSdrObj();
120 0 : if( pMarkedObj && (FmFormInventor == pMarkedObj->GetObjInventor()) )
121 : {
122 0 : SdrUnoObj* pUnoCtrl = dynamic_cast< SdrUnoObj* >( pMarkedObj );
123 :
124 0 : if(pUnoCtrl) try
125 : {
126 0 : uno::Reference< awt::XControlModel > xControlModel( pUnoCtrl->GetUnoControlModel(), uno::UNO_QUERY_THROW );
127 0 : uno::Reference< beans::XPropertySet > xPropSet( xControlModel, uno::UNO_QUERY_THROW );
128 0 : uno::Reference< beans::XPropertySetInfo > xPropInfo( xPropSet->getPropertySetInfo(), uno::UNO_QUERY_THROW );
129 :
130 0 : form::FormButtonType eButtonType = form::FormButtonType_URL;
131 0 : const OUString sButtonType( "ButtonType" );
132 0 : if(xPropInfo->hasPropertyByName( sButtonType ) && (xPropSet->getPropertyValue( sButtonType ) >>= eButtonType ) )
133 : {
134 0 : OUString aString;
135 :
136 : // Label
137 0 : const OUString sLabel( "Label" );
138 0 : if(xPropInfo->hasPropertyByName(sLabel))
139 : {
140 0 : if( xPropSet->getPropertyValue(sLabel) >>= aString )
141 0 : aHLinkItem.SetName(String( aString ));
142 : }
143 :
144 : // URL
145 0 : const OUString sTargetURL( "TargetURL" );
146 0 : if(xPropInfo->hasPropertyByName(sTargetURL))
147 : {
148 0 : if( xPropSet->getPropertyValue(sTargetURL) >>= aString )
149 0 : aHLinkItem.SetURL(String( aString ));
150 : }
151 :
152 : // Target
153 0 : const OUString sTargetFrame( "TargetFrame" );
154 0 : if(xPropInfo->hasPropertyByName(sTargetFrame) )
155 : {
156 0 : if( xPropSet->getPropertyValue(sTargetFrame) >>= aString )
157 0 : aHLinkItem.SetTargetFrame(String( aString ));
158 : }
159 :
160 0 : aHLinkItem.SetInsertMode(HLINK_BUTTON);
161 0 : bFound = true;
162 0 : }
163 : }
164 0 : catch( uno::Exception& )
165 : {
166 : }
167 : }
168 :
169 : // try interaction link
170 0 : if( !bFound && pMarkedObj )
171 : {
172 0 : SdAnimationInfo* pInfo = SdDrawDocument::GetShapeUserData(*pMarkedObj);
173 0 : if( pInfo && (pInfo->meClickAction == presentation::ClickAction_DOCUMENT) )
174 0 : aHLinkItem.SetURL( pInfo->GetBookmark());
175 0 : aHLinkItem.SetInsertMode(HLINK_BUTTON);
176 : }
177 : }
178 : }
179 :
180 0 : rSet.Put(aHLinkItem);
181 : }
182 0 : rSet.Put( SfxBoolItem( SID_READONLY_MODE, mbReadOnly ) );
183 :
184 : // Ausgabequalitaet
185 0 : if( SFX_ITEM_AVAILABLE == rSet.GetItemState( SID_OUTPUT_QUALITY_COLOR ) ||
186 0 : SFX_ITEM_AVAILABLE == rSet.GetItemState( SID_OUTPUT_QUALITY_GRAYSCALE ) ||
187 0 : SFX_ITEM_AVAILABLE == rSet.GetItemState( SID_OUTPUT_QUALITY_BLACKWHITE ) ||
188 0 : SFX_ITEM_AVAILABLE == rSet.GetItemState( SID_OUTPUT_QUALITY_CONTRAST ) )
189 : {
190 0 : const sal_uLong nMode = (sal_Int32)GetActiveWindow()->GetDrawMode();
191 0 : rSet.Put( SfxBoolItem( SID_OUTPUT_QUALITY_COLOR, (sal_Bool)((sal_uLong)OUTPUT_DRAWMODE_COLOR == nMode) ) );
192 0 : rSet.Put( SfxBoolItem( SID_OUTPUT_QUALITY_GRAYSCALE, (sal_Bool)((sal_uLong)OUTPUT_DRAWMODE_GRAYSCALE == nMode) ) );
193 0 : rSet.Put( SfxBoolItem( SID_OUTPUT_QUALITY_BLACKWHITE, (sal_Bool)((sal_uLong)OUTPUT_DRAWMODE_BLACKWHITE == nMode) ) );
194 0 : rSet.Put( SfxBoolItem( SID_OUTPUT_QUALITY_CONTRAST, (sal_Bool)((sal_uLong)OUTPUT_DRAWMODE_CONTRAST == nMode) ) );
195 : }
196 :
197 0 : if ( SFX_ITEM_AVAILABLE == rSet.GetItemState(SID_MAIL_SCROLLBODY_PAGEDOWN) )
198 : {
199 0 : rSet.Put( SfxBoolItem( SID_MAIL_SCROLLBODY_PAGEDOWN, sal_True ) );
200 : }
201 :
202 0 : if ( SFX_ITEM_AVAILABLE == rSet.GetItemState(SID_ATTR_YEAR2000) )
203 : {
204 0 : FmFormShell* pFormShell = GetViewShellBase().GetFormShellManager()->GetFormShell();
205 0 : if (pFormShell != NULL)
206 : {
207 0 : sal_uInt16 nState = 0;
208 0 : if (pFormShell->GetY2KState(nState))
209 0 : rSet.Put( SfxUInt16Item( SID_ATTR_YEAR2000, nState ) );
210 : else
211 0 : rSet.DisableItem( SID_ATTR_YEAR2000 );
212 : }
213 : }
214 :
215 0 : if ( !GetView()->GetTextEditOutliner() )
216 : {
217 0 : SvtCJKOptions aCJKOptions;
218 0 : if( !aCJKOptions.IsChangeCaseMapEnabled() )
219 : {
220 0 : GetViewFrame()->GetBindings().SetVisibleState( SID_TRANSLITERATE_HALFWIDTH, sal_False );
221 0 : GetViewFrame()->GetBindings().SetVisibleState( SID_TRANSLITERATE_FULLWIDTH, sal_False );
222 0 : GetViewFrame()->GetBindings().SetVisibleState( SID_TRANSLITERATE_HIRAGANA, sal_False );
223 0 : GetViewFrame()->GetBindings().SetVisibleState( SID_TRANSLITERATE_KATAGANA, sal_False );
224 : }
225 : else
226 : {
227 0 : GetViewFrame()->GetBindings().SetVisibleState( SID_TRANSLITERATE_HALFWIDTH, sal_True );
228 0 : GetViewFrame()->GetBindings().SetVisibleState( SID_TRANSLITERATE_FULLWIDTH, sal_True );
229 0 : GetViewFrame()->GetBindings().SetVisibleState( SID_TRANSLITERATE_HIRAGANA, sal_True );
230 0 : GetViewFrame()->GetBindings().SetVisibleState( SID_TRANSLITERATE_KATAGANA, sal_True );
231 : }
232 :
233 0 : rSet.DisableItem( SID_TRANSLITERATE_SENTENCE_CASE );
234 0 : rSet.DisableItem( SID_TRANSLITERATE_TITLE_CASE );
235 0 : rSet.DisableItem( SID_TRANSLITERATE_TOGGLE_CASE );
236 0 : rSet.DisableItem( SID_TRANSLITERATE_UPPER );
237 0 : rSet.DisableItem( SID_TRANSLITERATE_LOWER );
238 0 : rSet.DisableItem( SID_TRANSLITERATE_HALFWIDTH );
239 0 : rSet.DisableItem( SID_TRANSLITERATE_FULLWIDTH );
240 0 : rSet.DisableItem( SID_TRANSLITERATE_HIRAGANA );
241 0 : rSet.DisableItem( SID_TRANSLITERATE_KATAGANA );
242 : }
243 : else
244 : {
245 0 : SvtCJKOptions aCJKOptions;
246 0 : if( !aCJKOptions.IsChangeCaseMapEnabled() )
247 : {
248 0 : GetViewFrame()->GetBindings().SetVisibleState( SID_TRANSLITERATE_HALFWIDTH, sal_False );
249 0 : GetViewFrame()->GetBindings().SetVisibleState( SID_TRANSLITERATE_FULLWIDTH, sal_False );
250 0 : GetViewFrame()->GetBindings().SetVisibleState( SID_TRANSLITERATE_HIRAGANA, sal_False );
251 0 : GetViewFrame()->GetBindings().SetVisibleState( SID_TRANSLITERATE_KATAGANA, sal_False );
252 0 : rSet.DisableItem( SID_TRANSLITERATE_HALFWIDTH );
253 0 : rSet.DisableItem( SID_TRANSLITERATE_FULLWIDTH );
254 0 : rSet.DisableItem( SID_TRANSLITERATE_HIRAGANA );
255 0 : rSet.DisableItem( SID_TRANSLITERATE_KATAGANA );
256 : }
257 : else
258 : {
259 0 : GetViewFrame()->GetBindings().SetVisibleState( SID_TRANSLITERATE_HALFWIDTH, sal_True );
260 0 : GetViewFrame()->GetBindings().SetVisibleState( SID_TRANSLITERATE_FULLWIDTH, sal_True );
261 0 : GetViewFrame()->GetBindings().SetVisibleState( SID_TRANSLITERATE_HIRAGANA, sal_True );
262 0 : GetViewFrame()->GetBindings().SetVisibleState( SID_TRANSLITERATE_KATAGANA, sal_True );
263 0 : }
264 : }
265 0 : }
266 :
267 :
268 : /*************************************************************************
269 : |*
270 : |* Status der Attribut-Items
271 : |*
272 : \************************************************************************/
273 :
274 0 : void DrawViewShell::GetAttrState( SfxItemSet& rSet )
275 : {
276 0 : SfxWhichIter aIter( rSet );
277 0 : sal_uInt16 nWhich = aIter.FirstWhich();
278 :
279 0 : sal_Bool bAttr = sal_False;
280 0 : SfxAllItemSet aAllSet( *rSet.GetPool() );
281 :
282 0 : while ( nWhich )
283 : {
284 0 : sal_uInt16 nSlotId = SfxItemPool::IsWhich(nWhich)
285 0 : ? GetPool().GetSlotId(nWhich)
286 0 : : nWhich;
287 0 : switch ( nSlotId )
288 : {
289 : case SID_ATTR_FILL_STYLE:
290 : case SID_ATTR_FILL_COLOR:
291 : case SID_ATTR_FILL_GRADIENT:
292 : case SID_ATTR_FILL_HATCH:
293 : case SID_ATTR_FILL_BITMAP:
294 : case SID_ATTR_FILL_SHADOW:
295 : case SID_ATTR_LINE_STYLE:
296 : case SID_ATTR_LINE_DASH:
297 : case SID_ATTR_LINE_WIDTH:
298 : case SID_ATTR_LINE_COLOR:
299 : case SID_ATTR_TEXT_FITTOSIZE:
300 : {
301 0 : bAttr = sal_True;
302 : }
303 0 : break;
304 :
305 : case SID_HYPHENATION:
306 : {
307 0 : SfxItemSet aAttrs( GetDoc()->GetPool() );
308 0 : mpDrawView->GetAttributes( aAttrs );
309 0 : if( aAttrs.GetItemState( EE_PARA_HYPHENATE ) >= SFX_ITEM_AVAILABLE )
310 : {
311 0 : sal_Bool bValue = ( (const SfxBoolItem&) aAttrs.Get( EE_PARA_HYPHENATE ) ).GetValue();
312 0 : rSet.Put( SfxBoolItem( SID_HYPHENATION, bValue ) );
313 0 : }
314 : }
315 0 : break;
316 :
317 : case SID_STYLE_FAMILY2:
318 : case SID_STYLE_FAMILY3:
319 : case SID_STYLE_FAMILY5:
320 : case SID_STYLE_APPLY: // StyleControl
321 : {
322 0 : SfxStyleSheet* pStyleSheet = mpDrawView->GetStyleSheet();
323 0 : if( pStyleSheet )
324 : {
325 0 : if( nSlotId != SID_STYLE_APPLY && !mpDrawView->AreObjectsMarked() )
326 : {
327 0 : SfxTemplateItem aTmpItem( nWhich, String() );
328 0 : aAllSet.Put( aTmpItem, aTmpItem.Which() );
329 : }
330 : else
331 : {
332 0 : if (pStyleSheet->GetFamily() == SD_STYLE_FAMILY_MASTERPAGE)
333 0 : pStyleSheet = ((SdStyleSheet*)pStyleSheet)->GetPseudoStyleSheet();
334 :
335 0 : if( pStyleSheet )
336 : {
337 0 : SfxStyleFamily eFamily = pStyleSheet->GetFamily();
338 :
339 0 : if ((eFamily == SD_STYLE_FAMILY_GRAPHICS && nSlotId == SID_STYLE_FAMILY2) ||
340 : (eFamily == SD_STYLE_FAMILY_CELL && nSlotId == SID_STYLE_FAMILY3) ||
341 : (eFamily == SD_STYLE_FAMILY_PSEUDO && nSlotId == SID_STYLE_FAMILY5))
342 : {
343 0 : SfxTemplateItem aTmpItem ( nWhich, pStyleSheet->GetName() );
344 0 : aAllSet.Put( aTmpItem, aTmpItem.Which() );
345 : }
346 : else
347 : {
348 0 : SfxTemplateItem aTmpItem(nWhich, String());
349 0 : aAllSet.Put(aTmpItem,aTmpItem.Which() );
350 : }
351 : }
352 : }
353 : }
354 : else
355 0 : { SfxTemplateItem aItem( nWhich, String() );
356 0 : aAllSet.Put( aItem, aItem.Which() );
357 : }
358 : }
359 0 : break;
360 :
361 : case SID_SET_DEFAULT:
362 : {
363 0 : if( !mpDrawView->GetMarkedObjectList().GetMarkCount() ||
364 0 : ( !mpDrawView->IsTextEdit() && !mpDrawView->GetStyleSheet() )
365 : )
366 0 : rSet.DisableItem( nWhich );
367 : }
368 0 : break;
369 :
370 : case SID_STYLE_WATERCAN:
371 : {
372 0 : ISfxTemplateCommon* pTemplateCommon = SFX_APP()->GetCurrentTemplateCommon(GetViewFrame()->GetBindings());
373 0 : if (pTemplateCommon && pTemplateCommon->GetActualFamily() == SD_STYLE_FAMILY_PSEUDO)
374 0 : rSet.Put(SfxBoolItem(nWhich,sal_False));
375 : else
376 : {
377 0 : SfxBoolItem aItem(nWhich, SD_MOD()->GetWaterCan());
378 0 : aAllSet.Put( aItem, aItem.Which());
379 : }
380 : }
381 0 : break;
382 :
383 : case SID_STYLE_NEW:
384 : {
385 0 : ISfxTemplateCommon* pTemplateCommon = SFX_APP()->GetCurrentTemplateCommon(GetViewFrame()->GetBindings());
386 0 : if (pTemplateCommon && pTemplateCommon->GetActualFamily() == SD_STYLE_FAMILY_PSEUDO)
387 0 : rSet.DisableItem(nWhich);
388 : }
389 0 : break;
390 :
391 : case SID_STYLE_DRAGHIERARCHIE:
392 : {
393 0 : ISfxTemplateCommon* pTemplateCommon = SFX_APP()->GetCurrentTemplateCommon(GetViewFrame()->GetBindings());
394 0 : if (pTemplateCommon && pTemplateCommon->GetActualFamily() == SD_STYLE_FAMILY_PSEUDO)
395 0 : rSet.DisableItem(nWhich);
396 : }
397 0 : break;
398 :
399 : case SID_STYLE_NEW_BY_EXAMPLE:
400 : {
401 : // PseudoStyleSheets koennen nicht 'by Example' erzeugt werden;
402 : // normale StyleSheets brauchen dafuer ein selektiertes Objekt
403 0 : ISfxTemplateCommon* pTemplCommon = SFX_APP()->GetCurrentTemplateCommon(GetViewFrame()->GetBindings());
404 0 : if (pTemplCommon)
405 : {
406 0 : if (pTemplCommon->GetActualFamily() == SD_STYLE_FAMILY_PSEUDO)
407 : {
408 0 : rSet.DisableItem(nWhich);
409 : }
410 0 : else if (pTemplCommon->GetActualFamily() == SD_STYLE_FAMILY_GRAPHICS)
411 : {
412 0 : if (!mpDrawView->AreObjectsMarked())
413 : {
414 0 : rSet.DisableItem(nWhich);
415 : }
416 : }
417 : }
418 : // falls (noch) kein Gestalter da ist, muessen wir uns auf den
419 : // View-Zustand zurueckziehen; eine aktuell eingestellte Familie
420 : // kann nicht beruecksichtigt werden
421 : else
422 : {
423 0 : if (!mpDrawView->AreObjectsMarked())
424 : {
425 0 : rSet.DisableItem(nWhich);
426 : }
427 : }
428 :
429 : }
430 0 : break;
431 :
432 : case SID_STYLE_UPDATE_BY_EXAMPLE:
433 : {
434 0 : if (!mpDrawView->AreObjectsMarked())
435 : {
436 0 : rSet.DisableItem(nWhich);
437 : }
438 : }
439 0 : break;
440 : }
441 0 : nWhich = aIter.NextWhich();
442 : }
443 :
444 0 : SfxItemSet* pSet = NULL;
445 :
446 0 : if( bAttr )
447 : {
448 0 : pSet = new SfxItemSet( GetDoc()->GetPool() );
449 0 : mpDrawView->GetAttributes( *pSet );
450 0 : rSet.Put( *pSet, sal_False );
451 : }
452 :
453 0 : rSet.Put( aAllSet, sal_False );
454 :
455 : // Flaechen und/oder Linienattribute wurden geaendert
456 0 : if( bAttr && pSet )
457 : {
458 : // Wenn die View selektierte Objekte besitzt, muessen entspr. Items
459 : // von SFX_ITEM_DEFAULT (_ON) auf SFX_ITEM_DISABLED geaendert werden
460 0 : if( mpDrawView->AreObjectsMarked() )
461 : {
462 0 : SfxWhichIter aNewIter( *pSet, XATTR_LINE_FIRST, XATTR_FILL_LAST );
463 0 : nWhich = aNewIter.FirstWhich();
464 0 : while( nWhich )
465 : {
466 0 : if( SFX_ITEM_DEFAULT == pSet->GetItemState( nWhich ) )
467 : {
468 0 : rSet.ClearItem( nWhich );
469 0 : rSet.DisableItem( nWhich );
470 : }
471 0 : nWhich = aNewIter.NextWhich();
472 0 : }
473 : }
474 0 : delete pSet;
475 0 : }
476 :
477 0 : }
478 :
479 :
480 : /*************************************************************************
481 : |*
482 : |* Text der Selektion zurueckgeben
483 : |*
484 : \************************************************************************/
485 :
486 0 : String DrawViewShell::GetSelectionText(sal_Bool bCompleteWords)
487 : {
488 0 : String aStrSelection;
489 0 : ::Outliner* pOl = mpDrawView->GetTextEditOutliner();
490 0 : OutlinerView* pOlView = mpDrawView->GetTextEditOutlinerView();
491 :
492 0 : if (pOl && pOlView)
493 : {
494 0 : if (bCompleteWords)
495 : {
496 0 : ESelection aSel = pOlView->GetSelection();
497 0 : String aStrCurrentDelimiters = pOl->GetWordDelimiters();
498 :
499 0 : pOl->SetWordDelimiters( OUString(" .,;\"'" ));
500 0 : aStrSelection = pOl->GetWord( aSel.nEndPara, aSel.nEndPos );
501 0 : pOl->SetWordDelimiters( aStrCurrentDelimiters );
502 : }
503 : else
504 : {
505 0 : aStrSelection = pOlView->GetSelected();
506 : }
507 : }
508 :
509 0 : return (aStrSelection);
510 : }
511 :
512 : /*************************************************************************
513 : |*
514 : |* Ist etwas selektiert?
515 : |*
516 : \************************************************************************/
517 :
518 0 : sal_Bool DrawViewShell::HasSelection(sal_Bool bText) const
519 : {
520 0 : sal_Bool bReturn = sal_False;
521 :
522 0 : if (bText)
523 : {
524 0 : OutlinerView* pOlView = mpDrawView->GetTextEditOutlinerView();
525 :
526 0 : if (pOlView && pOlView->GetSelected().Len() != 0)
527 : {
528 0 : bReturn = sal_True;
529 : }
530 : }
531 0 : else if (mpDrawView->GetMarkedObjectList().GetMarkCount() != 0)
532 : {
533 0 : bReturn = sal_True;
534 : }
535 :
536 0 : return bReturn;
537 : }
538 :
539 : } // end of namespace sd
540 :
541 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|