LCOV - code coverage report
Current view: top level - sw/source/uibase/shells - tabsh.cxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 72 783 9.2 %
Date: 2014-11-03 Functions: 13 23 56.5 %
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             : #include <hintids.hxx>
      21             : #include <svl/zforlist.hxx>
      22             : #include <svl/stritem.hxx>
      23             : #include <svl/whiter.hxx>
      24             : #include <unotools/moduleoptions.hxx>
      25             : #include <svx/rulritem.hxx>
      26             : #include <svl/srchitem.hxx>
      27             : #include <editeng/lrspitem.hxx>
      28             : #include <editeng/ulspitem.hxx>
      29             : #include <editeng/brushitem.hxx>
      30             : #include <editeng/boxitem.hxx>
      31             : #include <editeng/shaditem.hxx>
      32             : #include <editeng/spltitem.hxx>
      33             : #include <editeng/langitem.hxx>
      34             : #include <editeng/keepitem.hxx>
      35             : #include <editeng/lineitem.hxx>
      36             : #include <editeng/colritem.hxx>
      37             : #include <editeng/frmdiritem.hxx>
      38             : #include <svx/numinf.hxx>
      39             : #include <svx/svddef.hxx>
      40             : #include <svx/svxdlg.hxx>
      41             : #include <svl/zformat.hxx>
      42             : #include <sfx2/bindings.hxx>
      43             : #include <vcl/layout.hxx>
      44             : #include <vcl/msgbox.hxx>
      45             : #include <sfx2/request.hxx>
      46             : #include <sfx2/dispatch.hxx>
      47             : #include <sfx2/objface.hxx>
      48             : #include <sfx2/sidebar/EnumContext.hxx>
      49             : 
      50             : #include <fmtornt.hxx>
      51             : #include <fmtclds.hxx>
      52             : #include <fmtlsplt.hxx>
      53             : #include <fmtrowsplt.hxx>
      54             : #include <fmtfsize.hxx>
      55             : #include <swmodule.hxx>
      56             : #include <wrtsh.hxx>
      57             : #include <wview.hxx>
      58             : #include <frmatr.hxx>
      59             : #include <uitool.hxx>
      60             : #include <inputwin.hxx>
      61             : #include <uiitems.hxx>
      62             : #include <usrpref.hxx>
      63             : #include <tabsh.hxx>
      64             : #include "swtablerep.hxx"
      65             : #include <tablemgr.hxx>
      66             : #include <cellatr.hxx>
      67             : #include <frmfmt.hxx>
      68             : #include <swundo.hxx>
      69             : #include <swtable.hxx>
      70             : #include <docsh.hxx>
      71             : #include <tblsel.hxx>
      72             : 
      73             : #include <app.hrc>
      74             : #include <dialog.hrc>
      75             : #include <popup.hrc>
      76             : #include <shells.hrc>
      77             : #include <cmdid.h>
      78             : #include <globals.hrc>
      79             : #include <helpid.h>
      80             : #include <unobaseclass.hxx>
      81             : 
      82             : #define SwTableShell
      83             : #include <sfx2/msg.hxx>
      84             : #include <swslots.hxx>
      85             : 
      86             : #include "swabstdlg.hxx"
      87             : #include <table.hrc>
      88             : 
      89             : #include <boost/scoped_ptr.hpp>
      90             : 
      91             : using ::editeng::SvxBorderLine;
      92             : using namespace ::com::sun::star;
      93             : 
      94        2574 : SFX_IMPL_INTERFACE(SwTableShell, SwBaseShell, SW_RES(STR_SHELLNAME_TABLE))
      95             : 
      96          90 : void SwTableShell::InitInterface_Impl()
      97             : {
      98          90 :     GetStaticInterface()->RegisterPopupMenu(SW_RES(MN_TAB_POPUPMENU));
      99             : 
     100          90 :     GetStaticInterface()->RegisterObjectBar(SFX_OBJECTBAR_OBJECT, SW_RES(RID_TABLE_TOOLBOX));
     101          90 : }
     102             : 
     103        5442 : TYPEINIT1(SwTableShell,SwBaseShell)
     104             : 
     105             : static const sal_uInt16 aUITableAttrRange[] =
     106             : {
     107             :     FN_PARAM_TABLE_NAME,            FN_PARAM_TABLE_NAME,
     108             :     FN_PARAM_TABLE_HEADLINE,        FN_PARAM_TABLE_HEADLINE,
     109             :     FN_PARAM_TABLE_SPACE,           FN_PARAM_TABLE_SPACE,
     110             :     FN_TABLE_REP,                   FN_TABLE_REP,
     111             :     SID_RULER_BORDERS,              SID_RULER_BORDERS,
     112             :     RES_LR_SPACE,                   RES_UL_SPACE,
     113             :     SID_ATTR_BORDER_INNER,          SID_ATTR_BORDER_SHADOW,
     114             :     RES_BOX,                        RES_SHADOW,
     115             :     RES_BACKGROUND,                 RES_BACKGROUND,
     116             :     SID_BACKGRND_DESTINATION,       SID_BACKGRND_DESTINATION,
     117             :     SID_HTML_MODE,                  SID_HTML_MODE,
     118             :     SID_ATTR_BRUSH_ROW,             SID_ATTR_BRUSH_TABLE,
     119             :     RES_PAGEDESC,                   RES_BREAK,
     120             :     RES_KEEP,                       RES_KEEP,
     121             :     RES_LAYOUT_SPLIT,               RES_LAYOUT_SPLIT,
     122             :     FN_TABLE_SET_VERT_ALIGN,        FN_TABLE_SET_VERT_ALIGN,
     123             :     RES_FRAMEDIR,                   RES_FRAMEDIR,
     124             :     RES_ROW_SPLIT,                  RES_ROW_SPLIT,
     125             :     FN_TABLE_BOX_TEXTORIENTATION,   FN_TABLE_BOX_TEXTORIENTATION,
     126             : // #i29550#
     127             :     RES_COLLAPSING_BORDERS,         RES_COLLAPSING_BORDERS,
     128             : // <-- collapsing borders
     129             :     0
     130             : };
     131             : 
     132           0 : const sal_uInt16* SwuiGetUITableAttrRange()
     133             : {
     134           0 :     return aUITableAttrRange;
     135             : }
     136             : 
     137           0 : static void lcl_SetAttr( SwWrtShell &rSh, const SfxPoolItem &rItem )
     138             : {
     139           0 :     SfxItemSet aSet( rSh.GetView().GetPool(), rItem.Which(), rItem.Which(), 0);
     140           0 :     aSet.Put( rItem );
     141           0 :     rSh.SetTblAttr( aSet );
     142           0 : }
     143             : 
     144           0 : static SwTableRep*  lcl_TableParamToItemSet( SfxItemSet& rSet, SwWrtShell &rSh )
     145             : {
     146           0 :     SwFrmFmt *pFmt = rSh.GetTableFmt();
     147           0 :     SwTabCols aCols;
     148           0 :     rSh.GetTabCols( aCols );
     149             : 
     150             :     //At first get the simple attributes.
     151           0 :     rSet.Put( SfxStringItem( FN_PARAM_TABLE_NAME, pFmt->GetName()));
     152           0 :     rSet.Put( SfxUInt16Item( FN_PARAM_TABLE_HEADLINE, rSh.GetRowsToRepeat() ) );
     153           0 :     rSet.Put( pFmt->GetShadow() );
     154           0 :     rSet.Put(SfxUInt16Item(FN_TABLE_SET_VERT_ALIGN, rSh.GetBoxAlign()));
     155           0 :     rSet.Put( pFmt->GetFrmDir() );
     156             : 
     157           0 :     SvxULSpaceItem aULSpace( pFmt->GetULSpace() );
     158           0 :     rSet.Put( aULSpace );
     159             : 
     160           0 :     const sal_uInt16  nBackgroundDestination = rSh.GetViewOptions()->GetTblDest();
     161           0 :     rSet.Put(SwBackgroundDestinationItem(SID_BACKGRND_DESTINATION, nBackgroundDestination ));
     162           0 :     SvxBrushItem aBrush( RES_BACKGROUND );
     163           0 :     if(rSh.GetRowBackground(aBrush))
     164           0 :         rSet.Put( aBrush, SID_ATTR_BRUSH_ROW );
     165             :     else
     166           0 :         rSet.InvalidateItem(SID_ATTR_BRUSH_ROW);
     167           0 :     rSh.GetTabBackground(aBrush);
     168           0 :     rSet.Put( aBrush, SID_ATTR_BRUSH_TABLE );
     169             : 
     170             :     // text direction in boxes
     171           0 :     SvxFrameDirectionItem aBoxDirection( FRMDIR_ENVIRONMENT, RES_FRAMEDIR );
     172           0 :     if(rSh.GetBoxDirection( aBoxDirection ))
     173           0 :         rSet.Put(aBoxDirection, FN_TABLE_BOX_TEXTORIENTATION);
     174             : 
     175           0 :     bool bSelectAll = rSh.StartsWithTable() && rSh.ExtendedSelectedAll(/*bFootnotes=*/false);
     176           0 :     bool bTableSel = rSh.IsTableMode() || bSelectAll;
     177           0 :     if(!bTableSel)
     178             :     {
     179           0 :         rSh.StartAllAction();
     180           0 :         rSh.Push();
     181           0 :         rSh.GetView().GetViewFrame()->GetDispatcher()->Execute( FN_TABLE_SELECT_ALL );
     182             :     }
     183           0 :     SvxBoxInfoItem aBoxInfo( SID_ATTR_BORDER_INNER );
     184             : 
     185             :     // Table variant: If multiple table cells are selected.
     186           0 :     rSh.GetCrsr();                  //Thus GetCrsrCnt() returns the right thing
     187           0 :     aBoxInfo.SetTable          ((rSh.IsTableMode() && rSh.GetCrsrCnt() > 1) ||
     188           0 :                                     !bTableSel);
     189             :     // Always show distance field.
     190           0 :     aBoxInfo.SetDist           (true);
     191             :     // Set minimum size in tables and paragraphs.
     192           0 :     aBoxInfo.SetMinDist( !bTableSel || rSh.IsTableMode() ||
     193           0 :                             rSh.GetSelectionType() &
     194           0 :                             (nsSelectionType::SEL_TXT | nsSelectionType::SEL_TBL));
     195             :     // Always set the default spacing.
     196           0 :     aBoxInfo.SetDefDist        (MIN_BORDER_DIST);
     197             :     // Individual lines can have DontCare status only in tables.
     198           0 :     aBoxInfo.SetValid( VALID_DISABLE, !bTableSel || !rSh.IsTableMode() );
     199             : 
     200           0 :     rSet.Put(aBoxInfo);
     201           0 :     rSh.GetTabBorders( rSet );
     202             : 
     203             :     //row split
     204           0 :     SwFmtRowSplit* pSplit = 0;
     205           0 :     rSh.GetRowSplit(pSplit);
     206           0 :     if(pSplit)
     207             :     {
     208           0 :         rSet.Put(*pSplit);
     209           0 :         delete pSplit;
     210             :     }
     211             : 
     212           0 :     if(!bTableSel)
     213             :     {
     214           0 :         rSh.ClearMark();
     215           0 :         rSh.Pop(false);
     216           0 :         rSh.EndAllAction();
     217             :     }
     218             : 
     219           0 :     SwTabCols aTabCols;
     220           0 :     rSh.GetTabCols( aTabCols );
     221           0 :     SvxColumnItem aColItem;
     222             : 
     223             :     // Pointer will be deleted after the dialogue execution.
     224           0 :     SwTableRep* pRep = new SwTableRep( aTabCols );
     225           0 :     pRep->SetSpace(aCols.GetRightMax());
     226             : 
     227           0 :     sal_uInt16 nPercent = 0;
     228           0 :     long nWidth = ::GetTableWidth(pFmt, aCols, &nPercent, &rSh );
     229             :     // The table width is wrong for relative values.
     230           0 :     if(nPercent)
     231           0 :         nWidth = pRep->GetSpace() * nPercent / 100;
     232           0 :     const sal_uInt16 nAlign = pFmt->GetHoriOrient().GetHoriOrient();
     233           0 :     pRep->SetAlign(nAlign);
     234           0 :     SvxLRSpaceItem aLRSpace( pFmt->GetLRSpace() );
     235           0 :     SwTwips nLeft = aLRSpace.GetLeft();
     236           0 :     SwTwips nRight = aLRSpace.GetRight();
     237           0 :     SwTwips nDiff = pRep->GetSpace() - nRight - nLeft - nWidth;
     238           0 :     if(nAlign != text::HoriOrientation::FULL && std::abs(nDiff) > 2)
     239             :     {
     240           0 :         SwTwips nLR = pRep->GetSpace() - nWidth;
     241           0 :         switch ( nAlign )
     242             :         {
     243             :             case text::HoriOrientation::CENTER:
     244           0 :                 nLeft = nRight = nLR / 2;
     245           0 :                 break;
     246             :             case text::HoriOrientation::LEFT:
     247           0 :                 nRight = nLR; nLeft = 0;
     248           0 :                 break;
     249             :             case text::HoriOrientation::RIGHT:
     250           0 :                 nLeft = nLR, nRight = 0;
     251           0 :                 break;
     252             :             case text::HoriOrientation::LEFT_AND_WIDTH:
     253           0 :                 nRight = nLR - nLeft;
     254           0 :                 break;
     255             :             case text::HoriOrientation::NONE:
     256           0 :                 if(!nPercent)
     257           0 :                     nWidth = pRep->GetSpace() - nLeft - nRight;
     258           0 :                 break;
     259             :         }
     260             :     }
     261           0 :     pRep->SetLeftSpace(nLeft);
     262           0 :     pRep->SetRightSpace(nRight);
     263             : 
     264           0 :     pRep->SetWidth(nWidth);
     265           0 :     pRep->SetWidthPercent(nPercent);
     266             :     // Are individual rows / cells are selected, the column processing will be changed.
     267           0 :     pRep->SetLineSelected(bTableSel && ! rSh.HasWholeTabSelection());
     268           0 :     rSet.Put(SwPtrItem(FN_TABLE_REP, pRep));
     269           0 :     return pRep;
     270             : }
     271             : 
     272           0 : void ItemSetToTableParam( const SfxItemSet& rSet,
     273             :                                 SwWrtShell &rSh )
     274             : {
     275           0 :     rSh.StartAllAction();
     276           0 :     rSh.StartUndo( UNDO_TABLE_ATTR );
     277           0 :     const SfxPoolItem* pItem = 0;
     278             : 
     279           0 :     if(SfxItemState::SET == rSet.GetItemState(SID_BACKGRND_DESTINATION, false, &pItem))
     280             :     {
     281           0 :         SwViewOption aUsrPref( *rSh.GetViewOptions() );
     282           0 :         aUsrPref.SetTblDest((sal_uInt8)((SfxUInt16Item*)pItem)->GetValue());
     283           0 :         SW_MOD()->ApplyUsrPref(aUsrPref, &rSh.GetView());
     284             :     }
     285           0 :     bool bBorder = ( SfxItemState::SET == rSet.GetItemState( RES_BOX ) ||
     286           0 :             SfxItemState::SET == rSet.GetItemState( SID_ATTR_BORDER_INNER ) );
     287           0 :     pItem = 0;
     288           0 :     bool bBackground = SfxItemState::SET == rSet.GetItemState( RES_BACKGROUND, false, &pItem );
     289           0 :     const SfxPoolItem* pRowItem = 0, *pTableItem = 0;
     290           0 :     bBackground |= SfxItemState::SET == rSet.GetItemState( SID_ATTR_BRUSH_ROW, false, &pRowItem );
     291           0 :     bBackground |= SfxItemState::SET == rSet.GetItemState( SID_ATTR_BRUSH_TABLE, false, &pTableItem );
     292           0 :     const SfxPoolItem* pSplit = 0;
     293           0 :     bool bRowSplit = SfxItemState::SET == rSet.GetItemState( RES_ROW_SPLIT, false, &pSplit );
     294           0 :     const SfxPoolItem* pBoxDirection = 0;
     295           0 :     bool bBoxDirection = SfxItemState::SET == rSet.GetItemState( FN_TABLE_BOX_TEXTORIENTATION, false, &pBoxDirection );
     296           0 :     if( bBackground || bBorder || bRowSplit || bBoxDirection)
     297             :     {
     298             :         // The border will be applied to the present selection.
     299             :         // If there is no selection, the table will be completely selected.
     300             :         // The background will always be applied to the current state.
     301           0 :         bool bTableSel = rSh.IsTableMode();
     302           0 :         rSh.StartAllAction();
     303             : 
     304           0 :         if(bBackground)
     305             :         {
     306           0 :             if(pItem)
     307           0 :                 rSh.SetBoxBackground( *(const SvxBrushItem*)pItem );
     308           0 :             if(pRowItem)
     309             :             {
     310           0 :                 SvxBrushItem aBrush(*(const SvxBrushItem*)pRowItem);
     311           0 :                 aBrush.SetWhich(RES_BACKGROUND);
     312           0 :                 rSh.SetRowBackground(aBrush);
     313             :             }
     314           0 :             if(pTableItem)
     315             :             {
     316           0 :                 SvxBrushItem aBrush(*(const SvxBrushItem*)pTableItem);
     317           0 :                 aBrush.SetWhich(RES_BACKGROUND);
     318           0 :                 rSh.SetTabBackground( aBrush );
     319             :             }
     320             :         }
     321             : 
     322           0 :         if(bBoxDirection)
     323             :         {
     324           0 :             SvxFrameDirectionItem aDirection( FRMDIR_ENVIRONMENT, RES_FRAMEDIR );
     325           0 :             aDirection.SetValue(static_cast< const SvxFrameDirectionItem* >(pBoxDirection)->GetValue());
     326           0 :             rSh.SetBoxDirection(aDirection);
     327             :         }
     328             : 
     329           0 :         if(bBorder || bRowSplit)
     330             :         {
     331           0 :             rSh.Push();
     332           0 :             if(!bTableSel)
     333             :             {
     334           0 :                 rSh.GetView().GetViewFrame()->GetDispatcher()->Execute( FN_TABLE_SELECT_ALL );
     335             :             }
     336           0 :             if(bBorder)
     337           0 :                 rSh.SetTabBorders( rSet );
     338             : 
     339           0 :             if(bRowSplit)
     340             :             {
     341           0 :                 rSh.SetRowSplit(*static_cast<const SwFmtRowSplit*>(pSplit));
     342             :             }
     343             : 
     344           0 :             if(!bTableSel)
     345             :             {
     346           0 :                 rSh.ClearMark();
     347             :             }
     348           0 :             rSh.Pop(false);
     349             :         }
     350             : 
     351           0 :         rSh.EndAllAction();
     352             :     }
     353             : 
     354           0 :     SwTabCols aTabCols;
     355           0 :     bool bTabCols = false;
     356           0 :     bool bSingleLine = false;
     357           0 :     SwTableRep* pRep = 0;
     358           0 :     SwFrmFmt *pFmt = rSh.GetTableFmt();
     359           0 :     SfxItemSet aSet( rSh.GetAttrPool(), RES_FRMATR_BEGIN, RES_FRMATR_END-1 );
     360           0 :     if(SfxItemState::SET == rSet.GetItemState( FN_TABLE_REP, false, &pItem ))
     361             :     {
     362           0 :         pRep = (SwTableRep*)((const SwPtrItem*)pItem)->GetValue();
     363             : 
     364           0 :         const SwTwips nWidth = pRep->GetWidth();
     365           0 :         if ( text::HoriOrientation::FULL == pRep->GetAlign() )
     366             :         {
     367           0 :             SwFmtHoriOrient aAttr( pFmt->GetHoriOrient() );
     368           0 :             aAttr.SetHoriOrient( text::HoriOrientation::FULL );
     369           0 :             aSet.Put( aAttr );
     370             :         }
     371             :         else
     372             :         {
     373           0 :             SwFmtFrmSize aSz( ATT_VAR_SIZE, nWidth );
     374           0 :             if(pRep->GetWidthPercent())
     375             :             {
     376           0 :                 aSz.SetWidthPercent( (sal_uInt8)pRep->GetWidthPercent() );
     377             :             }
     378           0 :             aSet.Put(aSz);
     379             :         }
     380             : 
     381           0 :         SvxLRSpaceItem aLRSpace( RES_LR_SPACE );
     382           0 :         aLRSpace.SetLeft(pRep->GetLeftSpace());
     383           0 :         aLRSpace.SetRight(pRep->GetRightSpace());
     384           0 :         aSet.Put( aLRSpace );
     385             : 
     386           0 :         sal_Int16 eOrient = pRep->GetAlign();
     387           0 :         SwFmtHoriOrient aAttr( 0, eOrient );
     388           0 :         aSet.Put( aAttr );
     389             :         // The item must only be recorded while manual alignment, so that the
     390             :         // alignment is not overwritten by the distances while recording.
     391           0 :         if(eOrient != text::HoriOrientation::NONE)
     392           0 :             ((SfxItemSet&)rSet).ClearItem( SID_ATTR_LRSPACE );
     393             : 
     394           0 :         if(pRep->HasColsChanged())
     395             :         {
     396           0 :             bTabCols = true;
     397           0 :         }
     398             :     }
     399             : 
     400           0 :     if( SfxItemState::SET == rSet.GetItemState( FN_PARAM_TABLE_HEADLINE, false, &pItem))
     401           0 :         rSh.SetRowsToRepeat( ((SfxUInt16Item*)pItem)->GetValue() );
     402             : 
     403           0 :     if( SfxItemState::SET == rSet.GetItemState( FN_TABLE_SET_VERT_ALIGN, false, &pItem))
     404           0 :         rSh.SetBoxAlign(((SfxUInt16Item*)(pItem))->GetValue());
     405             : 
     406           0 :     if( SfxItemState::SET == rSet.GetItemState( FN_PARAM_TABLE_NAME, false, &pItem ))
     407           0 :         rSh.SetTableName( *pFmt, ((const SfxStringItem*)pItem)->GetValue() );
     408             : 
     409             :     // Copy the chosen attributes in the ItemSet.
     410             :     static const sal_uInt16 aIds[] =
     411             :         {
     412             :             RES_PAGEDESC,
     413             :             RES_BREAK,
     414             :             RES_KEEP,
     415             :             RES_LAYOUT_SPLIT,
     416             :             RES_UL_SPACE,
     417             :             RES_SHADOW,
     418             :             RES_FRAMEDIR,
     419             :             // #i29550#
     420             :             RES_COLLAPSING_BORDERS,
     421             :             // <-- collapsing borders
     422             :             0
     423             :         };
     424           0 :     for( const sal_uInt16* pIds = aIds; *pIds; ++pIds )
     425           0 :         if( SfxItemState::SET == rSet.GetItemState( *pIds, false, &pItem))
     426           0 :             aSet.Put( *pItem );
     427             : 
     428           0 :     if( aSet.Count() )
     429           0 :         rSh.SetTblAttr( aSet );
     430             : 
     431           0 :     if(bTabCols)
     432             :     {
     433           0 :         rSh.GetTabCols( aTabCols );
     434           0 :         bSingleLine = pRep->FillTabCols( aTabCols );
     435           0 :         rSh.SetTabCols( aTabCols, bSingleLine );
     436             :     }
     437             : 
     438           0 :     rSh.EndUndo( UNDO_TABLE_ATTR );
     439           0 :     rSh.EndAllAction();
     440           0 : }
     441             : 
     442           0 : static void lcl_TabGetMaxLineWidth(const SvxBorderLine* pBorderLine, SvxBorderLine& rBorderLine)
     443             : {
     444           0 :     if(pBorderLine->GetWidth() > rBorderLine.GetWidth())
     445           0 :         rBorderLine.SetWidth(pBorderLine->GetWidth());
     446             : 
     447           0 :     rBorderLine.SetBorderLineStyle(pBorderLine->GetBorderLineStyle());
     448           0 :     rBorderLine.SetColor(pBorderLine->GetColor());
     449           0 : }
     450             : 
     451           0 : void SwTableShell::Execute(SfxRequest &rReq)
     452             : {
     453           0 :     const SfxItemSet* pArgs = rReq.GetArgs();
     454           0 :     SwWrtShell &rSh = GetShell();
     455             : 
     456             :     // At first the slots which doesn't need a FrmMgr.
     457           0 :     bool bMore = false;
     458           0 :     const SfxPoolItem* pItem = 0;
     459           0 :     sal_uInt16 nSlot = rReq.GetSlot();
     460           0 :     if(pArgs)
     461           0 :         pArgs->GetItemState(GetPool().GetWhich(nSlot), false, &pItem);
     462           0 :     bool bCallDone = false;
     463           0 :     switch ( nSlot )
     464             :     {
     465             :         case SID_ATTR_BORDER:
     466             :         {
     467           0 :             if(!pArgs)
     468           0 :                 break;
     469             :             // Create items, because we have to rework anyway.
     470           0 :             SvxBoxItem     aBox( RES_BOX );
     471           0 :             SfxItemSet aCoreSet( GetPool(),
     472             :                             RES_BOX, RES_BOX,
     473             :                             SID_ATTR_BORDER_INNER, SID_ATTR_BORDER_INNER,
     474           0 :                             0);
     475           0 :             SvxBoxInfoItem aCoreInfo( SID_ATTR_BORDER_INNER );
     476           0 :             aCoreSet.Put(aCoreInfo);
     477           0 :             rSh.GetTabBorders( aCoreSet );
     478             :             const SvxBoxItem& rCoreBox = (const SvxBoxItem&)
     479           0 :                                                     aCoreSet.Get(RES_BOX);
     480           0 :             const SfxPoolItem *pBoxItem = 0;
     481           0 :             if ( pArgs->GetItemState(RES_BOX, true, &pBoxItem) == SfxItemState::SET )
     482             :             {
     483           0 :                 aBox = *(SvxBoxItem*)pBoxItem;
     484           0 :                 if ( !rReq.IsAPI() )
     485           0 :                     aBox.SetDistance( std::max(rCoreBox.GetDistance(),sal_uInt16(55)) );
     486           0 :                 else if ( aBox.GetDistance() < MIN_BORDER_DIST )
     487           0 :                     aBox.SetDistance( std::max(rCoreBox.GetDistance(),(sal_uInt16)MIN_BORDER_DIST)  );
     488             :             }
     489             :             else
     490             :                 OSL_ENSURE( false, "where is BoxItem?" );
     491             : 
     492             :             //since the drawing layer also supports borders the which id might be a different one
     493           0 :             SvxBoxInfoItem aInfo( SID_ATTR_BORDER_INNER );
     494           0 :             if (pArgs->GetItemState(SID_ATTR_BORDER_INNER, true, &pBoxItem) == SfxItemState::SET)
     495           0 :                 aInfo = *(SvxBoxInfoItem*)pBoxItem;
     496           0 :             else if( pArgs->GetItemState(SDRATTR_TABLE_BORDER_INNER, true, &pBoxItem) == SfxItemState::SET )
     497             :             {
     498           0 :                 aInfo = *(SvxBoxInfoItem*)pBoxItem;
     499           0 :                 aInfo.SetWhich(SID_ATTR_BORDER_INNER);
     500             :             }
     501             : 
     502           0 :             aInfo.SetTable( true );
     503           0 :             aInfo.SetValid( VALID_DISABLE, false );
     504             : 
     505             : // The attributes of all lines will be read and the strongest wins.
     506             :             const SvxBorderLine* pBorderLine;
     507           0 :             SvxBorderLine aBorderLine;
     508           0 :             if ((pBorderLine = rCoreBox.GetTop()) != NULL)
     509           0 :                 lcl_TabGetMaxLineWidth(pBorderLine, aBorderLine);
     510           0 :             if ((pBorderLine = rCoreBox.GetBottom()) != NULL)
     511           0 :                 lcl_TabGetMaxLineWidth(pBorderLine, aBorderLine);
     512           0 :             if ((pBorderLine = rCoreBox.GetLeft()) != NULL)
     513           0 :                 lcl_TabGetMaxLineWidth(pBorderLine, aBorderLine);
     514           0 :             if ((pBorderLine = rCoreBox.GetRight()) != NULL)
     515           0 :                 lcl_TabGetMaxLineWidth(pBorderLine, aBorderLine);
     516           0 :             if ((pBorderLine = aCoreInfo.GetHori()) != NULL)
     517           0 :                 lcl_TabGetMaxLineWidth(pBorderLine, aBorderLine);
     518           0 :             if ((pBorderLine = aCoreInfo.GetVert()) != NULL)
     519           0 :                 lcl_TabGetMaxLineWidth(pBorderLine, aBorderLine);
     520             : 
     521           0 :             if(aBorderLine.GetOutWidth() == 0)
     522             :             {
     523           0 :                 aBorderLine.SetBorderLineStyle(table::BorderLineStyle::SOLID);
     524           0 :                 aBorderLine.SetWidth( DEF_LINE_WIDTH_0 );
     525             :             }
     526             : 
     527           0 :             bool bLine = false;
     528           0 :             if( aBox.GetTop() != NULL )
     529           0 :                 aBox.SetLine(&aBorderLine, BOX_LINE_TOP), bLine |= true;
     530           0 :             if( aBox.GetBottom() != NULL )
     531           0 :                 aBox.SetLine(&aBorderLine, BOX_LINE_BOTTOM), bLine |= true;
     532           0 :             if( aBox.GetLeft() != NULL )
     533           0 :                 aBox.SetLine(&aBorderLine, BOX_LINE_LEFT), bLine |= true;
     534           0 :             if( aBox.GetRight() != NULL )
     535           0 :                 aBox.SetLine(&aBorderLine, BOX_LINE_RIGHT), bLine |= true;
     536           0 :             if( aInfo.GetHori() != NULL )
     537           0 :                 aInfo.SetLine(&aBorderLine, BOXINFO_LINE_HORI), bLine |= true;
     538           0 :             if( aInfo.GetVert() != NULL )
     539           0 :                 aInfo.SetLine(&aBorderLine, BOXINFO_LINE_VERT), bLine |= true;
     540             : 
     541           0 :             aCoreSet.Put( aBox  );
     542           0 :             aCoreSet.Put( aInfo );
     543           0 :             rSh.SetTabBorders( aCoreSet );
     544             : 
     545             :             // we must record the "real" values because otherwise the lines can't be reconstructed on playtime
     546             :             // the coding style of the controller (setting lines with width 0) is not transportable via Query/PutValue in
     547             :             // the SvxBoxItem
     548           0 :             rReq.AppendItem( aBox );
     549           0 :             rReq.AppendItem( aInfo );
     550           0 :             bCallDone = true;
     551           0 :             break;
     552             :         }
     553             :         case FN_INSERT_TABLE:
     554           0 :             InsertTable( rReq );
     555           0 :             break;
     556             :         case FN_FORMAT_TABLE_DLG:
     557             :         {
     558             :             //#127012# get the bindings before the dialog is called
     559             :             // it might happen that this shell is removed after closing the dialog
     560           0 :             SfxBindings& rBindings = GetView().GetViewFrame()->GetBindings();
     561           0 :             SfxItemSet aCoreSet( GetPool(), aUITableAttrRange);
     562             : 
     563           0 :             FieldUnit eMetric = ::GetDfltMetric(0 != PTR_CAST(SwWebView, &rSh.GetView()));
     564           0 :             SW_MOD()->PutItem(SfxUInt16Item(SID_ATTR_METRIC, static_cast< sal_uInt16 >(eMetric)));
     565           0 :             boost::scoped_ptr<SwTableRep> pTblRep(::lcl_TableParamToItemSet( aCoreSet, rSh ));
     566           0 :             boost::scoped_ptr<SfxAbstractTabDialog> pDlg;
     567             :             {
     568           0 :                 SwAbstractDialogFactory* pFact = SwAbstractDialogFactory::Create();
     569             :                 OSL_ENSURE(pFact, "SwAbstractDialogFactory fail!");
     570             : 
     571           0 :                 pDlg.reset(pFact->CreateSwTableTabDlg(GetView().GetWindow(), GetPool(), &aCoreSet, &rSh));
     572             :                 OSL_ENSURE(pDlg, "Dialog creation failed!");
     573             : 
     574           0 :                 if (pItem)
     575           0 :                     pDlg->SetCurPageId(OUStringToOString(((SfxStringItem *)pItem)->GetValue(), RTL_TEXTENCODING_UTF8));
     576             :             }
     577           0 :             aCoreSet.Put(SfxUInt16Item(SID_HTML_MODE, ::GetHtmlMode(GetView().GetDocShell())));
     578           0 :             rSh.GetTblAttr(aCoreSet);
     579             :             // GetTblAttr overwrites the background!
     580           0 :             SvxBrushItem aBrush( RES_BACKGROUND );
     581           0 :             if(rSh.GetBoxBackground(aBrush))
     582           0 :                 aCoreSet.Put( aBrush );
     583             :             else
     584           0 :                 aCoreSet.InvalidateItem( RES_BACKGROUND );
     585             : 
     586           0 :             if ( (!pDlg && rReq.GetArgs()) || (pDlg && pDlg->Execute() == RET_OK) )
     587             :             {
     588           0 :                 const SfxItemSet* pOutSet = pDlg ? pDlg->GetOutputItemSet() : rReq.GetArgs();
     589           0 :                 if ( pDlg )
     590             :                 {
     591             :                     //to record FN_INSERT_TABLE correctly
     592           0 :                     rReq.SetSlot(FN_FORMAT_TABLE_DLG);
     593           0 :                     rReq.Done( *pOutSet );
     594             :                 }
     595           0 :                 ItemSetToTableParam( *pOutSet, rSh );
     596             :             }
     597             : 
     598           0 :             pDlg.reset();
     599           0 :             pTblRep.reset();
     600           0 :             rBindings.Update(SID_RULER_BORDERS);
     601           0 :             rBindings.Update(SID_ATTR_TABSTOP);
     602           0 :             rBindings.Update(SID_RULER_BORDERS_VERTICAL);
     603           0 :             rBindings.Update(SID_ATTR_TABSTOP_VERTICAL);
     604           0 :             break;
     605             :         }
     606             :         case SID_ATTR_BRUSH:
     607             :         case SID_ATTR_BRUSH_ROW :
     608             :         case SID_ATTR_BRUSH_TABLE :
     609           0 :             if(rReq.GetArgs())
     610           0 :                 ItemSetToTableParam(*rReq.GetArgs(), rSh);
     611           0 :             break;
     612             :         case FN_NUM_FORMAT_TABLE_DLG:
     613             :         {
     614           0 :             SwView* pView = GetActiveView();
     615           0 :             if(pView)
     616             :             {
     617           0 :                 FieldUnit eMetric = ::GetDfltMetric(0 != PTR_CAST(SwWebView, pView));
     618           0 :                 SW_MOD()->PutItem(SfxUInt16Item(SID_ATTR_METRIC, static_cast< sal_uInt16 >(eMetric)));
     619           0 :                 SvNumberFormatter* pFormatter = rSh.GetNumberFormatter();
     620           0 :                 SfxItemSet aCoreSet( GetPool(),
     621             :                                  SID_ATTR_NUMBERFORMAT_VALUE, SID_ATTR_NUMBERFORMAT_VALUE,
     622             :                                  SID_ATTR_NUMBERFORMAT_INFO, SID_ATTR_NUMBERFORMAT_INFO,
     623           0 :                                  0 );
     624             : 
     625           0 :                 SfxItemSet aBoxSet( *aCoreSet.GetPool(),
     626             :                                     RES_BOXATR_FORMAT, RES_BOXATR_FORMAT,
     627             :                                     RES_BOXATR_VALUE, RES_BOXATR_VALUE,
     628           0 :                                     0 );
     629           0 :                 rSh.GetTblBoxFormulaAttrs( aBoxSet );
     630             : 
     631           0 :                 SfxItemState eState = aBoxSet.GetItemState(RES_BOXATR_FORMAT);
     632           0 :                 if(eState == SfxItemState::DEFAULT)
     633             :                 {
     634             :                     aCoreSet.Put( SfxUInt32Item( SID_ATTR_NUMBERFORMAT_VALUE,
     635           0 :                     pFormatter->GetFormatIndex(NF_TEXT, LANGUAGE_SYSTEM)));
     636             :                 }
     637             :                 else
     638             :                     aCoreSet.Put( SfxUInt32Item( SID_ATTR_NUMBERFORMAT_VALUE,
     639             :                                     ((SwTblBoxNumFormat&)aBoxSet.Get(
     640           0 :                                     RES_BOXATR_FORMAT )).GetValue() ));
     641             : 
     642           0 :                 OUString sCurText( rSh.GetTableBoxText() );
     643             :                 aCoreSet.Put( SvxNumberInfoItem( pFormatter,
     644             :                                     ((SwTblBoxValue&)aBoxSet.Get(
     645           0 :                                         RES_BOXATR_VALUE)).GetValue(),
     646           0 :                                     sCurText, SID_ATTR_NUMBERFORMAT_INFO ));
     647             : 
     648           0 :                 SwAbstractDialogFactory* pFact = SwAbstractDialogFactory::Create();
     649             :                 OSL_ENSURE(pFact, "SwAbstractDialogFactory fail!");
     650             : 
     651           0 :                 boost::scoped_ptr<SfxAbstractDialog> pDlg(pFact->CreateSfxDialog( GetView().GetWindow(),aCoreSet,
     652           0 :                     pView->GetViewFrame()->GetFrame().GetFrameInterface(),
     653           0 :                     RC_DLG_SWNUMFMTDLG ));
     654             :                 OSL_ENSURE(pDlg, "Dialog creation failed!");
     655             : 
     656           0 :                 if (RET_OK == pDlg->Execute())
     657             :                 {
     658           0 :                     const SfxPoolItem* pNumberFormatItem = GetView().GetDocShell()->
     659           0 :                                     GetItem( SID_ATTR_NUMBERFORMAT_INFO );
     660             : 
     661           0 :                     if( pNumberFormatItem && 0 != ((SvxNumberInfoItem*)pNumberFormatItem)->GetDelCount() )
     662             :                     {
     663             :                         const sal_uInt32* pDelArr = ((SvxNumberInfoItem*)
     664           0 :                                                         pNumberFormatItem)->GetDelArray();
     665             : 
     666           0 :                         for ( sal_uInt32 i = 0; i < ((SvxNumberInfoItem*)pNumberFormatItem)->GetDelCount(); i++ )
     667             :                             ((SvxNumberInfoItem*)pNumberFormatItem)->
     668           0 :                             GetNumberFormatter()->DeleteEntry( pDelArr[i] );
     669             :                     }
     670             : 
     671           0 :                     if( SfxItemState::SET == pDlg->GetOutputItemSet()->GetItemState(
     672           0 :                         SID_ATTR_NUMBERFORMAT_VALUE, false, &pNumberFormatItem ))
     673             :                     {
     674           0 :                         SfxItemSet aBoxFormatSet( *aCoreSet.GetPool(),
     675           0 :                                     RES_BOXATR_FORMAT, RES_BOXATR_FORMAT );
     676             :                         aBoxFormatSet.Put( SwTblBoxNumFormat(
     677           0 :                                 ((SfxUInt32Item*)pNumberFormatItem)->GetValue() ));
     678           0 :                         rSh.SetTblBoxFormulaAttrs( aBoxFormatSet );
     679             : 
     680             :                     }
     681           0 :                 }
     682             :             }
     683           0 :             break;
     684             :         }
     685             :         case FN_CALC_TABLE:
     686           0 :             rSh.UpdateTable();
     687           0 :             bCallDone = true;
     688           0 :             break;
     689             :         case FN_TABLE_OPTIMAL_HEIGHT:
     690             :         {
     691           0 :             const SwFmtFrmSize aSz;
     692           0 :             rSh.SetRowHeight( aSz );
     693           0 :             bCallDone = true;
     694           0 :             break;
     695             :         }
     696             :         case FN_TABLE_DELETE_COL:
     697           0 :             if ( rSh.DeleteCol() && rSh.HasSelection() )
     698           0 :                 rSh.EnterStdMode();
     699           0 :             bCallDone = true;
     700           0 :             break;
     701             :         case FN_END_TABLE:
     702           0 :             rSh.MoveTable( fnTableCurr, fnTableEnd );
     703           0 :             bCallDone = true;
     704           0 :             break;
     705             :         case FN_START_TABLE:
     706           0 :             rSh.MoveTable( fnTableCurr, fnTableStart );
     707           0 :             bCallDone = true;
     708           0 :             break;
     709             :         case FN_GOTO_NEXT_CELL:
     710             :         {
     711           0 :             bool bAppendLine = true;
     712           0 :             if( pItem )
     713           0 :                 bAppendLine = ((SfxBoolItem*)pItem)->GetValue();
     714             :             rReq.SetReturnValue( SfxBoolItem( nSlot,
     715           0 :                                     rSh.GoNextCell( bAppendLine ) ) );
     716           0 :             bCallDone = true;
     717           0 :             break;
     718             :         }
     719             :         case FN_GOTO_PREV_CELL:
     720           0 :             rReq.SetReturnValue( SfxBoolItem( nSlot, rSh.GoPrevCell() ) );
     721           0 :             bCallDone = true;
     722           0 :             break;
     723             :         case FN_TABLE_DELETE_ROW:
     724           0 :             if ( rSh.DeleteRow() && rSh.HasSelection() )
     725           0 :                 rSh.EnterStdMode();
     726           0 :             bCallDone = true;
     727           0 :             break;
     728             :         case FN_TABLE_MERGE_CELLS:
     729           0 :             if ( rSh.IsTableMode() )
     730           0 :                 switch ( rSh.MergeTab() )
     731             :                 {
     732             :                     case TBLMERGE_OK:
     733           0 :                          bCallDone = true;
     734             :                         //no break;
     735             :                     case TBLMERGE_NOSELECTION:
     736           0 :                         break;
     737             :                     case TBLMERGE_TOOCOMPLEX:
     738             :                     {
     739           0 :                         MessageDialog aInfoBox( GetView().GetWindow(),
     740           0 :                                     SW_RES( STR_ERR_TABLE_MERGE ), VCL_MESSAGE_INFO );
     741           0 :                         aInfoBox.Execute();
     742           0 :                         break;
     743             :                     }
     744             :                     default:
     745             :                         OSL_ENSURE( false, "unknown return value MergeTab.");
     746           0 :                         break;
     747             :                 }
     748           0 :             break;
     749             :         case FN_TABLE_ADJUST_CELLS:
     750             :         case FN_TABLE_BALANCE_CELLS:
     751             :         {
     752           0 :             bool bBalance = (FN_TABLE_BALANCE_CELLS == nSlot);
     753           0 :             if ( rSh.IsAdjustCellWidthAllowed(bBalance) )
     754             :             {
     755             :                 {
     756             :                     // remove actions to make a valid table selection
     757           0 :                     UnoActionRemoveContext aRemoveContext(rSh.GetDoc());
     758             :                 }
     759           0 :                 rSh.AdjustCellWidth(bBalance);
     760             :             }
     761           0 :             bCallDone = true;
     762           0 :             break;
     763             :         }
     764             :         case FN_TABLE_BALANCE_ROWS:
     765           0 :             if ( rSh.BalanceRowHeight(true) )
     766           0 :                 rSh.BalanceRowHeight(false);
     767           0 :             bCallDone = true;
     768           0 :             break;
     769             :         case FN_TABLE_SELECT_ALL:
     770           0 :             rSh.EnterStdMode();
     771           0 :             rSh.MoveTable( fnTableCurr, fnTableStart );
     772           0 :             rSh.SttSelect();
     773           0 :             rSh.MoveTable( fnTableCurr, fnTableEnd );
     774           0 :             rSh.EndSelect();
     775           0 :             bCallDone = true;
     776           0 :             break;
     777             :         case FN_TABLE_SELECT_COL:
     778           0 :             rSh.EnterStdMode();
     779           0 :             rSh.SelectTableCol();
     780           0 :             bCallDone = true;
     781           0 :             break;
     782             :         case FN_TABLE_SELECT_ROW:
     783           0 :             rSh.EnterStdMode();
     784           0 :             rSh.SelectTableRow();
     785           0 :             bCallDone = true;
     786           0 :             break;
     787             :         case FN_TABLE_SET_READ_ONLY_CELLS:
     788           0 :             rSh.ProtectCells();
     789           0 :             rSh.ResetSelect( 0, false );
     790           0 :             bCallDone = true;
     791           0 :             break;
     792             :         case FN_TABLE_UNSET_READ_ONLY_CELLS:
     793           0 :             rSh.UnProtectCells();
     794           0 :             bCallDone = true;
     795           0 :             break;
     796             :         case SID_AUTOFORMAT:
     797             :         {
     798           0 :             SwAbstractDialogFactory* pFact = SwAbstractDialogFactory::Create();
     799             :             OSL_ENSURE(pFact, "SwAbstractDialogFactory fail!");
     800             : 
     801           0 :             boost::scoped_ptr<AbstractSwAutoFormatDlg> pDlg(pFact->CreateSwAutoFormatDlg(&GetView().GetViewFrame()->GetWindow(), &rSh));
     802             :             OSL_ENSURE(pDlg, "Dialog creation failed!");
     803           0 :             pDlg->Execute();
     804           0 :             break;
     805             :         }
     806             :         case FN_TABLE_SET_ROW_HEIGHT:
     807             :         {
     808           0 :             SwAbstractDialogFactory* pFact = SwAbstractDialogFactory::Create();
     809             :             OSL_ENSURE(pFact, "SwAbstractDialogFactory fail!");
     810             : 
     811           0 :             boost::scoped_ptr<VclAbstractDialog> pDlg(pFact->CreateVclAbstractDialog( GetView().GetWindow(), rSh, DLG_ROW_HEIGHT ));
     812             :             OSL_ENSURE(pDlg, "Dialog creation failed!");
     813           0 :             pDlg->Execute();
     814           0 :             break;
     815             :         }
     816             :         case FN_NUMBER_BULLETS:
     817             :         case FN_NUM_BULLET_ON:
     818             :             OSL_ENSURE( false, "function may not be called now." );
     819           0 :             break;
     820             : 
     821             :         case FN_TABLE_INSERT_COL:
     822             :         case FN_TABLE_INSERT_ROW:
     823             :         {
     824           0 :             bool bColumn = rReq.GetSlot() == FN_TABLE_INSERT_COL;
     825           0 :             sal_uInt16 nCount = 0;
     826           0 :             bool bAfter = true;
     827           0 :             if (pItem)
     828             :             {
     829           0 :                 nCount = ((const SfxInt16Item* )pItem)->GetValue();
     830           0 :                 if(SfxItemState::SET == pArgs->GetItemState(FN_PARAM_INSERT_AFTER, true, &pItem))
     831           0 :                     bAfter = ((const SfxBoolItem* )pItem)->GetValue();
     832             :             }
     833           0 :             else if( !rReq.IsAPI() )
     834           0 :                 ++nCount;
     835             : 
     836           0 :             if( nCount )
     837             :             {
     838             :                 // i74180: Table border patch submitted by chensuchun:
     839             :                 // -->get the SvxBoxInfoItem of the table before insert
     840           0 :                 SfxItemSet aCoreSet( GetPool(), aUITableAttrRange);
     841           0 :                 ::lcl_TableParamToItemSet( aCoreSet, rSh );
     842           0 :                 bool bSetInnerBorders = false;
     843           0 :                 SwUndoId nUndoId = UNDO_EMPTY;
     844             :                 // <--End
     845             : 
     846           0 :                 if( bColumn )
     847             :                 {
     848           0 :                     rSh.StartUndo( UNDO_TABLE_INSCOL );
     849           0 :                     rSh.InsertCol( nCount, bAfter );
     850           0 :                     bSetInnerBorders = true;
     851           0 :                     nUndoId = UNDO_TABLE_INSCOL;
     852             :                 }
     853           0 :                 else if ( !rSh.IsInRepeatedHeadline() )
     854             :                 {
     855           0 :                     rSh.StartUndo( UNDO_TABLE_INSROW );
     856           0 :                     rSh.InsertRow( nCount, bAfter );
     857           0 :                     bSetInnerBorders = true;
     858           0 :                     nUndoId = UNDO_TABLE_INSROW;
     859             :                 }
     860             : 
     861             :                 // -->after inserting,reset the inner table borders
     862           0 :                 if ( bSetInnerBorders )
     863             :                 {
     864             :                     const SvxBoxInfoItem aBoxInfo((const SvxBoxInfoItem&)
     865           0 :                         aCoreSet.Get(SID_ATTR_BORDER_INNER));
     866           0 :                     SfxItemSet aSet( GetPool(), SID_ATTR_BORDER_INNER,
     867           0 :                                                 SID_ATTR_BORDER_INNER, 0);
     868           0 :                     aSet.Put( aBoxInfo );
     869           0 :                     ItemSetToTableParam( aSet, rSh );
     870           0 :                     rSh.EndUndo( nUndoId );
     871             :                 }
     872             : 
     873           0 :                 bCallDone = true;
     874           0 :                 break;
     875             :             }
     876             : 
     877           0 :             nSlot = bColumn ? FN_TABLE_INSERT_COL_DLG : FN_TABLE_INSERT_ROW_DLG;
     878             :         }
     879             :         // No break;  on Count = 0 appears the dialog
     880             :         case FN_TABLE_INSERT_COL_DLG:
     881             :         case FN_TABLE_INSERT_ROW_DLG:
     882             :         {
     883           0 :             const SfxSlot* pSlot = GetStaticInterface()->GetSlot(nSlot);
     884           0 :             if ( FN_TABLE_INSERT_ROW_DLG != nSlot || !rSh.IsInRepeatedHeadline())
     885             :             {
     886           0 :                 SvxAbstractDialogFactory* pFact = SvxAbstractDialogFactory::Create();
     887           0 :                 boost::scoped_ptr<SvxAbstractInsRowColDlg> pDlg( pFact ? pFact->CreateSvxInsRowColDlg( GetView().GetWindow(), nSlot == FN_TABLE_INSERT_COL_DLG, pSlot->GetCommand() ) : 0);
     888             : 
     889           0 :                 if( pDlg.get() && (pDlg->Execute() == 1) )
     890             :                 {
     891             :                     const sal_uInt16 nDispatchSlot = (nSlot == FN_TABLE_INSERT_COL_DLG)
     892           0 :                         ? FN_TABLE_INSERT_COL : FN_TABLE_INSERT_ROW;
     893           0 :                     SfxUInt16Item aCountItem( nDispatchSlot, static_cast< sal_uInt16 >(pDlg->getInsertCount()) );
     894           0 :                     SfxBoolItem  aAfter( FN_PARAM_INSERT_AFTER, !pDlg->isInsertBefore() );
     895           0 :                     SfxViewFrame* pVFrame = GetView().GetViewFrame();
     896           0 :                     if( pVFrame )
     897           0 :                         pVFrame->GetDispatcher()->Execute( nDispatchSlot, SfxCallMode::SYNCHRON|SfxCallMode::RECORD, &aCountItem, &aAfter, 0L);
     898           0 :                 }
     899             :             }
     900           0 :             break;
     901             :         }
     902             :         case FN_TABLE_SPLIT_CELLS:
     903             :         {
     904           0 :             long nCount=0;
     905           0 :             bool bHorizontal=true;
     906           0 :             bool bProportional = false;
     907           0 :             SFX_REQUEST_ARG( rReq, pSplit, SfxInt32Item, FN_TABLE_SPLIT_CELLS, false );
     908           0 :             SFX_REQUEST_ARG( rReq, pHor, SfxBoolItem, FN_PARAM_1, false );
     909           0 :             SFX_REQUEST_ARG( rReq, pProp, SfxBoolItem, FN_PARAM_2, false );
     910           0 :             if ( pSplit )
     911             :             {
     912           0 :                 nCount = pSplit->GetValue();
     913           0 :                 if ( pHor )
     914           0 :                     bHorizontal = pHor->GetValue();
     915           0 :                 if ( pProp )
     916           0 :                     bProportional = pProp->GetValue();
     917             :             }
     918             :             else
     919             :             {
     920           0 :                 SvxAbstractDialogFactory* pFact = SvxAbstractDialogFactory::Create();
     921           0 :                 if( pFact )
     922             :                 {
     923           0 :                     const long nMaxVert = rSh.GetAnyCurRect( RECT_FRM ).Width() / MINLAY;
     924           0 :                     boost::scoped_ptr<SvxAbstractSplittTableDialog> pDlg(pFact->CreateSvxSplittTableDialog( GetView().GetWindow(), rSh.IsTableVertical(), nMaxVert, 99 ));
     925           0 :                     if( pDlg && (pDlg->Execute() == RET_OK) )
     926             :                     {
     927           0 :                         nCount = pDlg->GetCount();
     928           0 :                         bHorizontal = pDlg->IsHorizontal();
     929           0 :                         bProportional = pDlg->IsProportional();
     930           0 :                         rReq.AppendItem( SfxInt32Item( FN_TABLE_SPLIT_CELLS, nCount ) );
     931           0 :                         rReq.AppendItem( SfxBoolItem( FN_PARAM_1, bHorizontal ) );
     932           0 :                         rReq.AppendItem( SfxBoolItem( FN_PARAM_2, bProportional ) );
     933           0 :                     }
     934             :                 }
     935             :             }
     936             : 
     937           0 :             if ( nCount>1 )
     938             :             {
     939           0 :                 rSh.SplitTab(!bHorizontal, static_cast< sal_uInt16 >( nCount-1 ), bProportional );
     940           0 :                 bCallDone = true;
     941             :             }
     942             :             else
     943           0 :                 rReq.Ignore();
     944           0 :             break;
     945             :         }
     946             : 
     947             :         case FN_TABLE_SPLIT_TABLE:
     948             :         {
     949           0 :             SFX_REQUEST_ARG( rReq, pType, SfxUInt16Item, FN_PARAM_1, false );
     950           0 :             if( pType )
     951             :             {
     952           0 :                 switch( pType->GetValue() )
     953             :                 {
     954             :                     case HEADLINE_NONE    :
     955             :                     case HEADLINE_BORDERCOPY:
     956             :                     case HEADLINE_CNTNTCOPY:
     957             :                     case HEADLINE_BOXATTRCOPY:
     958             :                     case HEADLINE_BOXATRCOLLCOPY:
     959           0 :                         rSh.SplitTable(pType->GetValue()) ;
     960             :                     default: ;//wrong parameter, do nothing
     961             :                 }
     962             :             }
     963             :             else
     964             :             {
     965           0 :                 SwAbstractDialogFactory* pFact = SwAbstractDialogFactory::Create();
     966             :                 OSL_ENSURE(pFact, "SwAbstractDialogFactory fail!");
     967             : 
     968           0 :                 boost::scoped_ptr<AbstractSplitTableDialog> pDlg(pFact->CreateSplitTblDialog( GetView().GetWindow(), rSh ));
     969             :                 OSL_ENSURE(pDlg, "Dialog creation failed!");
     970           0 :                 pDlg->Execute();
     971           0 :                 rReq.AppendItem( SfxUInt16Item( FN_PARAM_1, pDlg->GetSplitMode() ) );
     972           0 :                 bCallDone = true;
     973             :             }
     974           0 :             break;
     975             :         }
     976             : 
     977             :         case FN_TABLE_MERGE_TABLE:
     978             :         {
     979           0 :             bool bPrev = rSh.CanMergeTable( true );
     980           0 :             bool bNext = rSh.CanMergeTable( false );
     981             : 
     982           0 :             if( bPrev && bNext )
     983             :             {
     984           0 :                 SwAbstractDialogFactory* pFact = SwAbstractDialogFactory::Create();
     985             :                 OSL_ENSURE(pFact, "SwAbstractDialogFactory fail!");
     986           0 :                 boost::scoped_ptr<VclAbstractDialog> pDlg(pFact->CreateTblMergeDialog(GetView().GetWindow(), bPrev));
     987             :                 OSL_ENSURE(pDlg, "Dialog creation failed!");
     988           0 :                 if( RET_OK != pDlg->Execute())
     989           0 :                     bPrev = bNext = false;
     990             :             }
     991             : 
     992           0 :             if( bPrev || bNext )
     993           0 :                 rSh.MergeTable( bPrev );
     994           0 :             break;
     995             :         }
     996             : 
     997             :         case FN_TABLE_MODE_FIX       :
     998             :         case FN_TABLE_MODE_FIX_PROP  :
     999             :         case FN_TABLE_MODE_VARIABLE  :
    1000             :         {
    1001             :             rSh.SetTblChgMode( ( FN_TABLE_MODE_FIX == nSlot ? TBLFIX_CHGABS
    1002             :                                     : FN_TABLE_MODE_FIX_PROP == nSlot
    1003             :                                         ? TBLFIX_CHGPROP
    1004           0 :                                         : TBLVAR_CHGABS ) );
    1005             : 
    1006           0 :             SfxBindings& rBind = GetView().GetViewFrame()->GetBindings();
    1007             :             static sal_uInt16 aInva[] =
    1008             :                             {   FN_TABLE_MODE_FIX,
    1009             :                                 FN_TABLE_MODE_FIX_PROP,
    1010             :                                 FN_TABLE_MODE_VARIABLE,
    1011             :                                 0
    1012             :                             };
    1013           0 :             rBind.Invalidate( aInva );
    1014           0 :             bCallDone = true;
    1015           0 :             break;
    1016             :         }
    1017             :         case FN_TABLE_AUTOSUM:
    1018             :         {
    1019           0 :             SfxViewFrame* pVFrame = GetView().GetViewFrame();
    1020           0 :             pVFrame->GetDispatcher()->Execute(FN_EDIT_FORMULA, SfxCallMode::SYNCHRON);
    1021           0 :             const sal_uInt16 nId = SwInputChild::GetChildWindowId();
    1022             :             SwInputChild* pChildWin = (SwInputChild*)pVFrame->
    1023           0 :                                                 GetChildWindow( nId );
    1024           0 :             OUString sSum;
    1025           0 :             GetShell().GetAutoSum(sSum);
    1026           0 :             if( pChildWin )
    1027           0 :                 pChildWin->SetFormula( sSum );
    1028             : 
    1029           0 :             break;
    1030             :         }
    1031             :         case FN_TABLE_HEADLINE_REPEAT:
    1032           0 :             if(0 != rSh.GetRowsToRepeat())
    1033           0 :                 rSh.SetRowsToRepeat( 0 );
    1034             :             else
    1035           0 :                 rSh.SetRowsToRepeat(rSh.GetRowSelectionFromTop());
    1036           0 :             break;
    1037             :         case FN_TABLE_SELECT_CELL   :
    1038           0 :             rSh.SelectTableCell();
    1039           0 :             break;
    1040             :         case FN_TABLE_DELETE_TABLE  :
    1041             :         {
    1042           0 :             rSh.StartAction();
    1043           0 :             rSh.StartUndo();
    1044           0 :             rSh.GetView().GetViewFrame()->GetDispatcher()->Execute(FN_TABLE_SELECT_ALL);
    1045           0 :             rSh.DeleteTable();
    1046           0 :             rSh.EndUndo();
    1047           0 :             rSh.EndAction();
    1048             :             //'this' is already destroyed
    1049           0 :             return;
    1050             :         }
    1051             :         default:
    1052           0 :             bMore = true;
    1053             :     }
    1054             : 
    1055           0 :     if ( !bMore )
    1056             :     {
    1057           0 :         if(bCallDone)
    1058           0 :             rReq.Done();
    1059           0 :         return;
    1060             :     }
    1061             : 
    1062             :     // Now the slots which are working directly on the TableFmt.
    1063           0 :     SwFrmFmt *pFmt = rSh.GetTableFmt();
    1064           0 :     switch ( nSlot )
    1065             :     {
    1066             :         case SID_ATTR_ULSPACE:
    1067           0 :             if(pItem)
    1068             :             {
    1069           0 :                 SvxULSpaceItem aULSpace( *(const SvxULSpaceItem*)pItem );
    1070           0 :                 aULSpace.SetWhich( RES_UL_SPACE );
    1071           0 :                 ::lcl_SetAttr( rSh, aULSpace );
    1072             :             }
    1073           0 :             break;
    1074             : 
    1075             :         case SID_ATTR_LRSPACE:
    1076           0 :             if(pItem)
    1077             :             {
    1078           0 :                 SfxItemSet aSet( GetPool(), RES_LR_SPACE, RES_LR_SPACE,
    1079           0 :                                             RES_HORI_ORIENT, RES_HORI_ORIENT, 0 );
    1080           0 :                 SvxLRSpaceItem aLRSpace( *(const SvxLRSpaceItem*)pItem );
    1081           0 :                 aLRSpace.SetWhich( RES_LR_SPACE );
    1082           0 :                 aSet.Put( aLRSpace );
    1083           0 :                 SwFmtHoriOrient aHori( pFmt->GetHoriOrient() );
    1084           0 :                 aHori.SetHoriOrient( text::HoriOrientation::NONE );
    1085           0 :                 aSet.Put( aLRSpace );
    1086           0 :                 rSh.SetTblAttr( aSet );
    1087             :             }
    1088           0 :             break;
    1089             :         // The last case branch which needs a table manager!!
    1090             :         case FN_TABLE_SET_COL_WIDTH:
    1091             :         {
    1092           0 :             SwTableFUNC aMgr( &rSh, false);
    1093           0 :             aMgr.ColWidthDlg(GetView().GetWindow());
    1094           0 :             break;
    1095             :         }
    1096             :         case SID_TABLE_VERT_NONE:
    1097             :         case SID_TABLE_VERT_CENTER:
    1098             :         case SID_TABLE_VERT_BOTTOM:
    1099             :         {
    1100             :             const sal_uInt16 nAlign = nSlot == SID_TABLE_VERT_NONE ?
    1101             :                                 text::VertOrientation::NONE :
    1102             :                                     nSlot == SID_TABLE_VERT_CENTER ?
    1103           0 :                                         text::VertOrientation::CENTER : text::VertOrientation::BOTTOM;
    1104           0 :             rSh.SetBoxAlign(nAlign);
    1105           0 :             bCallDone = true;
    1106           0 :             break;
    1107             :         }
    1108             : 
    1109             :         case SID_ATTR_PARA_SPLIT:
    1110           0 :             if ( pItem )
    1111             :             {
    1112           0 :                 SwFmtLayoutSplit aSplit( ((const SvxFmtSplitItem*)pItem)->GetValue());
    1113           0 :                 SfxItemSet aSet(GetPool(),  RES_LAYOUT_SPLIT, RES_LAYOUT_SPLIT, 0 );
    1114           0 :                 aSet.Put(aSplit);
    1115           0 :                 rSh.SetTblAttr(aSet);
    1116             :             }
    1117           0 :             break;
    1118             : 
    1119             :         case SID_ATTR_PARA_KEEP:
    1120           0 :             if ( pItem )
    1121             :             {
    1122           0 :                 SvxFmtKeepItem aKeep( *(const SvxFmtKeepItem*)pItem );
    1123           0 :                 aKeep.SetWhich( RES_KEEP );
    1124           0 :                 SfxItemSet aSet(GetPool(),  RES_KEEP, RES_KEEP, 0 );
    1125           0 :                 aSet.Put(aKeep);
    1126           0 :                 rSh.SetTblAttr(aSet);
    1127             :             }
    1128           0 :             break;
    1129             :         case FN_TABLE_ROW_SPLIT :
    1130             :         {
    1131           0 :             const SfxBoolItem* pBool = static_cast<const SfxBoolItem*>(pItem);
    1132           0 :             SwFmtRowSplit* pSplit = 0;
    1133           0 :             if(!pBool)
    1134             :             {
    1135           0 :                 rSh.GetRowSplit(pSplit);
    1136           0 :                 if(pSplit)
    1137           0 :                     pSplit->SetValue(!pSplit->GetValue());
    1138             :                 else
    1139           0 :                    pSplit = new SwFmtRowSplit(true);
    1140             :             }
    1141             :             else
    1142             :             {
    1143           0 :                 pSplit = new SwFmtRowSplit(pBool->GetValue());
    1144             :             }
    1145           0 :             rSh.SetRowSplit( *pSplit );
    1146           0 :             delete pSplit;
    1147           0 :             break;
    1148             :         }
    1149             : 
    1150             :         default:
    1151             :             OSL_ENSURE( false, "wrong Dispatcher" );
    1152           0 :             return;
    1153             :     }
    1154           0 :     if(bCallDone)
    1155           0 :         rReq.Done();
    1156             : }
    1157             : 
    1158          20 : void SwTableShell::GetState(SfxItemSet &rSet)
    1159             : {
    1160          20 :     SfxWhichIter aIter( rSet );
    1161          20 :     SwWrtShell &rSh = GetShell();
    1162          20 :     SwFrmFmt *pFmt = rSh.GetTableFmt();
    1163             :     // os #124829# crash report: in case of an invalid shell selection return immediately
    1164          20 :     if(!pFmt)
    1165          20 :         return;
    1166          20 :     sal_uInt16 nSlot = aIter.FirstWhich();
    1167          92 :     while ( nSlot )
    1168             :     {
    1169          52 :         switch ( nSlot )
    1170             :         {
    1171             :             case FN_TABLE_MERGE_CELLS:
    1172           6 :                 if ( !rSh.IsTableMode() )
    1173           2 :                     rSet.DisableItem(FN_TABLE_MERGE_CELLS);
    1174           6 :                 break;
    1175             :             case FN_TABLE_ADJUST_CELLS:
    1176           0 :                 if ( !rSh.IsAdjustCellWidthAllowed() )
    1177           0 :                     rSet.DisableItem(FN_TABLE_ADJUST_CELLS);
    1178           0 :                 break;
    1179             : 
    1180             :             case FN_TABLE_BALANCE_CELLS:
    1181           0 :                 if ( !rSh.IsAdjustCellWidthAllowed(true) )
    1182           0 :                     rSet.DisableItem(FN_TABLE_BALANCE_CELLS);
    1183           0 :                 break;
    1184             : 
    1185             :             case FN_TABLE_BALANCE_ROWS:
    1186           0 :                 if ( !rSh.BalanceRowHeight(true) )
    1187           0 :                     rSet.DisableItem(FN_TABLE_BALANCE_ROWS);
    1188           0 :                 break;
    1189             :             case FN_OPTIMIZE_TABLE:
    1190          14 :                 if ( !rSh.IsTableMode() &&
    1191           4 :                         !rSh.IsAdjustCellWidthAllowed() &&
    1192          10 :                         !rSh.IsAdjustCellWidthAllowed(true) &&
    1193           2 :                         !rSh.BalanceRowHeight(true) )
    1194           2 :                     rSet.DisableItem(FN_OPTIMIZE_TABLE);
    1195           6 :             break;
    1196             :             case SID_INSERT_DIAGRAM:
    1197             :                 {
    1198           0 :                     SvtModuleOptions aMOpt;
    1199           0 :                     if ( !aMOpt.IsMath() || rSh.IsTblComplexForChart() )
    1200           0 :                         rSet.DisableItem(nSlot);
    1201             :                 }
    1202           0 :                 break;
    1203             : 
    1204             :             case FN_INSERT_TABLE:
    1205           4 :                 if ( rSh.CrsrInsideInputFld() )
    1206             :                 {
    1207           0 :                     rSet.DisableItem( nSlot );
    1208             :                 }
    1209           4 :                 break;
    1210             : 
    1211             :             case FN_TABLE_OPTIMAL_HEIGHT:
    1212             :             {
    1213             :                 // Disable if auto height already is enabled.
    1214             :                 SwFmtFrmSize *pSz;
    1215           0 :                 rSh.GetRowHeight( pSz );
    1216           0 :                 if ( pSz )
    1217             :                 {
    1218           0 :                     if ( ATT_VAR_SIZE == pSz->GetHeightSizeType() )
    1219           0 :                         rSet.DisableItem( nSlot );
    1220           0 :                     delete pSz;
    1221             :                 }
    1222           0 :                 break;
    1223             :             }
    1224             :             case FN_TABLE_INSERT_ROW:
    1225             :             case FN_TABLE_INSERT_ROW_DLG:
    1226           6 :                 if ( rSh.IsInRepeatedHeadline() )
    1227           0 :                     rSet.DisableItem( nSlot );
    1228           6 :                 break;
    1229             :             case RES_LR_SPACE:
    1230           0 :                 rSet.Put(pFmt->GetLRSpace());
    1231           0 :                 break;
    1232             :             case RES_UL_SPACE:
    1233           0 :                 rSet.Put(pFmt->GetULSpace());
    1234           0 :                 break;
    1235             : 
    1236             :             case SID_TABLE_VERT_NONE:
    1237             :             case SID_TABLE_VERT_CENTER:
    1238             :             case SID_TABLE_VERT_BOTTOM:
    1239             :             {
    1240          18 :                 const sal_uInt16 nAlign = rSh.GetBoxAlign();
    1241           6 :                 bool bSet = (nSlot == SID_TABLE_VERT_NONE && nAlign == text::VertOrientation::NONE) ||
    1242          30 :                             (nSlot == SID_TABLE_VERT_CENTER && nAlign == text::VertOrientation::CENTER) ||
    1243          24 :                             (nSlot == SID_TABLE_VERT_BOTTOM && nAlign == text::VertOrientation::BOTTOM);
    1244          18 :                 rSet.Put(SfxBoolItem(nSlot, bSet));
    1245          18 :                 break;
    1246             :             }
    1247             : 
    1248             :             case FN_TABLE_MODE_FIX       :
    1249             :             case FN_TABLE_MODE_FIX_PROP  :
    1250             :             case FN_TABLE_MODE_VARIABLE  :
    1251             :                 {
    1252           0 :                     TblChgMode nMode = rSh.GetTblChgMode();
    1253           0 :                     bool bSet = (nSlot == FN_TABLE_MODE_FIX && nMode == TBLFIX_CHGABS) ||
    1254           0 :                             (nSlot == FN_TABLE_MODE_FIX_PROP && nMode == TBLFIX_CHGPROP) ||
    1255           0 :                             (nSlot == FN_TABLE_MODE_VARIABLE && nMode == TBLVAR_CHGABS);
    1256           0 :                     rSet.Put(SfxBoolItem(nSlot, bSet));
    1257             :                 }
    1258           0 :                 break;
    1259             : 
    1260             :             case SID_ATTR_PARA_SPLIT:
    1261           0 :                 rSet.Put( pFmt->GetKeep() );
    1262           0 :                 break;
    1263             : 
    1264             :             case SID_ATTR_PARA_KEEP:
    1265           0 :                 rSet.Put( pFmt->GetLayoutSplit() );
    1266           0 :                 break;
    1267             :             case FN_TABLE_SPLIT_TABLE:
    1268           0 :                 if ( rSh.IsInHeadline() )
    1269           0 :                     rSet.DisableItem( nSlot );
    1270           0 :                 break;
    1271             :             case FN_TABLE_MERGE_TABLE:
    1272             :             {
    1273             :                 bool bAsk;
    1274           0 :                 if( !rSh.CanMergeTable( true, &bAsk ))
    1275           0 :                     rSet.DisableItem( nSlot );
    1276           0 :                 break;
    1277             :             }
    1278             : 
    1279             :             case FN_TABLE_DELETE_ROW:
    1280             :                 {
    1281           6 :                     SwSelBoxes aBoxes;
    1282           6 :                     ::GetTblSel( rSh, aBoxes, nsSwTblSearchType::TBLSEARCH_ROW );
    1283           6 :                     if( ::HasProtectedCells( aBoxes ))
    1284           0 :                         rSet.DisableItem( nSlot );
    1285             :                 }
    1286           6 :                 break;
    1287             :             case FN_TABLE_DELETE_COL:
    1288             :                 {
    1289           6 :                     SwSelBoxes aBoxes;
    1290           6 :                     ::GetTblSel( rSh, aBoxes, nsSwTblSearchType::TBLSEARCH_COL );
    1291           6 :                     if( ::HasProtectedCells( aBoxes ))
    1292           0 :                         rSet.DisableItem( nSlot );
    1293             :                 }
    1294           6 :                 break;
    1295             : 
    1296             :             case FN_TABLE_UNSET_READ_ONLY_CELLS:
    1297             :                 // disable in readonly sections, but enable in protected cells
    1298           0 :                 if( !rSh.CanUnProtectCells() )
    1299           0 :                     rSet.DisableItem( nSlot );
    1300           0 :                 break;
    1301             :             case RES_ROW_SPLIT:
    1302             :             {
    1303           0 :                 const SwFmtLayoutSplit& rTabSplit = pFmt->GetLayoutSplit();
    1304           0 :                 if ( !rTabSplit.GetValue() )
    1305             :                 {
    1306           0 :                     rSet.DisableItem( nSlot );
    1307             :                 }
    1308             :                 else
    1309             :                 {
    1310           0 :                     SwFmtRowSplit* pSplit = 0;
    1311           0 :                     rSh.GetRowSplit(pSplit);
    1312           0 :                     if(pSplit)
    1313           0 :                         rSet.Put(*pSplit);
    1314             :                     else
    1315           0 :                         rSet.InvalidateItem( nSlot );
    1316           0 :                     delete pSplit;
    1317             :                 }
    1318           0 :                 break;
    1319             :             }
    1320             :             case FN_TABLE_HEADLINE_REPEAT:
    1321           0 :                 if(0 != rSh.GetRowsToRepeat())
    1322           0 :                     rSet.Put(SfxBoolItem(nSlot, true));
    1323           0 :                 else if(!rSh.GetRowSelectionFromTop())
    1324           0 :                     rSet.DisableItem( nSlot );
    1325             :                 else
    1326           0 :                     rSet.Put(SfxBoolItem(nSlot, false));
    1327           0 :                 break;
    1328             :             case FN_TABLE_SELECT_CELL   :
    1329           0 :                 if(rSh.HasBoxSelection())
    1330           0 :                     rSet.DisableItem( nSlot );
    1331           0 :                 break;
    1332             :         }
    1333          52 :         nSlot = aIter.NextWhich();
    1334          20 :     }
    1335             : }
    1336             : 
    1337         386 : SwTableShell::SwTableShell(SwView &_rView) :
    1338         386 :     SwBaseShell(_rView)
    1339             : {
    1340         386 :     SetName(OUString("Table"));
    1341         386 :     SetHelpId(SW_TABSHELL);
    1342         386 :     SfxShell::SetContextName(sfx2::sidebar::EnumContext::GetContextName(sfx2::sidebar::EnumContext::Context_Table));
    1343         386 : }
    1344             : 
    1345           6 : void SwTableShell::GetFrmBorderState(SfxItemSet &rSet)
    1346             : {
    1347           6 :     SfxItemSet aCoreSet( GetPool(),
    1348             :                          RES_BOX, RES_BOX,
    1349           6 :                          SID_ATTR_BORDER_INNER, SID_ATTR_BORDER_INNER, 0 );
    1350          12 :     SvxBoxInfoItem aBoxInfo( SID_ATTR_BORDER_INNER );
    1351           6 :     aCoreSet.Put( aBoxInfo );
    1352           6 :     GetShell().GetTabBorders( aCoreSet );
    1353          12 :     rSet.Put( aCoreSet );
    1354           6 : }
    1355             : 
    1356           0 : void SwTableShell::ExecTableStyle(SfxRequest& rReq)
    1357             : {
    1358           0 :     SwWrtShell &rSh = GetShell();
    1359           0 :     const SfxItemSet *pArgs = rReq.GetArgs();
    1360           0 :     if(pArgs)
    1361           0 :         switch ( rReq.GetSlot() )
    1362             :         {
    1363             :             case SID_FRAME_LINESTYLE:
    1364             :             case SID_FRAME_LINECOLOR:
    1365           0 :                 if ( rReq.GetSlot() == SID_FRAME_LINESTYLE )
    1366             :                 {
    1367             :                     const SvxLineItem &rLineItem = (const SvxLineItem&)pArgs->
    1368           0 :                                                             Get( SID_FRAME_LINESTYLE );
    1369           0 :                     const SvxBorderLine* pBorderLine = rLineItem.GetLine();
    1370           0 :                     rSh.SetTabLineStyle( 0, true, pBorderLine);
    1371             :                 }
    1372             :                 else
    1373             :                 {
    1374             :                     const SvxColorItem &rNewColorItem = (const SvxColorItem&)pArgs->
    1375           0 :                                                             Get( SID_FRAME_LINECOLOR );
    1376           0 :                     rSh.SetTabLineStyle( &rNewColorItem.GetValue() );
    1377             :                 }
    1378             : 
    1379           0 :                 rReq.Done();
    1380             : 
    1381           0 :                 break;
    1382             :         }
    1383           0 : }
    1384             : 
    1385           8 : void SwTableShell::GetLineStyleState(SfxItemSet &rSet)
    1386             : {
    1387           8 :     SfxItemSet aCoreSet( GetPool(),
    1388             :                             RES_BOX, RES_BOX,
    1389           8 :                             SID_ATTR_BORDER_INNER, SID_ATTR_BORDER_INNER, 0);
    1390          16 :     SvxBoxInfoItem aCoreInfo( SID_ATTR_BORDER_INNER );
    1391           8 :     aCoreSet.Put(aCoreInfo);
    1392           8 :     GetShell().GetTabBorders( aCoreSet );
    1393             : 
    1394           8 :     const SvxBoxItem& rBoxItem = (const SvxBoxItem&)aCoreSet.Get( RES_BOX );
    1395           8 :     const SvxBorderLine* pLine = rBoxItem.GetTop();
    1396             : 
    1397           8 :     rSet.Put( SvxColorItem( pLine ? pLine->GetColor() : Color(), SID_FRAME_LINECOLOR ) );
    1398          16 :     SvxLineItem aLine( SID_FRAME_LINESTYLE );
    1399           8 :     aLine.SetLine(pLine);
    1400          16 :     rSet.Put( aLine );
    1401           8 : }
    1402             : 
    1403           0 : void SwTableShell::ExecNumberFormat(SfxRequest& rReq)
    1404             : {
    1405           0 :     const SfxItemSet* pArgs = rReq.GetArgs();
    1406           0 :     SwWrtShell &rSh = GetShell();
    1407             : 
    1408             :     // At first the slots, which doesn't need a FrmMgr.
    1409           0 :     const SfxPoolItem* pItem = 0;
    1410           0 :     const sal_uInt16 nSlot = rReq.GetSlot();
    1411           0 :     if(pArgs)
    1412           0 :         pArgs->GetItemState(GetPool().GetWhich(nSlot), false, &pItem);
    1413             : 
    1414             :     // Always aquire the language from the current cursor position.
    1415           0 :     LanguageType eLang = rSh.GetCurLang();
    1416           0 :     SvNumberFormatter* pFormatter = rSh.GetNumberFormatter();
    1417           0 :     sal_uInt32 nNumberFormat = NUMBERFORMAT_ENTRY_NOT_FOUND;
    1418           0 :     sal_uInt16 nFmtType = 0, nOffset = 0;
    1419             : 
    1420           0 :     switch ( nSlot )
    1421             :     {
    1422             :     case FN_NUMBER_FORMAT:
    1423           0 :         if( pItem )
    1424             :         {
    1425             :             // Determine index for string.
    1426           0 :             OUString aCode( ((const SfxStringItem*)pItem)->GetValue() );
    1427           0 :             nNumberFormat = pFormatter->GetEntryKey( aCode, eLang );
    1428           0 :             if( NUMBERFORMAT_ENTRY_NOT_FOUND == nNumberFormat )
    1429             :             {
    1430             :                 // Re-enter
    1431             :                 sal_Int32 nErrPos;
    1432             :                 short nType;
    1433           0 :                 if( !pFormatter->PutEntry( aCode, nErrPos, nType,
    1434           0 :                                             nNumberFormat, eLang ))
    1435           0 :                     nNumberFormat = NUMBERFORMAT_ENTRY_NOT_FOUND;
    1436           0 :             }
    1437             :         }
    1438           0 :         break;
    1439           0 :     case FN_NUMBER_STANDARD:        nFmtType = NUMBERFORMAT_NUMBER; break;
    1440           0 :     case FN_NUMBER_SCIENTIFIC:      nFmtType = NUMBERFORMAT_SCIENTIFIC; break;
    1441           0 :     case FN_NUMBER_DATE:            nFmtType = NUMBERFORMAT_DATE; break;
    1442           0 :     case FN_NUMBER_TIME:            nFmtType = NUMBERFORMAT_TIME; break;
    1443           0 :     case FN_NUMBER_CURRENCY:        nFmtType = NUMBERFORMAT_CURRENCY; break;
    1444           0 :     case FN_NUMBER_PERCENT:         nFmtType = NUMBERFORMAT_PERCENT; break;
    1445             : 
    1446             :     case FN_NUMBER_TWODEC:          // #.##0,00
    1447           0 :         nFmtType = NUMBERFORMAT_NUMBER;
    1448           0 :         nOffset = NF_NUMBER_1000DEC2;
    1449           0 :         break;
    1450             : 
    1451             :     default:
    1452             :         OSL_FAIL("wrong dispatcher");
    1453           0 :         return;
    1454             :     }
    1455             : 
    1456           0 :     if( nFmtType )
    1457           0 :         nNumberFormat = pFormatter->GetStandardFormat( nFmtType, eLang ) + nOffset;
    1458             : 
    1459           0 :     if( NUMBERFORMAT_ENTRY_NOT_FOUND != nNumberFormat )
    1460             :     {
    1461           0 :         SfxItemSet aBoxSet( GetPool(), RES_BOXATR_FORMAT, RES_BOXATR_FORMAT );
    1462           0 :         aBoxSet.Put( SwTblBoxNumFormat( nNumberFormat ));
    1463           0 :         rSh.SetTblBoxFormulaAttrs( aBoxSet );
    1464             :     }
    1465             : 
    1466         270 : }
    1467             : 
    1468             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10