LCOV - code coverage report
Current view: top level - sc/source/ui/optdlg - tpview.cxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 0 381 0.0 %
Date: 2014-11-03 Functions: 0 29 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             : #undef SC_DLLIMPLEMENTATION
      21             : 
      22             : #include "scitems.hxx"
      23             : #include "tpview.hxx"
      24             : #include "global.hxx"
      25             : #include "viewopti.hxx"
      26             : #include "tabvwsh.hxx"
      27             : #include "uiitems.hxx"
      28             : #include "scresid.hxx"
      29             : #include "docsh.hxx"
      30             : #include "sc.hrc"
      31             : #include "globstr.hrc"
      32             : #include <appoptio.hxx>
      33             : #include <scmod.hxx>
      34             : #include <svx/dlgutil.hxx>
      35             : #include <svx/drawitem.hxx>
      36             : #include <svx/xtable.hxx>
      37             : 
      38             : // STATIC DATA -----------------------------------------------------------
      39             : 
      40           0 : ScTpContentOptions::ScTpContentOptions( vcl::Window*         pParent,
      41             :                              const SfxItemSet&  rArgSet ) :
      42             :     SfxTabPage(pParent, "TpViewPage", "modules/scalc/ui/tpviewpage.ui", &rArgSet),
      43           0 :     pLocalOptions(0)
      44             : {
      45           0 :     get(pGridLB,"grid");
      46           0 :     get(pColorFT,"color_label");
      47           0 :     get(pColorLB,"color");
      48           0 :     get(pBreakCB,"break");
      49           0 :     get(pGuideLineCB,"guideline");
      50             : 
      51           0 :     get(pFormulaCB,"formula");
      52           0 :     get(pNilCB,"nil");
      53           0 :     get(pAnnotCB,"annot");
      54           0 :     get(pValueCB,"value");
      55           0 :     get(pAnchorCB,"anchor");
      56           0 :     get(pClipMarkCB,"clipmark");
      57           0 :     get(pRangeFindCB,"rangefind");
      58             : 
      59           0 :     get(pObjGrfLB,"objgrf");
      60           0 :     get(pDiagramLB,"diagram");
      61           0 :     get(pDrawLB,"draw");
      62             : 
      63           0 :     get(pSyncZoomCB,"synczoom");
      64             : 
      65           0 :     get(pRowColHeaderCB,"rowcolheader");
      66           0 :     get(pHScrollCB,"hscroll");
      67           0 :     get(pVScrollCB,"vscroll");
      68           0 :     get(pTblRegCB,"tblreg");
      69           0 :     get(pOutlineCB,"outline");
      70             : 
      71           0 :     SetExchangeSupport();
      72           0 :     Link aSelObjHdl(LINK( this, ScTpContentOptions, SelLbObjHdl ) );
      73           0 :     pObjGrfLB->  SetSelectHdl(aSelObjHdl);
      74           0 :     pDiagramLB-> SetSelectHdl(aSelObjHdl);
      75           0 :     pDrawLB->    SetSelectHdl(aSelObjHdl);
      76           0 :     pGridLB->    SetSelectHdl( LINK( this, ScTpContentOptions, GridHdl ) );
      77             : 
      78           0 :     Link aCBHdl(LINK( this, ScTpContentOptions, CBHdl ) );
      79           0 :     pFormulaCB  ->SetClickHdl(aCBHdl);
      80           0 :     pNilCB      ->SetClickHdl(aCBHdl);
      81           0 :     pAnnotCB    ->SetClickHdl(aCBHdl);
      82           0 :     pValueCB    ->SetClickHdl(aCBHdl);
      83           0 :     pAnchorCB   ->SetClickHdl(aCBHdl);
      84           0 :     pClipMarkCB ->SetClickHdl(aCBHdl);
      85             : 
      86           0 :     pVScrollCB  ->SetClickHdl(aCBHdl);
      87           0 :     pHScrollCB  ->SetClickHdl(aCBHdl);
      88           0 :     pTblRegCB   ->SetClickHdl(aCBHdl);
      89           0 :     pOutlineCB  ->SetClickHdl(aCBHdl);
      90           0 :     pBreakCB    ->SetClickHdl(aCBHdl);
      91           0 :     pGuideLineCB->SetClickHdl(aCBHdl);
      92           0 :     pRowColHeaderCB->SetClickHdl(aCBHdl);
      93             : 
      94           0 : }
      95             : 
      96           0 : ScTpContentOptions::~ScTpContentOptions()
      97             : {
      98           0 :     delete pLocalOptions;
      99           0 : }
     100             : 
     101           0 : SfxTabPage* ScTpContentOptions::Create( vcl::Window*     pParent,
     102             :                               const SfxItemSet*     rCoreSet )
     103             : {
     104           0 :     return new ScTpContentOptions(pParent, *rCoreSet);
     105             : }
     106             : 
     107           0 : bool    ScTpContentOptions::FillItemSet( SfxItemSet* rCoreSet )
     108             : {
     109           0 :     bool bRet = false;
     110           0 :     if( pFormulaCB ->IsValueChangedFromSaved() ||
     111           0 :         pNilCB     ->IsValueChangedFromSaved() ||
     112           0 :         pAnnotCB   ->IsValueChangedFromSaved() ||
     113           0 :         pValueCB   ->IsValueChangedFromSaved() ||
     114           0 :         pAnchorCB  ->IsValueChangedFromSaved() ||
     115           0 :         pClipMarkCB->IsValueChangedFromSaved() ||
     116           0 :         pObjGrfLB  ->IsValueChangedFromSaved() ||
     117           0 :         pDiagramLB ->IsValueChangedFromSaved() ||
     118           0 :         pDrawLB    ->IsValueChangedFromSaved() ||
     119           0 :         pGridLB        ->IsValueChangedFromSaved() ||
     120           0 :         pRowColHeaderCB->IsValueChangedFromSaved() ||
     121           0 :         pHScrollCB     ->IsValueChangedFromSaved() ||
     122           0 :         pVScrollCB     ->IsValueChangedFromSaved() ||
     123           0 :         pTblRegCB      ->IsValueChangedFromSaved() ||
     124           0 :         pOutlineCB     ->IsValueChangedFromSaved() ||
     125           0 :         pColorLB       ->IsValueChangedFromSaved() ||
     126           0 :         pBreakCB       ->IsValueChangedFromSaved() ||
     127           0 :         pGuideLineCB   ->IsValueChangedFromSaved())
     128             :     {
     129           0 :         pLocalOptions->SetGridColor( pColorLB->GetSelectEntryColor(),
     130           0 :                                      pColorLB->GetSelectEntry() );
     131           0 :         rCoreSet->Put(ScTpViewItem(SID_SCVIEWOPTIONS, *pLocalOptions));
     132           0 :         bRet = true;
     133             :     }
     134           0 :     if(pRangeFindCB->IsValueChangedFromSaved())
     135             :     {
     136           0 :         rCoreSet->Put(SfxBoolItem(SID_SC_INPUT_RANGEFINDER, pRangeFindCB->IsChecked()));
     137           0 :         bRet = true;
     138             :     }
     139           0 :     if(pSyncZoomCB->IsValueChangedFromSaved())
     140             :     {
     141           0 :         rCoreSet->Put(SfxBoolItem(SID_SC_OPT_SYNCZOOM, pSyncZoomCB->IsChecked()));
     142           0 :         bRet = true;
     143             :     }
     144             : 
     145           0 :     return bRet;
     146             : }
     147             : 
     148           0 : void    ScTpContentOptions::Reset( const SfxItemSet* rCoreSet )
     149             : {
     150             :     const SfxPoolItem* pItem;
     151           0 :     if(SfxItemState::SET == rCoreSet->GetItemState(SID_SCVIEWOPTIONS, false , &pItem))
     152             :         pLocalOptions  = new ScViewOptions(
     153           0 :                             static_cast<const ScTpViewItem*>(pItem)->GetViewOptions() );
     154             :     else
     155           0 :         pLocalOptions = new ScViewOptions;
     156           0 :     pFormulaCB ->Check(pLocalOptions->GetOption(VOPT_FORMULAS));
     157           0 :     pNilCB     ->Check(pLocalOptions->GetOption(VOPT_NULLVALS));
     158           0 :     pAnnotCB   ->Check(pLocalOptions->GetOption(VOPT_NOTES));
     159           0 :     pValueCB   ->Check(pLocalOptions->GetOption(VOPT_SYNTAX));
     160           0 :     pAnchorCB  ->Check(pLocalOptions->GetOption(VOPT_ANCHOR));
     161           0 :     pClipMarkCB->Check(pLocalOptions->GetOption(VOPT_CLIPMARKS));
     162             : 
     163           0 :     pObjGrfLB  ->SelectEntryPos( (sal_uInt16)pLocalOptions->GetObjMode(VOBJ_TYPE_OLE) );
     164           0 :     pDiagramLB ->SelectEntryPos( (sal_uInt16)pLocalOptions->GetObjMode(VOBJ_TYPE_CHART) );
     165           0 :     pDrawLB    ->SelectEntryPos( (sal_uInt16)pLocalOptions->GetObjMode(VOBJ_TYPE_DRAW) );
     166             : 
     167           0 :     pRowColHeaderCB->Check( pLocalOptions->GetOption(VOPT_HEADER) );
     168           0 :     pHScrollCB->Check( pLocalOptions->GetOption(VOPT_HSCROLL) );
     169           0 :     pVScrollCB->Check( pLocalOptions->GetOption(VOPT_VSCROLL) );
     170           0 :     pTblRegCB ->Check( pLocalOptions->GetOption(VOPT_TABCONTROLS) );
     171           0 :     pOutlineCB->Check( pLocalOptions->GetOption(VOPT_OUTLINER) );
     172             : 
     173           0 :     InitGridOpt();
     174             : 
     175           0 :     pBreakCB->Check( pLocalOptions->GetOption(VOPT_PAGEBREAKS) );
     176           0 :     pGuideLineCB->Check( pLocalOptions->GetOption(VOPT_HELPLINES) );
     177             : 
     178           0 :     if(SfxItemState::SET == rCoreSet->GetItemState(SID_SC_INPUT_RANGEFINDER, false, &pItem))
     179           0 :         pRangeFindCB->Check(static_cast<const SfxBoolItem*>(pItem)->GetValue());
     180           0 :     if(SfxItemState::SET == rCoreSet->GetItemState(SID_SC_OPT_SYNCZOOM, false, &pItem))
     181           0 :         pSyncZoomCB->Check(static_cast<const SfxBoolItem*>(pItem)->GetValue());
     182             : 
     183           0 :     pRangeFindCB->SaveValue();
     184           0 :     pSyncZoomCB->SaveValue();
     185             : 
     186           0 :     pFormulaCB->SaveValue();
     187           0 :     pNilCB->SaveValue();
     188           0 :     pAnnotCB->SaveValue();
     189           0 :     pValueCB->SaveValue();
     190           0 :     pAnchorCB->SaveValue();
     191           0 :     pClipMarkCB->SaveValue();
     192           0 :     pObjGrfLB->SaveValue();
     193           0 :     pDiagramLB->SaveValue();
     194           0 :     pDrawLB->SaveValue();
     195           0 :     pRowColHeaderCB->SaveValue();
     196           0 :     pHScrollCB->SaveValue();
     197           0 :     pVScrollCB->SaveValue();
     198           0 :     pTblRegCB->SaveValue();
     199           0 :     pOutlineCB->SaveValue();
     200           0 :     pGridLB->SaveValue();
     201           0 :     pColorLB->SaveValue();
     202           0 :     pBreakCB->SaveValue();
     203           0 :     pGuideLineCB->SaveValue();
     204           0 : }
     205             : 
     206           0 : void ScTpContentOptions::ActivatePage( const SfxItemSet& rSet)
     207             : {
     208             :     const SfxPoolItem* pItem;
     209           0 :     if(SfxItemState::SET == rSet.GetItemState(SID_SCVIEWOPTIONS, false , &pItem))
     210           0 :         *pLocalOptions = static_cast<const ScTpViewItem*>(pItem)->GetViewOptions();
     211           0 : }
     212             : 
     213           0 : int ScTpContentOptions::DeactivatePage( SfxItemSet* pSetP )
     214             : {
     215           0 :     if(pSetP)
     216           0 :         FillItemSet(pSetP);
     217           0 :     return SfxTabPage::LEAVE_PAGE;
     218             : }
     219             : 
     220           0 : IMPL_LINK( ScTpContentOptions, SelLbObjHdl, ListBox*, pLb )
     221             : {
     222           0 :     sal_uInt16      nSelPos = pLb->GetSelectEntryPos();
     223           0 :     ScVObjMode  eMode   = ScVObjMode(nSelPos);
     224           0 :     ScVObjType  eType   = VOBJ_TYPE_OLE;
     225             : 
     226           0 :     if ( pLb == pDiagramLB )
     227           0 :         eType = VOBJ_TYPE_CHART;
     228           0 :     else if ( pLb == pDrawLB )
     229           0 :         eType = VOBJ_TYPE_DRAW;
     230             : 
     231           0 :     pLocalOptions->SetObjMode( eType, eMode );
     232             : 
     233           0 :     return 0;
     234             : }
     235             : 
     236           0 : IMPL_LINK( ScTpContentOptions, CBHdl, CheckBox*, pBtn )
     237             : {
     238           0 :     ScViewOption eOption = VOPT_FORMULAS;
     239           0 :     bool         bChecked = pBtn->IsChecked();
     240             : 
     241           0 :     if (      pFormulaCB   == pBtn )   eOption = VOPT_FORMULAS;
     242           0 :     else if ( pNilCB       == pBtn )   eOption = VOPT_NULLVALS;
     243           0 :     else if ( pAnnotCB     == pBtn )   eOption = VOPT_NOTES;
     244           0 :     else if ( pValueCB     == pBtn )   eOption = VOPT_SYNTAX;
     245           0 :     else if ( pAnchorCB    == pBtn )   eOption = VOPT_ANCHOR;
     246           0 :     else if ( pClipMarkCB  == pBtn )   eOption = VOPT_CLIPMARKS;
     247           0 :     else if ( pVScrollCB       == pBtn )   eOption = VOPT_VSCROLL;
     248           0 :     else if ( pHScrollCB       == pBtn )   eOption = VOPT_HSCROLL;
     249           0 :     else if ( pTblRegCB        == pBtn )   eOption = VOPT_TABCONTROLS;
     250           0 :     else if ( pOutlineCB       == pBtn )   eOption = VOPT_OUTLINER;
     251           0 :     else if ( pBreakCB         == pBtn )   eOption = VOPT_PAGEBREAKS;
     252           0 :     else if ( pGuideLineCB     == pBtn )   eOption = VOPT_HELPLINES;
     253           0 :     else if ( pRowColHeaderCB  == pBtn )   eOption = VOPT_HEADER;
     254             : 
     255           0 :     pLocalOptions->SetOption( eOption, bChecked );
     256             : 
     257           0 :     return 0;
     258             : }
     259             : 
     260           0 : void ScTpContentOptions::InitGridOpt()
     261             : {
     262           0 :     bool    bGrid = pLocalOptions->GetOption( VOPT_GRID );
     263           0 :     bool    bGridOnTop = pLocalOptions->GetOption( VOPT_GRID_ONTOP );
     264           0 :     sal_Int32   nSelPos = 0;
     265             : 
     266           0 :     if ( bGrid || bGridOnTop )
     267             :     {
     268           0 :         pColorFT->Enable(), pColorLB->Enable();
     269           0 :         if ( !bGridOnTop )
     270           0 :             nSelPos = 0;
     271             :         else
     272           0 :             nSelPos = 1;
     273             :     }
     274             :     else
     275             :     {
     276           0 :         pColorFT->Disable(), pColorLB->Disable();
     277           0 :         nSelPos = 2;
     278             :     }
     279             : 
     280           0 :     pGridLB->SelectEntryPos (nSelPos);
     281             : 
     282           0 :     if ( pColorLB->GetEntryCount() == 0 )
     283             :     {
     284           0 :         SfxObjectShell* pDocSh = SfxObjectShell::Current();
     285             :         // there might be another DocShell here
     286           0 :         pDocSh = PTR_CAST(ScDocShell, pDocSh);
     287             : 
     288           0 :         XColorListRef pColorList;
     289           0 :         if ( pDocSh  )
     290             :         {
     291           0 :             const SfxPoolItem* pItem = pDocSh->GetItem( SID_COLOR_TABLE );
     292           0 :             if ( pItem )
     293           0 :                 pColorList = static_cast<const SvxColorListItem*>(pItem)->GetColorList();
     294             :         }
     295             :         else
     296           0 :             pColorList = XColorList::GetStdColorList();
     297             : 
     298           0 :         if ( !pColorList.is() )
     299           0 :             return;
     300             : 
     301           0 :         pColorLB->SetUpdateMode( false );
     302             : 
     303             :         // items from ColorTable
     304             : 
     305           0 :         long nCount = pColorList->Count();
     306           0 :         for ( long n=0; n<nCount; n++ )
     307             :         {
     308           0 :             XColorEntry* pEntry = pColorList->GetColor(n);
     309           0 :             pColorLB->InsertEntry( pEntry->GetColor(), pEntry->GetName() );
     310             :         }
     311             : 
     312             :         // default GridColor
     313             : 
     314           0 :         Color aStdCol( SC_STD_GRIDCOLOR );          // same default as in ScViewOptions
     315           0 :         if ( LISTBOX_ENTRY_NOTFOUND ==
     316           0 :                 pColorLB->GetEntryPos( aStdCol ) )
     317           0 :             pColorLB->InsertEntry( aStdCol, ScGlobal::GetRscString( STR_GRIDCOLOR ) );
     318             : 
     319           0 :         pColorLB->SetUpdateMode( true );
     320             : 
     321           0 :         Invalidate();
     322             :     }
     323             : 
     324             :     //  also select grid color entry on subsequent calls
     325             : 
     326           0 :     OUString  aName;
     327           0 :     Color     aCol    = pLocalOptions->GetGridColor( &aName );
     328           0 :     nSelPos = pColorLB->GetEntryPos( aCol );
     329             : 
     330           0 :     if ( LISTBOX_ENTRY_NOTFOUND != nSelPos )
     331           0 :         pColorLB->SelectEntryPos( nSelPos );
     332             :     else
     333           0 :         pColorLB->SelectEntryPos( pColorLB->InsertEntry( aCol, aName ) );
     334             : }
     335             : 
     336           0 : IMPL_LINK( ScTpContentOptions, GridHdl, ListBox*, pLb )
     337             : {
     338           0 :     sal_Int32   nSelPos = pLb->GetSelectEntryPos();
     339           0 :     bool    bGrid = ( nSelPos <= 1 );
     340           0 :     bool    bGridOnTop = ( nSelPos == 1 );
     341             : 
     342           0 :     pColorFT->Enable(bGrid);
     343           0 :     pColorLB->Enable(bGrid);
     344           0 :     pLocalOptions->SetOption( VOPT_GRID, bGrid );
     345           0 :     pLocalOptions->SetOption( VOPT_GRID_ONTOP, bGridOnTop );
     346           0 :     return 0;
     347             : }
     348             : 
     349           0 : ScTpLayoutOptions::ScTpLayoutOptions(   vcl::Window* pParent,
     350             :                                         const SfxItemSet&   rArgSet ) :
     351             :     SfxTabPage( pParent, "ScGeneralPage",
     352             :                 "modules/scalc/ui/scgeneralpage.ui", &rArgSet),
     353             :     aUnitArr(               ScResId(SCSTR_UNIT           )),
     354           0 :     pDoc(NULL)
     355             : {
     356           0 :     get( m_pUnitLB, "unitlb");
     357           0 :     get( m_pTabMF, "tabmf");
     358             : 
     359           0 :     get( m_pAlwaysRB, "alwaysrb");
     360           0 :     get( m_pRequestRB, "requestrb");
     361           0 :     get( m_pNeverRB, "neverrb");
     362             : 
     363           0 :     get( m_pAlignCB, "aligncb");
     364           0 :     get( m_pAlignLB, "alignlb");
     365           0 :     get( m_pEditModeCB, "editmodecb");
     366           0 :     get( m_pFormatCB, "formatcb");
     367           0 :     get( m_pExpRefCB, "exprefcb");
     368           0 :     get( m_pSortRefUpdateCB, "sortrefupdatecb");
     369           0 :     get( m_pMarkHdrCB, "markhdrcb");
     370           0 :     get( m_pTextFmtCB, "textfmtcb");
     371           0 :     get( m_pReplWarnCB, "replwarncb");
     372           0 :     get( m_pLegacyCellSelectionCB, "legacy_cell_selection_cb");
     373             : 
     374           0 :     SetExchangeSupport();
     375             : 
     376           0 :     m_pUnitLB->SetSelectHdl( LINK( this, ScTpLayoutOptions, MetricHdl ) );
     377             : 
     378           0 :     m_pAlignCB->SetClickHdl(LINK(this, ScTpLayoutOptions, AlignHdl));
     379             : 
     380           0 :     for ( sal_uInt16 i = 0; i < aUnitArr.Count(); ++i )
     381             :     {
     382           0 :         OUString sMetric = aUnitArr.GetStringByPos( i );
     383           0 :         FieldUnit eFUnit = (FieldUnit)aUnitArr.GetValue( i );
     384             : 
     385           0 :         switch ( eFUnit )
     386             :         {
     387             :             case FUNIT_MM:
     388             :             case FUNIT_CM:
     389             :             case FUNIT_POINT:
     390             :             case FUNIT_PICA:
     391             :             case FUNIT_INCH:
     392             :             {
     393             :                 // nur diese Metriken benutzen
     394           0 :                 sal_Int32 nPos = m_pUnitLB->InsertEntry( sMetric );
     395           0 :                 m_pUnitLB->SetEntryData( nPos, reinterpret_cast<void*>((sal_IntPtr)eFUnit) );
     396             :             }
     397           0 :             break;
     398             :             default:
     399             :             {
     400             :                 // added to avoid warnings
     401             :             }
     402             :         }
     403           0 :     }
     404             : 
     405           0 : }
     406             : 
     407           0 : ScTpLayoutOptions::~ScTpLayoutOptions()
     408             : {
     409           0 : }
     410             : 
     411           0 : SfxTabPage* ScTpLayoutOptions::Create( vcl::Window*          pParent,
     412             :                                     const SfxItemSet*   rCoreSet )
     413             : {
     414           0 :     ScTpLayoutOptions* pNew = new ScTpLayoutOptions(pParent, *rCoreSet);
     415           0 :     ScDocShell* pDocSh = PTR_CAST(ScDocShell,SfxObjectShell::Current());
     416             : 
     417           0 :     if(pDocSh!=NULL)
     418           0 :         pNew->SetDocument(&pDocSh->GetDocument());
     419           0 :     return pNew;
     420             : }
     421             : 
     422           0 : bool    ScTpLayoutOptions::FillItemSet( SfxItemSet* rCoreSet )
     423             : {
     424           0 :     bool bRet = true;
     425           0 :     const sal_Int32 nMPos = m_pUnitLB->GetSelectEntryPos();
     426           0 :     if ( m_pUnitLB->IsValueChangedFromSaved() )
     427             :     {
     428           0 :         sal_uInt16 nFieldUnit = (sal_uInt16)reinterpret_cast<sal_IntPtr>(m_pUnitLB->GetEntryData( nMPos ));
     429             :         rCoreSet->Put( SfxUInt16Item( SID_ATTR_METRIC,
     430           0 :                                      (sal_uInt16)nFieldUnit ) );
     431           0 :         bRet = true;
     432             :     }
     433             : 
     434           0 :     if(m_pTabMF->IsValueChangedFromSaved())
     435             :     {
     436             :         rCoreSet->Put(SfxUInt16Item(SID_ATTR_DEFTABSTOP,
     437           0 :                     sal::static_int_cast<sal_uInt16>( m_pTabMF->Denormalize(m_pTabMF->GetValue(FUNIT_TWIP)) )));
     438           0 :         bRet = true;
     439             :     }
     440             : 
     441           0 :     ScLkUpdMode nSet=LM_ALWAYS;
     442             : 
     443           0 :     if(m_pRequestRB->IsChecked())
     444             :     {
     445           0 :         nSet=LM_ON_DEMAND;
     446             :     }
     447           0 :     else if(m_pNeverRB->IsChecked())
     448             :     {
     449           0 :         nSet=LM_NEVER;
     450             :     }
     451             : 
     452           0 :     if(m_pRequestRB->IsValueChangedFromSaved() ||
     453           0 :        m_pNeverRB->IsValueChangedFromSaved() )
     454             :     {
     455           0 :         if(pDoc)
     456           0 :             pDoc->SetLinkMode(nSet);
     457           0 :         ScAppOptions aAppOptions=SC_MOD()->GetAppOptions();
     458           0 :         aAppOptions.SetLinkMode(nSet );
     459           0 :         SC_MOD()->SetAppOptions(aAppOptions);
     460           0 :         bRet = true;
     461             :     }
     462           0 :     if(m_pAlignCB->IsValueChangedFromSaved())
     463             :     {
     464           0 :         rCoreSet->Put(SfxBoolItem(SID_SC_INPUT_SELECTION, m_pAlignCB->IsChecked()));
     465           0 :         bRet = true;
     466             :     }
     467             : 
     468           0 :     if(m_pAlignLB->IsValueChangedFromSaved())
     469             :     {
     470           0 :         rCoreSet->Put(SfxUInt16Item(SID_SC_INPUT_SELECTIONPOS, m_pAlignLB->GetSelectEntryPos()));
     471           0 :         bRet = true;
     472             :     }
     473             : 
     474           0 :     if(m_pEditModeCB->IsValueChangedFromSaved())
     475             :     {
     476           0 :         rCoreSet->Put(SfxBoolItem(SID_SC_INPUT_EDITMODE, m_pEditModeCB->IsChecked()));
     477           0 :         bRet = true;
     478             :     }
     479             : 
     480           0 :     if(m_pFormatCB->IsValueChangedFromSaved())
     481             :     {
     482           0 :         rCoreSet->Put(SfxBoolItem(SID_SC_INPUT_FMT_EXPAND, m_pFormatCB->IsChecked()));
     483           0 :         bRet = true;
     484             :     }
     485             : 
     486           0 :     if(m_pExpRefCB->IsValueChangedFromSaved())
     487             :     {
     488           0 :         rCoreSet->Put(SfxBoolItem(SID_SC_INPUT_REF_EXPAND, m_pExpRefCB->IsChecked()));
     489           0 :         bRet = true;
     490             :     }
     491             : 
     492           0 :     if (m_pSortRefUpdateCB->IsValueChangedFromSaved())
     493             :     {
     494           0 :         rCoreSet->Put(SfxBoolItem(SID_SC_OPT_SORT_REF_UPDATE, m_pSortRefUpdateCB->IsChecked()));
     495           0 :         bRet = true;
     496             :     }
     497             : 
     498           0 :     if(m_pMarkHdrCB->IsValueChangedFromSaved())
     499             :     {
     500           0 :         rCoreSet->Put(SfxBoolItem(SID_SC_INPUT_MARK_HEADER, m_pMarkHdrCB->IsChecked()));
     501           0 :         bRet = true;
     502             :     }
     503             : 
     504           0 :     if(m_pTextFmtCB->IsValueChangedFromSaved())
     505             :     {
     506           0 :         rCoreSet->Put(SfxBoolItem(SID_SC_INPUT_TEXTWYSIWYG, m_pTextFmtCB->IsChecked()));
     507           0 :         bRet = true;
     508             :     }
     509             : 
     510           0 :     if( m_pReplWarnCB->IsValueChangedFromSaved() )
     511             :     {
     512           0 :         rCoreSet->Put( SfxBoolItem( SID_SC_INPUT_REPLCELLSWARN, m_pReplWarnCB->IsChecked() ) );
     513           0 :         bRet = true;
     514             :     }
     515             : 
     516           0 :     if( m_pLegacyCellSelectionCB->IsValueChangedFromSaved() )
     517             :     {
     518           0 :         rCoreSet->Put( SfxBoolItem( SID_SC_INPUT_LEGACY_CELL_SELECTION, m_pLegacyCellSelectionCB->IsChecked() ) );
     519           0 :         bRet = true;
     520             :     }
     521             : 
     522           0 :     return bRet;
     523             : }
     524             : 
     525           0 : void    ScTpLayoutOptions::Reset( const SfxItemSet* rCoreSet )
     526             : {
     527           0 :     m_pUnitLB->SetNoSelection();
     528           0 :     if ( rCoreSet->GetItemState( SID_ATTR_METRIC ) >= SfxItemState::DEFAULT )
     529             :     {
     530           0 :         const SfxUInt16Item& rItem = static_cast<const SfxUInt16Item&>(rCoreSet->Get( SID_ATTR_METRIC ));
     531           0 :         FieldUnit eFieldUnit = (FieldUnit)rItem.GetValue();
     532             : 
     533           0 :         for ( sal_Int32 i = 0; i < m_pUnitLB->GetEntryCount(); ++i )
     534             :         {
     535           0 :             if ( (FieldUnit)reinterpret_cast<sal_IntPtr>(m_pUnitLB->GetEntryData( i )) == eFieldUnit )
     536             :             {
     537           0 :                 m_pUnitLB->SelectEntryPos( i );
     538           0 :                 break;
     539             :             }
     540             :         }
     541           0 :         ::SetFieldUnit(*m_pTabMF, eFieldUnit);
     542             :     }
     543           0 :     m_pUnitLB->SaveValue();
     544             : 
     545             :     const SfxPoolItem* pItem;
     546           0 :     if(SfxItemState::SET == rCoreSet->GetItemState(SID_ATTR_DEFTABSTOP, false, &pItem))
     547           0 :         m_pTabMF->SetValue(m_pTabMF->Normalize(static_cast<const SfxUInt16Item*>(pItem)->GetValue()), FUNIT_TWIP);
     548           0 :     m_pTabMF->SaveValue();
     549             : 
     550           0 :     m_pUnitLB       ->SaveValue();
     551           0 :     m_pTabMF        ->SaveValue();
     552             : 
     553           0 :     ScLkUpdMode nSet=LM_UNKNOWN;
     554             : 
     555           0 :     if(pDoc!=NULL)
     556             :     {
     557           0 :         nSet=pDoc->GetLinkMode();
     558             :     }
     559             : 
     560           0 :     if(nSet==LM_UNKNOWN)
     561             :     {
     562           0 :         ScAppOptions aAppOptions=SC_MOD()->GetAppOptions();
     563           0 :         nSet=aAppOptions.GetLinkMode();
     564             :     }
     565             : 
     566           0 :     switch(nSet)
     567             :     {
     568           0 :         case LM_ALWAYS:     m_pAlwaysRB->  Check();    break;
     569           0 :         case LM_NEVER:      m_pNeverRB->   Check();    break;
     570           0 :         case LM_ON_DEMAND:  m_pRequestRB-> Check();    break;
     571             :         default:
     572             :         {
     573             :             // added to avoid warnings
     574             :         }
     575             :     }
     576           0 :     if(SfxItemState::SET == rCoreSet->GetItemState(SID_SC_INPUT_SELECTION, false, &pItem))
     577           0 :         m_pAlignCB->Check(static_cast<const SfxBoolItem*>(pItem)->GetValue());
     578             : 
     579           0 :     if(SfxItemState::SET == rCoreSet->GetItemState(SID_SC_INPUT_SELECTIONPOS, false, &pItem))
     580           0 :         m_pAlignLB->SelectEntryPos(static_cast<const SfxUInt16Item*>(pItem)->GetValue());
     581             : 
     582           0 :     if(SfxItemState::SET == rCoreSet->GetItemState(SID_SC_INPUT_EDITMODE, false, &pItem))
     583           0 :         m_pEditModeCB->Check(static_cast<const SfxBoolItem*>(pItem)->GetValue());
     584             : 
     585           0 :     if(SfxItemState::SET == rCoreSet->GetItemState(SID_SC_INPUT_FMT_EXPAND, false, &pItem))
     586           0 :         m_pFormatCB->Check(static_cast<const SfxBoolItem*>(pItem)->GetValue());
     587             : 
     588           0 :     if(SfxItemState::SET == rCoreSet->GetItemState(SID_SC_INPUT_REF_EXPAND, false, &pItem))
     589           0 :         m_pExpRefCB->Check(static_cast<const SfxBoolItem*>(pItem)->GetValue());
     590             : 
     591           0 :     if (rCoreSet->HasItem(SID_SC_OPT_SORT_REF_UPDATE, &pItem))
     592           0 :         m_pSortRefUpdateCB->Check(static_cast<const SfxBoolItem*>(pItem)->GetValue());
     593             : 
     594           0 :     if(SfxItemState::SET == rCoreSet->GetItemState(SID_SC_INPUT_MARK_HEADER, false, &pItem))
     595           0 :         m_pMarkHdrCB->Check(static_cast<const SfxBoolItem*>(pItem)->GetValue());
     596             : 
     597           0 :     if(SfxItemState::SET == rCoreSet->GetItemState(SID_SC_INPUT_TEXTWYSIWYG, false, &pItem))
     598           0 :         m_pTextFmtCB->Check(static_cast<const SfxBoolItem*>(pItem)->GetValue());
     599             : 
     600           0 :     if( SfxItemState::SET == rCoreSet->GetItemState( SID_SC_INPUT_REPLCELLSWARN, false, &pItem ) )
     601           0 :         m_pReplWarnCB->Check( static_cast<const SfxBoolItem*>(pItem)->GetValue() );
     602             : 
     603           0 :     if( SfxItemState::SET == rCoreSet->GetItemState( SID_SC_INPUT_LEGACY_CELL_SELECTION, false, &pItem ) )
     604           0 :         m_pLegacyCellSelectionCB->Check( static_cast<const SfxBoolItem*>(pItem)->GetValue() );
     605             : 
     606           0 :     m_pAlignCB    ->SaveValue();
     607           0 :     m_pAlignLB    ->SaveValue();
     608           0 :     m_pEditModeCB ->SaveValue();
     609           0 :     m_pFormatCB   ->SaveValue();
     610             : 
     611           0 :     m_pExpRefCB   ->SaveValue();
     612           0 :     m_pSortRefUpdateCB->SaveValue();
     613           0 :     m_pMarkHdrCB  ->SaveValue();
     614           0 :     m_pTextFmtCB  ->SaveValue();
     615           0 :     m_pReplWarnCB ->SaveValue();
     616             : 
     617           0 :     m_pLegacyCellSelectionCB->SaveValue();
     618             : 
     619           0 :     AlignHdl(m_pAlignCB);
     620             : 
     621           0 :     m_pAlwaysRB->SaveValue();
     622           0 :     m_pNeverRB->SaveValue();
     623           0 :     m_pRequestRB->SaveValue();
     624           0 : }
     625             : 
     626           0 : void    ScTpLayoutOptions::ActivatePage( const SfxItemSet& /* rCoreSet */ )
     627             : {
     628           0 : }
     629             : 
     630           0 : int ScTpLayoutOptions::DeactivatePage( SfxItemSet* pSetP )
     631             : {
     632           0 :     if(pSetP)
     633           0 :         FillItemSet(pSetP);
     634           0 :     return SfxTabPage::LEAVE_PAGE;
     635             : }
     636             : 
     637           0 : IMPL_LINK_NOARG(ScTpLayoutOptions, MetricHdl)
     638             : {
     639           0 :     const sal_Int32 nMPos = m_pUnitLB->GetSelectEntryPos();
     640           0 :     if(nMPos != LISTBOX_ENTRY_NOTFOUND)
     641             :     {
     642           0 :         FieldUnit eFieldUnit = (FieldUnit)reinterpret_cast<sal_IntPtr>(m_pUnitLB->GetEntryData( nMPos ));
     643             :         sal_Int64 nVal =
     644           0 :             m_pTabMF->Denormalize( m_pTabMF->GetValue( FUNIT_TWIP ) );
     645           0 :         ::SetFieldUnit( *m_pTabMF, eFieldUnit );
     646           0 :         m_pTabMF->SetValue( m_pTabMF->Normalize( nVal ), FUNIT_TWIP );
     647             :     }
     648             : 
     649           0 :     return 0;
     650             : }
     651             : 
     652           0 : IMPL_LINK( ScTpLayoutOptions, AlignHdl, CheckBox*, pBox )
     653             : {
     654           0 :     m_pAlignLB->Enable(pBox->IsChecked());
     655           0 :     return 0;
     656           0 : }
     657             : 
     658             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10