LCOV - code coverage report
Current view: top level - sd/source/ui/view - drviewsf.cxx (source / functions) Hit Total Coverage
Test: commit e02a6cb2c3e2b23b203b422e4e0680877f232636 Lines: 0 363 0.0 %
Date: 2014-04-14 Functions: 0 4 0.0 %
Legend: Lines: hit not hit

          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             : #include "FrameView.hxx"
      46             : #include "Outliner.hxx"
      47             : #include "app.hrc"
      48             : 
      49             : #include "sdmod.hxx"
      50             : #include "stlsheet.hxx"
      51             : #include "drawview.hxx"
      52             : #include "drawdoc.hxx"
      53             : #include "Window.hxx"
      54             : #include "ViewShellBase.hxx"
      55             : #include "FormShellManager.hxx"
      56             : #include "cfgids.hxx"
      57             : #include "anminfo.hxx"
      58             : 
      59             : #include <editeng/lspcitem.hxx>
      60             : #include <editeng/ulspitem.hxx>
      61             : #include <editeng/lrspitem.hxx>
      62             : #include <editeng/escapementitem.hxx>
      63             : #include <editeng/numitem.hxx>
      64             : #include <editeng/adjustitem.hxx>
      65             : #include <svx/nbdtmgfact.hxx>
      66             : #include <svx/nbdtmg.hxx>
      67             : 
      68             : using namespace svx::sidebar;
      69             : using namespace ::com::sun::star;
      70             : 
      71             : namespace sd {
      72             : 
      73             : /**
      74             :  * Set state of controller SfxSlots
      75             :  */
      76           0 : void DrawViewShell::GetCtrlState(SfxItemSet &rSet)
      77             : {
      78           0 :     if (rSet.GetItemState(SID_RELOAD) != SFX_ITEM_UNKNOWN)
      79             :     {
      80             :         // let "last version" of SFx en/disable
      81           0 :         GetViewFrame()->GetSlotState (SID_RELOAD, NULL, &rSet);
      82             :     }
      83             : 
      84           0 :     if (SFX_ITEM_AVAILABLE == rSet.GetItemState(SID_HYPERLINK_GETLINK))
      85             :     {
      86           0 :         SvxHyperlinkItem aHLinkItem;
      87             : 
      88           0 :         OutlinerView* pOLV = mpDrawView->GetTextEditOutlinerView();
      89             : 
      90           0 :         if (pOLV)
      91             :         {
      92           0 :             bool bField = false;
      93           0 :             const SvxFieldItem* pFieldItem = pOLV->GetFieldAtSelection();
      94           0 :             if (pFieldItem)
      95             :             {
      96           0 :                 ESelection aSel = pOLV->GetSelection();
      97           0 :                 if ( abs( aSel.nEndPos - aSel.nStartPos ) == 1 )
      98             :                 {
      99           0 :                     const SvxFieldData* pField = pFieldItem->GetField();
     100           0 :                     if (pField->ISA(SvxURLField))
     101             :                     {
     102           0 :                         aHLinkItem.SetName(((const SvxURLField*) pField)->GetRepresentation());
     103           0 :                         aHLinkItem.SetURL(((const SvxURLField*) pField)->GetURL());
     104           0 :                         aHLinkItem.SetTargetFrame(((const SvxURLField*) pField)->GetTargetFrame());
     105           0 :                         bField = true;
     106             :                     }
     107             :                 }
     108             :             }
     109           0 :             if (!bField)
     110             :             {
     111             :                 // use selected text as name for urls
     112           0 :                 OUString sReturn = pOLV->GetSelected();
     113           0 :                 if (sReturn.getLength() > 255)
     114           0 :                     sReturn = sReturn.copy(0, 255);
     115           0 :                 aHLinkItem.SetName(comphelper::string::stripEnd(sReturn, ' '));
     116             :             }
     117             :         }
     118             :         else
     119             :         {
     120           0 :             if (mpDrawView->GetMarkedObjectList().GetMarkCount() > 0)
     121             :             {
     122           0 :                 bool bFound = false;
     123             : 
     124           0 :                 SdrObject* pMarkedObj = mpDrawView->GetMarkedObjectList().GetMark(0)->GetMarkedSdrObj();
     125           0 :                 if( pMarkedObj && (FmFormInventor == pMarkedObj->GetObjInventor()) )
     126             :                 {
     127           0 :                     SdrUnoObj* pUnoCtrl = dynamic_cast< SdrUnoObj* >( pMarkedObj );
     128             : 
     129           0 :                     if(pUnoCtrl) try
     130             :                     {
     131           0 :                         uno::Reference< awt::XControlModel > xControlModel( pUnoCtrl->GetUnoControlModel(), uno::UNO_QUERY_THROW );
     132           0 :                         uno::Reference< beans::XPropertySet > xPropSet( xControlModel, uno::UNO_QUERY_THROW );
     133           0 :                         uno::Reference< beans::XPropertySetInfo > xPropInfo( xPropSet->getPropertySetInfo(), uno::UNO_QUERY_THROW );
     134             : 
     135           0 :                         form::FormButtonType eButtonType = form::FormButtonType_URL;
     136           0 :                         const OUString sButtonType( "ButtonType" );
     137           0 :                         if(xPropInfo->hasPropertyByName( sButtonType ) && (xPropSet->getPropertyValue( sButtonType ) >>= eButtonType ) )
     138             :                         {
     139           0 :                             OUString aString;
     140             : 
     141             :                             // Label
     142           0 :                             const OUString sLabel( "Label" );
     143           0 :                             if(xPropInfo->hasPropertyByName(sLabel))
     144             :                             {
     145           0 :                                 if( xPropSet->getPropertyValue(sLabel) >>= aString )
     146           0 :                                     aHLinkItem.SetName(aString);
     147             :                             }
     148             : 
     149             :                             // URL
     150           0 :                             const OUString sTargetURL( "TargetURL" );
     151           0 :                             if(xPropInfo->hasPropertyByName(sTargetURL))
     152             :                             {
     153           0 :                                 if( xPropSet->getPropertyValue(sTargetURL) >>= aString )
     154           0 :                                     aHLinkItem.SetURL(aString);
     155             :                             }
     156             : 
     157             :                             // Target
     158           0 :                             const OUString sTargetFrame( "TargetFrame" );
     159           0 :                             if(xPropInfo->hasPropertyByName(sTargetFrame) )
     160             :                             {
     161           0 :                                 if( xPropSet->getPropertyValue(sTargetFrame) >>= aString )
     162           0 :                                     aHLinkItem.SetTargetFrame(aString);
     163             :                             }
     164             : 
     165           0 :                             aHLinkItem.SetInsertMode(HLINK_BUTTON);
     166           0 :                             bFound = true;
     167           0 :                         }
     168             :                     }
     169           0 :                     catch( uno::Exception& )
     170             :                     {
     171             :                     }
     172             :                 }
     173             : 
     174             :                 // try interaction link
     175           0 :                 if( !bFound && pMarkedObj )
     176             :                 {
     177           0 :                     SdAnimationInfo* pInfo = SdDrawDocument::GetShapeUserData(*pMarkedObj);
     178           0 :                     if( pInfo && (pInfo->meClickAction == presentation::ClickAction_DOCUMENT) )
     179           0 :                         aHLinkItem.SetURL( pInfo->GetBookmark());
     180           0 :                     aHLinkItem.SetInsertMode(HLINK_BUTTON);
     181             :                 }
     182             :             }
     183             :         }
     184             : 
     185           0 :         rSet.Put(aHLinkItem);
     186             :     }
     187           0 :     rSet.Put( SfxBoolItem( SID_READONLY_MODE, mbReadOnly ) );
     188             : 
     189             :     // output quality
     190           0 :     if( SFX_ITEM_AVAILABLE == rSet.GetItemState( SID_OUTPUT_QUALITY_COLOR ) ||
     191           0 :         SFX_ITEM_AVAILABLE == rSet.GetItemState( SID_OUTPUT_QUALITY_GRAYSCALE ) ||
     192           0 :         SFX_ITEM_AVAILABLE == rSet.GetItemState( SID_OUTPUT_QUALITY_BLACKWHITE ) ||
     193           0 :         SFX_ITEM_AVAILABLE == rSet.GetItemState( SID_OUTPUT_QUALITY_CONTRAST ) )
     194             :     {
     195           0 :         const sal_uLong nMode = (sal_Int32)GetActiveWindow()->GetDrawMode();
     196           0 :         rSet.Put( SfxBoolItem( SID_OUTPUT_QUALITY_COLOR, (sal_uLong)OUTPUT_DRAWMODE_COLOR == nMode ) );
     197           0 :         rSet.Put( SfxBoolItem( SID_OUTPUT_QUALITY_GRAYSCALE, (sal_uLong)OUTPUT_DRAWMODE_GRAYSCALE == nMode ) );
     198           0 :         rSet.Put( SfxBoolItem( SID_OUTPUT_QUALITY_BLACKWHITE, (sal_uLong)OUTPUT_DRAWMODE_BLACKWHITE == nMode ) );
     199           0 :         rSet.Put( SfxBoolItem( SID_OUTPUT_QUALITY_CONTRAST, (sal_uLong)OUTPUT_DRAWMODE_CONTRAST == nMode ) );
     200             :     }
     201             : 
     202           0 :     if ( SFX_ITEM_AVAILABLE == rSet.GetItemState(SID_MAIL_SCROLLBODY_PAGEDOWN) )
     203             :     {
     204           0 :         rSet.Put( SfxBoolItem( SID_MAIL_SCROLLBODY_PAGEDOWN, true ) );
     205             :     }
     206             : 
     207           0 :     if ( SFX_ITEM_AVAILABLE == rSet.GetItemState(SID_ATTR_YEAR2000) )
     208             :     {
     209           0 :         FmFormShell* pFormShell = GetViewShellBase().GetFormShellManager()->GetFormShell();
     210           0 :         if (pFormShell != NULL)
     211             :         {
     212           0 :             sal_uInt16 nState = 0;
     213           0 :             if (pFormShell->GetY2KState(nState))
     214           0 :                 rSet.Put( SfxUInt16Item( SID_ATTR_YEAR2000, nState ) );
     215             :             else
     216           0 :                 rSet.DisableItem( SID_ATTR_YEAR2000 );
     217             :         }
     218             :     }
     219             : 
     220           0 :     if ( !GetView()->GetTextEditOutliner() )
     221             :     {
     222           0 :         SvtCJKOptions aCJKOptions;
     223           0 :         if( !aCJKOptions.IsChangeCaseMapEnabled() )
     224             :         {
     225           0 :             GetViewFrame()->GetBindings().SetVisibleState( SID_TRANSLITERATE_HALFWIDTH, false );
     226           0 :             GetViewFrame()->GetBindings().SetVisibleState( SID_TRANSLITERATE_FULLWIDTH, false );
     227           0 :             GetViewFrame()->GetBindings().SetVisibleState( SID_TRANSLITERATE_HIRAGANA, false );
     228           0 :             GetViewFrame()->GetBindings().SetVisibleState( SID_TRANSLITERATE_KATAGANA, false );
     229             :         }
     230             :         else
     231             :         {
     232           0 :             GetViewFrame()->GetBindings().SetVisibleState( SID_TRANSLITERATE_HALFWIDTH, true );
     233           0 :             GetViewFrame()->GetBindings().SetVisibleState( SID_TRANSLITERATE_FULLWIDTH, true );
     234           0 :             GetViewFrame()->GetBindings().SetVisibleState( SID_TRANSLITERATE_HIRAGANA, true );
     235           0 :             GetViewFrame()->GetBindings().SetVisibleState( SID_TRANSLITERATE_KATAGANA, true );
     236             :         }
     237             : 
     238           0 :         rSet.DisableItem( SID_TRANSLITERATE_SENTENCE_CASE );
     239           0 :         rSet.DisableItem( SID_TRANSLITERATE_TITLE_CASE );
     240           0 :         rSet.DisableItem( SID_TRANSLITERATE_TOGGLE_CASE );
     241           0 :         rSet.DisableItem( SID_TRANSLITERATE_UPPER );
     242           0 :         rSet.DisableItem( SID_TRANSLITERATE_LOWER );
     243           0 :         rSet.DisableItem( SID_TRANSLITERATE_HALFWIDTH );
     244           0 :         rSet.DisableItem( SID_TRANSLITERATE_FULLWIDTH );
     245           0 :         rSet.DisableItem( SID_TRANSLITERATE_HIRAGANA );
     246           0 :         rSet.DisableItem( SID_TRANSLITERATE_KATAGANA );
     247             :     }
     248             :     else
     249             :     {
     250           0 :         SvtCJKOptions aCJKOptions;
     251           0 :         if( !aCJKOptions.IsChangeCaseMapEnabled() )
     252             :         {
     253           0 :             GetViewFrame()->GetBindings().SetVisibleState( SID_TRANSLITERATE_HALFWIDTH, false );
     254           0 :             GetViewFrame()->GetBindings().SetVisibleState( SID_TRANSLITERATE_FULLWIDTH, false );
     255           0 :             GetViewFrame()->GetBindings().SetVisibleState( SID_TRANSLITERATE_HIRAGANA, false );
     256           0 :             GetViewFrame()->GetBindings().SetVisibleState( SID_TRANSLITERATE_KATAGANA, false );
     257           0 :             rSet.DisableItem( SID_TRANSLITERATE_HALFWIDTH );
     258           0 :             rSet.DisableItem( SID_TRANSLITERATE_FULLWIDTH );
     259           0 :             rSet.DisableItem( SID_TRANSLITERATE_HIRAGANA );
     260           0 :             rSet.DisableItem( SID_TRANSLITERATE_KATAGANA );
     261             :         }
     262             :         else
     263             :         {
     264           0 :             GetViewFrame()->GetBindings().SetVisibleState( SID_TRANSLITERATE_HALFWIDTH, true );
     265           0 :             GetViewFrame()->GetBindings().SetVisibleState( SID_TRANSLITERATE_FULLWIDTH, true );
     266           0 :             GetViewFrame()->GetBindings().SetVisibleState( SID_TRANSLITERATE_HIRAGANA, true );
     267           0 :             GetViewFrame()->GetBindings().SetVisibleState( SID_TRANSLITERATE_KATAGANA, true );
     268           0 :         }
     269             :     }
     270           0 : }
     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_PARA_ADJUST_LEFT:
     290             :             {
     291           0 :                 SfxItemSet aAttrs( GetDoc()->GetPool() );
     292           0 :                 mpDrawView->GetAttributes( aAttrs );
     293             : 
     294           0 :                 SvxAdjustItem aItem= ( (const SvxAdjustItem&) aAttrs.Get( EE_PARA_JUST ) );
     295           0 :                 SvxAdjust eAdj = aItem.GetAdjust();
     296           0 :                 if ( eAdj == SVX_ADJUST_LEFT)
     297             :                 {
     298           0 :                     rSet.Put( SfxBoolItem( SID_ATTR_PARA_ADJUST_LEFT, true ) );
     299             :                 }
     300             : 
     301           0 :                 bAttr = sal_True;
     302             : 
     303           0 :                 Invalidate(nSlotId);
     304             :             }
     305           0 :             break;
     306             :             case SID_ATTR_PARA_ADJUST_CENTER:
     307             :             {
     308           0 :                 SfxItemSet aAttrs( GetDoc()->GetPool() );
     309           0 :                 mpDrawView->GetAttributes( aAttrs );
     310             : 
     311           0 :                 SvxAdjustItem aItem= ( (const SvxAdjustItem&) aAttrs.Get( EE_PARA_JUST ) );
     312           0 :                 SvxAdjust eAdj = aItem.GetAdjust();
     313           0 :                 if ( eAdj == SVX_ADJUST_CENTER)
     314             :                 {
     315           0 :                     rSet.Put( SfxBoolItem( SID_ATTR_PARA_ADJUST_CENTER, true ) );
     316             :                 }
     317             : 
     318           0 :                 bAttr = sal_True;
     319             : 
     320           0 :                 Invalidate(nSlotId);
     321             :             }
     322           0 :             break;
     323             :             case SID_ATTR_PARA_ADJUST_RIGHT:
     324             :             {
     325           0 :                 SfxItemSet aAttrs( GetDoc()->GetPool() );
     326           0 :                 mpDrawView->GetAttributes( aAttrs );
     327             : 
     328           0 :                 SvxAdjustItem aItem= ( (const SvxAdjustItem&) aAttrs.Get( EE_PARA_JUST ) );
     329           0 :                 SvxAdjust eAdj = aItem.GetAdjust();
     330           0 :                 if ( eAdj == SVX_ADJUST_RIGHT)
     331             :                 {
     332           0 :                     rSet.Put( SfxBoolItem( SID_ATTR_PARA_ADJUST_RIGHT, true ) );
     333             :                 }
     334             : 
     335           0 :                 bAttr = sal_True;
     336             : 
     337           0 :                 Invalidate(nSlotId);
     338             :             }
     339           0 :             break;
     340             :             case SID_ATTR_PARA_ADJUST_BLOCK:
     341             :             {
     342           0 :                 SfxItemSet aAttrs( GetDoc()->GetPool() );
     343           0 :                 mpDrawView->GetAttributes( aAttrs );
     344             : 
     345           0 :                 SvxAdjustItem aItem= ( (const SvxAdjustItem&) aAttrs.Get( EE_PARA_JUST ) );
     346           0 :                 SvxAdjust eAdj = aItem.GetAdjust();
     347           0 :                 if ( eAdj == SVX_ADJUST_BLOCK)
     348             :                 {
     349           0 :                     rSet.Put( SfxBoolItem( SID_ATTR_PARA_ADJUST_BLOCK, true ) );
     350             :                 }
     351             : 
     352           0 :                 bAttr = sal_True;
     353             : 
     354           0 :                 Invalidate(nSlotId);
     355             :             }
     356           0 :             break;
     357             :             case SID_ATTR_PARA_LRSPACE:
     358             :             {
     359           0 :                 SfxItemSet aAttrs( GetDoc()->GetPool() );
     360           0 :                 mpDrawView->GetAttributes( aAttrs );
     361           0 :                 SvxLRSpaceItem aLRSpace = ( (const SvxLRSpaceItem&) aAttrs.Get( EE_PARA_LRSPACE ) );
     362           0 :                 aLRSpace.SetWhich(SID_ATTR_PARA_LRSPACE);
     363           0 :                 rSet.Put(aLRSpace);
     364           0 :                 bAttr = sal_True;
     365           0 :                 Invalidate(SID_ATTR_PARA_LRSPACE);
     366             :             }
     367           0 :             break;
     368             :             case SID_ATTR_PARA_LINESPACE:
     369             :             {
     370           0 :                 SfxItemSet aAttrs( GetDoc()->GetPool() );
     371           0 :                 mpDrawView->GetAttributes( aAttrs );
     372           0 :                 SvxLineSpacingItem aLineLR = ( (const SvxLineSpacingItem&) aAttrs.Get( EE_PARA_SBL ) );
     373           0 :                 rSet.Put(aLineLR);
     374           0 :                 bAttr = sal_True;
     375           0 :                 Invalidate(SID_ATTR_PARA_LINESPACE);
     376             :             }
     377           0 :             break;
     378             :             case SID_ATTR_PARA_ULSPACE:
     379             :             {
     380           0 :                 SfxItemSet aAttrs( GetDoc()->GetPool() );
     381           0 :                 mpDrawView->GetAttributes( aAttrs );
     382           0 :                 SvxULSpaceItem aULSP = ( (const SvxULSpaceItem&) aAttrs.Get( EE_PARA_ULSPACE ) );
     383           0 :                 aULSP.SetWhich(SID_ATTR_PARA_ULSPACE);
     384           0 :                 rSet.Put(aULSP);
     385           0 :                 bAttr = sal_True;
     386           0 :                 Invalidate(SID_ATTR_PARA_ULSPACE);
     387             :             }
     388           0 :             break;
     389             :             case SID_ATTR_FILL_STYLE:
     390             :             case SID_ATTR_FILL_COLOR:
     391             :             case SID_ATTR_FILL_GRADIENT:
     392             :             case SID_ATTR_FILL_HATCH:
     393             :             case SID_ATTR_FILL_BITMAP:
     394             :             case SID_ATTR_FILL_SHADOW:
     395             :             case SID_ATTR_FILL_TRANSPARENCE:
     396             :             case SID_ATTR_FILL_FLOATTRANSPARENCE:
     397             :             case SID_ATTR_LINE_STYLE:
     398             :             case SID_ATTR_LINE_DASH:
     399             :             case SID_ATTR_LINE_WIDTH:
     400             :             case SID_ATTR_LINE_COLOR:
     401             :             case SID_ATTR_LINE_TRANSPARENCE:
     402             :             case SID_ATTR_LINE_JOINT:
     403             :             case SID_ATTR_LINE_CAP:
     404             :             case SID_ATTR_TEXT_FITTOSIZE:
     405             :             case SID_ATTR_CHAR_FONT:
     406             :             case SID_ATTR_CHAR_FONTHEIGHT:
     407             :             case SID_ATTR_CHAR_SHADOWED:
     408             :             case SID_ATTR_CHAR_POSTURE:
     409             :             case SID_ATTR_CHAR_UNDERLINE:
     410             :             case SID_ATTR_CHAR_STRIKEOUT:
     411             :             case SID_ATTR_CHAR_WEIGHT:
     412             :             case SID_ATTR_CHAR_COLOR:
     413             :             case SID_ATTR_CHAR_KERNING:
     414             :             case SID_SET_SUB_SCRIPT:
     415             :             case SID_SET_SUPER_SCRIPT:
     416             :             {
     417           0 :                 bAttr = sal_True;
     418             :             }
     419           0 :             break;
     420             : 
     421             :             case SID_HYPHENATION:
     422             :             {
     423           0 :                 SfxItemSet aAttrs( GetDoc()->GetPool() );
     424           0 :                 mpDrawView->GetAttributes( aAttrs );
     425           0 :                 if( aAttrs.GetItemState( EE_PARA_HYPHENATE ) >= SFX_ITEM_AVAILABLE )
     426             :                 {
     427           0 :                     sal_Bool bValue = ( (const SfxBoolItem&) aAttrs.Get( EE_PARA_HYPHENATE ) ).GetValue();
     428           0 :                     rSet.Put( SfxBoolItem( SID_HYPHENATION, bValue ) );
     429           0 :                 }
     430             :             }
     431           0 :             break;
     432             : 
     433             :             case SID_STYLE_FAMILY2:
     434             :             case SID_STYLE_FAMILY3:
     435             :             case SID_STYLE_FAMILY5:
     436             :             case SID_STYLE_APPLY: // StyleControl
     437             :             {
     438           0 :                 SfxStyleSheet* pStyleSheet = mpDrawView->GetStyleSheet();
     439           0 :                 if( pStyleSheet )
     440             :                 {
     441           0 :                     if( nSlotId != SID_STYLE_APPLY && !mpDrawView->AreObjectsMarked() )
     442             :                     {
     443           0 :                         SfxTemplateItem aTmpItem( nWhich, OUString() );
     444           0 :                         aAllSet.Put( aTmpItem, aTmpItem.Which()  );
     445             :                     }
     446             :                     else
     447             :                     {
     448           0 :                         if (pStyleSheet->GetFamily() == SD_STYLE_FAMILY_MASTERPAGE)
     449           0 :                             pStyleSheet = ((SdStyleSheet*)pStyleSheet)->GetPseudoStyleSheet();
     450             : 
     451           0 :                         if( pStyleSheet )
     452             :                         {
     453           0 :                             SfxStyleFamily eFamily = pStyleSheet->GetFamily();
     454             : 
     455           0 :                             if ((eFamily == SD_STYLE_FAMILY_GRAPHICS &&     nSlotId == SID_STYLE_FAMILY2)       ||
     456           0 :                                 (eFamily == SD_STYLE_FAMILY_CELL     && nSlotId == SID_STYLE_FAMILY3)       ||
     457           0 :                                 (eFamily == SD_STYLE_FAMILY_PSEUDO &&   nSlotId == SID_STYLE_FAMILY5))
     458             :                             {
     459           0 :                                 SfxTemplateItem aTmpItem ( nWhich, pStyleSheet->GetName() );
     460           0 :                                 aAllSet.Put( aTmpItem, aTmpItem.Which()  );
     461             :                             }
     462             :                             else
     463             :                             {
     464           0 :                                 SfxTemplateItem aTmpItem(nWhich, OUString());
     465           0 :                                 aAllSet.Put(aTmpItem,aTmpItem.Which()  );
     466             :                             }
     467             :                         }
     468             :                     }
     469             :                 }
     470             :                 else
     471           0 :                 {   SfxTemplateItem aItem( nWhich, OUString() );
     472           0 :                     aAllSet.Put( aItem, aItem.Which() );
     473             :                 }
     474             :             }
     475           0 :             break;
     476             : 
     477             :             case SID_SET_DEFAULT:
     478             :             {
     479           0 :                 if( !mpDrawView->GetMarkedObjectList().GetMarkCount() ||
     480           0 :                     ( !mpDrawView->IsTextEdit() && !mpDrawView->GetStyleSheet() )
     481             :                   )
     482           0 :                     rSet.DisableItem( nWhich );
     483             :             }
     484           0 :             break;
     485             : 
     486             :             case SID_STYLE_WATERCAN:
     487             :             {
     488           0 :                 ISfxTemplateCommon* pTemplateCommon = SFX_APP()->GetCurrentTemplateCommon(GetViewFrame()->GetBindings());
     489           0 :                 if (pTemplateCommon && pTemplateCommon->GetActualFamily() == SD_STYLE_FAMILY_PSEUDO)
     490           0 :                     rSet.Put(SfxBoolItem(nWhich,false));
     491             :                 else
     492             :                 {
     493           0 :                     SfxBoolItem aItem(nWhich, SD_MOD()->GetWaterCan());
     494           0 :                     aAllSet.Put( aItem, aItem.Which());
     495             :                 }
     496             :             }
     497           0 :             break;
     498             : 
     499             :             case SID_STYLE_NEW:
     500             :             {
     501           0 :                 ISfxTemplateCommon* pTemplateCommon = SFX_APP()->GetCurrentTemplateCommon(GetViewFrame()->GetBindings());
     502           0 :                 if (pTemplateCommon && pTemplateCommon->GetActualFamily() == SD_STYLE_FAMILY_PSEUDO)
     503           0 :                     rSet.DisableItem(nWhich);
     504             :             }
     505           0 :             break;
     506             : 
     507             :             case SID_STYLE_DRAGHIERARCHIE:
     508             :             {
     509           0 :                 ISfxTemplateCommon* pTemplateCommon = SFX_APP()->GetCurrentTemplateCommon(GetViewFrame()->GetBindings());
     510           0 :                 if (pTemplateCommon && pTemplateCommon->GetActualFamily() == SD_STYLE_FAMILY_PSEUDO)
     511           0 :                     rSet.DisableItem(nWhich);
     512             :             }
     513           0 :             break;
     514             : 
     515             :             case SID_STYLE_NEW_BY_EXAMPLE:
     516             :             {
     517             :                 // It is not possible to create PseudoStyleSheets 'by Example';
     518             :                 // normal style sheets need a selected object for that
     519           0 :                 ISfxTemplateCommon* pTemplCommon = SFX_APP()->GetCurrentTemplateCommon(GetViewFrame()->GetBindings());
     520           0 :                 if (pTemplCommon)
     521             :                 {
     522           0 :                     if (pTemplCommon->GetActualFamily() == SD_STYLE_FAMILY_PSEUDO)
     523             :                     {
     524           0 :                         rSet.DisableItem(nWhich);
     525             :                     }
     526           0 :                     else if (pTemplCommon->GetActualFamily() == SD_STYLE_FAMILY_GRAPHICS)
     527             :                     {
     528           0 :                         if (!mpDrawView->AreObjectsMarked())
     529             :                         {
     530           0 :                             rSet.DisableItem(nWhich);
     531             :                         }
     532             :                     }
     533             :                 }
     534             :                 // if there is no (yet) a designer, we have to go back into the
     535             :                 // view state; an actual set family can not be considered
     536             :                 else
     537             :                 {
     538           0 :                     if (!mpDrawView->AreObjectsMarked())
     539             :                     {
     540           0 :                         rSet.DisableItem(nWhich);
     541             :                     }
     542             :                 }
     543             : 
     544             :             }
     545           0 :             break;
     546             : 
     547             :             case SID_STYLE_UPDATE_BY_EXAMPLE:
     548             :             {
     549           0 :                 if (!mpDrawView->AreObjectsMarked())
     550             :                 {
     551           0 :                     rSet.DisableItem(nWhich);
     552             :                 }
     553             :             }
     554           0 :             break;
     555             :             case FN_BUL_NUM_RULE_INDEX:
     556             :             case FN_NUM_NUM_RULE_INDEX:
     557             :             {
     558           0 :                 SfxItemSet aEditAttr( GetDoc()->GetPool() );
     559           0 :                 mpDrawView->GetAttributes( aEditAttr );
     560             : 
     561           0 :                 SfxItemSet aNewAttr( GetPool(), EE_ITEMS_START, EE_ITEMS_END );
     562           0 :                 aNewAttr.Put( aEditAttr, false );
     563             : 
     564             : 
     565           0 :                 SvxNumRule* pNumRule = NULL;
     566           0 :                 const SfxPoolItem* pTmpItem=NULL;
     567           0 :                 sal_uInt16 nNumItemId = SID_ATTR_NUMBERING_RULE;
     568             : 
     569           0 :                 rSet.Put(SfxUInt16Item(FN_NUM_NUM_RULE_INDEX,DEFAULT_NONE));
     570           0 :                 rSet.Put(SfxUInt16Item(FN_BUL_NUM_RULE_INDEX,DEFAULT_NONE));
     571           0 :                 sal_uInt16 nActNumLvl = mpDrawView->GetSelectionLevel();
     572           0 :                 pTmpItem=GetNumBulletItem(aNewAttr, nNumItemId);
     573             : 
     574           0 :                 if (pTmpItem)
     575           0 :                     pNumRule = new SvxNumRule(*((SvxNumBulletItem*)pTmpItem)->GetNumRule());
     576             : 
     577           0 :                 if ( pNumRule )
     578             :                 {
     579           0 :                     sal_uInt16 nMask = 1;
     580           0 :                     sal_uInt16 nCount = 0;
     581           0 :                     sal_uInt16 nCurLevel = (sal_uInt16)0xFFFF;
     582           0 :                     for(sal_uInt16 i = 0; i < pNumRule->GetLevelCount(); i++)
     583             :                     {
     584           0 :                         if(nActNumLvl & nMask)
     585             :                         {
     586           0 :                             nCount++;
     587           0 :                             nCurLevel = i;
     588             :                         }
     589           0 :                         nMask <<= 1;
     590             :                     }
     591           0 :                     if ( nCount == 1 )
     592             :                     {
     593           0 :                         sal_Bool bBullets = sal_False;
     594           0 :                         const SvxNumberFormat* pNumFmt = pNumRule->Get(nCurLevel);
     595           0 :                         if ( pNumFmt )
     596             :                         {
     597           0 :                             switch(pNumFmt->GetNumberingType())
     598             :                             {
     599             :                                 case SVX_NUM_CHAR_SPECIAL:
     600             :                                 case SVX_NUM_BITMAP:
     601           0 :                                     bBullets = sal_True;
     602           0 :                                     break;
     603             : 
     604             :                                 default:
     605           0 :                                     bBullets = sal_False;
     606             :                             }
     607             : 
     608           0 :                             rSet.Put(SfxUInt16Item(FN_BUL_NUM_RULE_INDEX,(sal_uInt16)0xFFFF));
     609           0 :                             rSet.Put(SfxUInt16Item(FN_NUM_NUM_RULE_INDEX,(sal_uInt16)0xFFFF));
     610           0 :                             if ( bBullets )
     611             :                             {
     612           0 :                                 NBOTypeMgrBase* pBullets = NBOutlineTypeMgrFact::CreateInstance(eNBOType::MIXBULLETS);
     613           0 :                                 if ( pBullets )
     614             :                                 {
     615           0 :                                     sal_uInt16 nBulIndex = pBullets->GetNBOIndexForNumRule(*pNumRule,nActNumLvl);
     616           0 :                                      rSet.Put(SfxUInt16Item(FN_BUL_NUM_RULE_INDEX,nBulIndex));
     617             :                                 }
     618             :                             }else
     619             :                             {
     620           0 :                                 NBOTypeMgrBase* pNumbering = NBOutlineTypeMgrFact::CreateInstance(eNBOType::NUMBERING);
     621           0 :                                 if ( pNumbering )
     622             :                                 {
     623           0 :                                     sal_uInt16 nBulIndex = pNumbering->GetNBOIndexForNumRule(*pNumRule,nActNumLvl);
     624           0 :                                      rSet.Put(SfxUInt16Item(FN_NUM_NUM_RULE_INDEX,nBulIndex));
     625             :                                 }
     626             :                             }
     627             :                         }
     628             :                     }
     629           0 :                   delete pNumRule;
     630           0 :                 }
     631             :             }
     632           0 :             break;
     633             :             //End
     634             :             // Added by Li Hui for story 179.
     635             :             case FN_NUM_BULLET_ON:
     636             :             case FN_NUM_NUMBERING_ON:
     637             :             {
     638           0 :                 sal_Bool bEnable = sal_False;
     639           0 :                 const SdrMarkList& rMarkList = mpDrawView->GetMarkedObjectList();
     640           0 :                 const sal_uInt32 nMarkCount = rMarkList.GetMarkCount();
     641           0 :                 for (sal_uInt32 nIndex = 0; nIndex < nMarkCount; nIndex++)
     642             :                 {
     643           0 :                     SdrTextObj* pTextObj = dynamic_cast< SdrTextObj* >(rMarkList.GetMark(nIndex)->GetMarkedSdrObj());
     644           0 :                     if (pTextObj && pTextObj->GetObjInventor() == SdrInventor)
     645             :                     {
     646           0 :                         if (pTextObj->GetObjIdentifier() != OBJ_OLE2)
     647             :                         {
     648           0 :                             bEnable = sal_True;
     649           0 :                             break;
     650             :                         }
     651             :                     }
     652             :                 }
     653           0 :                 if (bEnable)
     654             :                 {
     655           0 :                     rSet.Put(SfxBoolItem(FN_NUM_BULLET_ON, false));
     656           0 :                     rSet.Put(SfxBoolItem(FN_NUM_NUMBERING_ON, false));
     657             :                 }
     658             :                 else
     659             :                 {
     660           0 :                     rSet.DisableItem(FN_NUM_BULLET_ON);
     661           0 :                     rSet.DisableItem(FN_NUM_NUMBERING_ON);
     662             :                 }
     663             :             }
     664           0 :             break;
     665             :         }
     666           0 :         nWhich = aIter.NextWhich();
     667             :     }
     668             : 
     669           0 :     SfxItemSet* pSet = NULL;
     670             : 
     671           0 :     if( bAttr )
     672             :     {
     673           0 :         pSet = new SfxItemSet( GetDoc()->GetPool() );
     674           0 :         mpDrawView->GetAttributes( *pSet );
     675           0 :         rSet.Put( *pSet, false );
     676             :     }
     677             : 
     678           0 :     rSet.Put( aAllSet, false );
     679             : 
     680             :     // there were changes at area and/or line attributes
     681           0 :     if( bAttr && pSet )
     682             :     {
     683             :         // if the view owns selected objects, corresponding items have to be
     684             :         // changed from SFX_ITEM_DEFAULT (_ON) to SFX_ITEM_DISABLED
     685           0 :         if( mpDrawView->AreObjectsMarked() )
     686             :         {
     687           0 :             SfxWhichIter aNewIter( *pSet, XATTR_LINE_FIRST, XATTR_FILL_LAST );
     688           0 :             nWhich = aNewIter.FirstWhich();
     689           0 :             while( nWhich )
     690             :             {
     691           0 :                 if( SFX_ITEM_DEFAULT == pSet->GetItemState( nWhich ) )
     692             :                 {
     693           0 :                     rSet.ClearItem( nWhich );
     694           0 :                     rSet.DisableItem( nWhich );
     695             :                 }
     696           0 :                 nWhich = aNewIter.NextWhich();
     697           0 :             }
     698             :         }
     699             : 
     700           0 :         SfxItemState eState = pSet->GetItemState( EE_PARA_LRSPACE );
     701           0 :         if ( eState == SFX_ITEM_DONTCARE )
     702             :         {
     703           0 :             rSet.InvalidateItem(EE_PARA_LRSPACE);
     704           0 :             rSet.InvalidateItem(SID_ATTR_PARA_LRSPACE);
     705             :         }
     706           0 :         eState = pSet->GetItemState( EE_PARA_SBL );
     707           0 :         if ( eState == SFX_ITEM_DONTCARE )
     708             :         {
     709           0 :             rSet.InvalidateItem(EE_PARA_SBL);
     710           0 :             rSet.InvalidateItem(SID_ATTR_PARA_LINESPACE);
     711             :         }
     712           0 :         eState = pSet->GetItemState( EE_PARA_ULSPACE );
     713           0 :         if ( eState == SFX_ITEM_DONTCARE )
     714             :         {
     715           0 :             rSet.InvalidateItem(EE_PARA_ULSPACE);
     716           0 :             rSet.InvalidateItem(SID_ATTR_PARA_ULSPACE);
     717             :         }
     718             : 
     719             :         SvxEscapement eEsc = (SvxEscapement) ( (const SvxEscapementItem&)
     720           0 :                         pSet->Get( EE_CHAR_ESCAPEMENT ) ).GetEnumValue();
     721           0 :         if( eEsc == SVX_ESCAPEMENT_SUPERSCRIPT )
     722             :         {
     723           0 :             rSet.Put( SfxBoolItem( SID_SET_SUPER_SCRIPT, true ) );
     724             :         }
     725           0 :         else if( eEsc == SVX_ESCAPEMENT_SUBSCRIPT )
     726             :         {
     727           0 :             rSet.Put( SfxBoolItem( SID_SET_SUB_SCRIPT, true ) );
     728             :         }
     729             : 
     730           0 :         eState = pSet->GetItemState( EE_CHAR_KERNING, true );
     731           0 :         if ( eState == SFX_ITEM_DONTCARE )
     732             :         {
     733           0 :             rSet.InvalidateItem(EE_CHAR_KERNING);
     734           0 :             rSet.InvalidateItem(SID_ATTR_CHAR_KERNING);
     735             :         }
     736           0 :         delete pSet;
     737           0 :     }
     738           0 : }
     739             : 
     740             : 
     741             : 
     742           0 : OUString DrawViewShell::GetSelectionText(bool bCompleteWords)
     743             : {
     744           0 :     OUString aStrSelection;
     745           0 :     ::Outliner* pOl = mpDrawView->GetTextEditOutliner();
     746           0 :     OutlinerView* pOlView = mpDrawView->GetTextEditOutlinerView();
     747             : 
     748           0 :     if (pOl && pOlView)
     749             :     {
     750           0 :         if (bCompleteWords)
     751             :         {
     752           0 :             ESelection aSel = pOlView->GetSelection();
     753           0 :             OUString aStrCurrentDelimiters = pOl->GetWordDelimiters();
     754             : 
     755           0 :             pOl->SetWordDelimiters(" .,;\"'");
     756           0 :             aStrSelection = pOl->GetWord( aSel.nEndPara, aSel.nEndPos );
     757           0 :             pOl->SetWordDelimiters( aStrCurrentDelimiters );
     758             :         }
     759             :         else
     760             :         {
     761           0 :             aStrSelection = pOlView->GetSelected();
     762             :         }
     763             :     }
     764             : 
     765           0 :     return (aStrSelection);
     766             : }
     767             : 
     768             : 
     769           0 : sal_Bool DrawViewShell::HasSelection(sal_Bool bText) const
     770             : {
     771           0 :     sal_Bool bReturn = sal_False;
     772             : 
     773           0 :     if (bText)
     774             :     {
     775           0 :         OutlinerView* pOlView = mpDrawView->GetTextEditOutlinerView();
     776             : 
     777           0 :         if (pOlView && !pOlView->GetSelected().isEmpty())
     778             :         {
     779           0 :             bReturn = sal_True;
     780             :         }
     781             :     }
     782           0 :     else if (mpDrawView->GetMarkedObjectList().GetMarkCount() != 0)
     783             :     {
     784           0 :         bReturn = sal_True;
     785             :     }
     786             : 
     787           0 :     return bReturn;
     788             : }
     789             : 
     790             : } // end of namespace sd
     791             : 
     792             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10