LCOV - code coverage report
Current view: top level - sc/source/ui/dbgui - tpsubt.cxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 0 305 0.0 %
Date: 2014-11-03 Functions: 0 44 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 "uiitems.hxx"
      24             : #include "global.hxx"
      25             : #include "userlist.hxx"
      26             : #include "viewdata.hxx"
      27             : #include "document.hxx"
      28             : #include "scresid.hxx"
      29             : #include "sc.hrc"
      30             : 
      31             : #include "subtdlg.hxx"
      32             : #include "tpsubt.hxx"
      33             : #include <boost/scoped_array.hpp>
      34             : 
      35             : // Subtotals group tabpage:
      36             : 
      37           0 : ScTpSubTotalGroup::ScTpSubTotalGroup( vcl::Window* pParent,
      38             :                                       const SfxItemSet& rArgSet )
      39             :         :   SfxTabPage      ( pParent,
      40             :                               "SubTotalGrpPage", "modules/scalc/ui/subtotalgrppage.ui",
      41             :                               &rArgSet ),
      42             :             aStrNone        ( SC_RESSTR( SCSTR_NONE ) ),
      43             :             aStrColumn      ( SC_RESSTR( SCSTR_COLUMN ) ),
      44             :             pViewData       ( NULL ),
      45             :             pDoc            ( NULL ),
      46           0 :             nWhichSubTotals ( rArgSet.GetPool()->GetWhich( SID_SUBTOTALS ) ),
      47             :             rSubTotalData   ( static_cast<const ScSubTotalItem&>(
      48           0 :                               rArgSet.Get( nWhichSubTotals )).
      49           0 :                                 GetSubTotalData() ),
      50           0 :             nFieldCount     ( 0 )
      51             : {
      52           0 :     get(mpLbGroup, "group_by");
      53           0 :     get(mpLbColumns, "columns");
      54           0 :     get(mpLbFunctions, "functions");
      55             : 
      56           0 :     long nHeight = mpLbColumns->GetTextHeight() * 14;
      57           0 :     mpLbColumns->set_height_request(nHeight);
      58           0 :     mpLbFunctions->set_height_request(nHeight);
      59             : 
      60             :     // Font is correctly initialized by SvTreeListBox ctor
      61           0 :     mpLbColumns->SetSelectionMode( SINGLE_SELECTION );
      62           0 :     mpLbColumns->SetDragDropMode( SV_DRAGDROP_NONE );
      63           0 :     mpLbColumns->SetSpaceBetweenEntries( 0 );
      64             : 
      65           0 :     Init ();
      66           0 : }
      67             : 
      68           0 : ScTpSubTotalGroup::~ScTpSubTotalGroup()
      69             : {
      70           0 :     sal_uLong  nCount = mpLbColumns->GetEntryCount();
      71             : 
      72           0 :     if ( nCount > 0 )
      73             :     {
      74           0 :         sal_uInt16* pData = NULL;
      75             : 
      76           0 :         for ( sal_uLong i=0; i<nCount; i++ )
      77             :         {
      78           0 :             pData = (sal_uInt16*)(mpLbColumns->GetEntryData( i ));
      79             :             OSL_ENSURE( pData, "EntryData not found" );
      80             : 
      81           0 :             delete pData;
      82             :         }
      83             :     }
      84           0 : }
      85             : 
      86           0 : void ScTpSubTotalGroup::Init()
      87             : {
      88             :     const ScSubTotalItem& rSubTotalItem = static_cast<const ScSubTotalItem&>(
      89           0 :                                           GetItemSet().Get( nWhichSubTotals ));
      90             : 
      91           0 :     pViewData   = rSubTotalItem.GetViewData();
      92           0 :     pDoc        = ( pViewData ) ? pViewData->GetDocument() : NULL;
      93             : 
      94             :     OSL_ENSURE( pViewData && pDoc, "ViewData or Document not found :-(" );
      95             : 
      96           0 :     mpLbGroup->SetSelectHdl       ( LINK( this, ScTpSubTotalGroup, SelectHdl ) );
      97           0 :     mpLbColumns->SetSelectHdl     ( LINK( this, ScTpSubTotalGroup, SelectHdl ) );
      98           0 :     mpLbColumns->SetCheckButtonHdl    ( LINK( this, ScTpSubTotalGroup, CheckHdl ) );
      99           0 :     mpLbFunctions->SetSelectHdl   ( LINK( this, ScTpSubTotalGroup, SelectHdl ) );
     100             : 
     101           0 :     nFieldArr[0] = 0;
     102           0 :     FillListBoxes();
     103           0 : }
     104             : 
     105           0 : bool ScTpSubTotalGroup::DoReset( sal_uInt16             nGroupNo,
     106             :                                  const SfxItemSet&  rArgSet  )
     107             : {
     108           0 :     sal_uInt16 nGroupIdx = 0;
     109             : 
     110             :     OSL_ENSURE( (nGroupNo<=3) && (nGroupNo>0), "Invalid group" );
     111             : 
     112           0 :     if ( (nGroupNo > 3) || (nGroupNo == 0) )
     113           0 :         return false;
     114             :     else
     115           0 :         nGroupIdx = nGroupNo-1;
     116             : 
     117             :     // first we have to clear the listboxes...
     118           0 :     for ( sal_uLong nLbEntry = 0; nLbEntry < mpLbColumns->GetEntryCount(); ++nLbEntry )
     119             :     {
     120           0 :         mpLbColumns->CheckEntryPos( nLbEntry, false );
     121           0 :         *((sal_uInt16*)mpLbColumns->GetEntryData( nLbEntry )) = 0;
     122             :     }
     123           0 :     mpLbFunctions->SelectEntryPos( 0 );
     124             : 
     125             :     ScSubTotalParam theSubTotalData( static_cast<const ScSubTotalItem&>(
     126           0 :                                       rArgSet.Get( nWhichSubTotals )).
     127           0 :                                             GetSubTotalData() );
     128             : 
     129           0 :     if ( theSubTotalData.bGroupActive[nGroupIdx] )
     130             :     {
     131           0 :         SCCOL           nField      = theSubTotalData.nField[nGroupIdx];
     132           0 :         SCCOL           nSubTotals  = theSubTotalData.nSubTotals[nGroupIdx];
     133           0 :         SCCOL*          pSubTotals  = theSubTotalData.pSubTotals[nGroupIdx];
     134           0 :         ScSubTotalFunc* pFunctions  = theSubTotalData.pFunctions[nGroupIdx];
     135             : 
     136           0 :         mpLbGroup->SelectEntryPos( GetFieldSelPos( nField )+1 );
     137             : 
     138           0 :         sal_uInt16 nFirstChecked = 0;
     139           0 :         for ( sal_uInt16 i=0; i<nSubTotals; i++ )
     140             :         {
     141           0 :             sal_uInt16  nCheckPos = GetFieldSelPos( pSubTotals[i] );
     142           0 :             sal_uInt16* pFunction = (sal_uInt16*)mpLbColumns->GetEntryData( nCheckPos );
     143             : 
     144           0 :             mpLbColumns->CheckEntryPos( nCheckPos );
     145           0 :             *pFunction = FuncToLbPos( pFunctions[i] );
     146             : 
     147           0 :             if (i == 0 || (i > 0 && nCheckPos < nFirstChecked))
     148           0 :                 nFirstChecked = nCheckPos;
     149             :         }
     150             :         // Select the first checked field from the top.
     151           0 :         mpLbColumns->SelectEntryPos(nFirstChecked);
     152             :     }
     153             :     else
     154             :     {
     155           0 :         mpLbGroup->SelectEntryPos( (nGroupNo == 1) ? 1 : 0 );
     156           0 :         mpLbColumns->SelectEntryPos( 0 );
     157           0 :         mpLbFunctions->SelectEntryPos( 0 );
     158             :     }
     159             : 
     160           0 :     return true;
     161             : }
     162             : 
     163           0 : bool ScTpSubTotalGroup::DoFillItemSet( sal_uInt16       nGroupNo,
     164             :                                        SfxItemSet&  rArgSet  )
     165             : {
     166           0 :     sal_uInt16 nGroupIdx = 0;
     167             : 
     168             :     OSL_ENSURE( (nGroupNo<=3) && (nGroupNo>0), "Invalid group" );
     169             :     OSL_ENSURE(    (mpLbGroup->GetEntryCount() > 0)
     170             :                 && (mpLbColumns->GetEntryCount() > 0)
     171             :                 && (mpLbFunctions->GetEntryCount() > 0),
     172             :                 "Non-initialized Lists" );
     173             : 
     174           0 :     if (  (nGroupNo > 3) || (nGroupNo == 0)
     175           0 :         || (mpLbGroup->GetEntryCount() == 0)
     176           0 :         || (mpLbColumns->GetEntryCount() == 0)
     177           0 :         || (mpLbFunctions->GetEntryCount() == 0)
     178             :        )
     179           0 :         return false;
     180             :     else
     181           0 :         nGroupIdx = nGroupNo-1;
     182             : 
     183           0 :     ScSubTotalParam theSubTotalData;            // auslesen, wenn schon teilweise gefuellt
     184           0 :     SfxTabDialog* pDlg = GetTabDialog();
     185           0 :     if ( pDlg )
     186             :     {
     187           0 :         const SfxItemSet* pExample = pDlg->GetExampleSet();
     188             :         const SfxPoolItem* pItem;
     189           0 :         if ( pExample && pExample->GetItemState( nWhichSubTotals, true, &pItem ) == SfxItemState::SET )
     190           0 :             theSubTotalData = static_cast<const ScSubTotalItem*>(pItem)->GetSubTotalData();
     191             :     }
     192             : 
     193           0 :     boost::scoped_array<ScSubTotalFunc> pFunctions;
     194           0 :     boost::scoped_array<SCCOL>          pSubTotals;
     195           0 :     sal_uInt16          nGroup      = mpLbGroup->GetSelectEntryPos();
     196           0 :     sal_uInt16          nEntryCount = (sal_uInt16)mpLbColumns->GetEntryCount();
     197           0 :     sal_uInt16          nCheckCount = mpLbColumns->GetCheckedEntryCount();
     198             : 
     199           0 :     theSubTotalData.nCol1                   = rSubTotalData.nCol1;
     200           0 :     theSubTotalData.nRow1                   = rSubTotalData.nRow1;
     201           0 :     theSubTotalData.nCol2                   = rSubTotalData.nCol2;
     202           0 :     theSubTotalData.nRow2                   = rSubTotalData.nRow2;
     203           0 :     theSubTotalData.bGroupActive[nGroupIdx] = (nGroup != 0);
     204           0 :     theSubTotalData.nField[nGroupIdx]       = (nGroup != 0)
     205           0 :                                                 ? nFieldArr[nGroup-1]
     206           0 :                                                 : static_cast<SCCOL>(0);
     207             : 
     208           0 :     if ( nEntryCount>0 && nCheckCount>0 && nGroup!=0 )
     209             :     {
     210           0 :         sal_uInt16 nFunction    = 0;
     211             : 
     212           0 :         pSubTotals.reset(new SCCOL          [nCheckCount]);
     213           0 :         pFunctions.reset(new ScSubTotalFunc [nCheckCount]);
     214             : 
     215           0 :         for ( sal_uInt16 i=0, nCheck=0; i<nEntryCount; i++ )
     216             :         {
     217           0 :             if ( mpLbColumns->IsChecked( i ) )
     218             :             {
     219             :                 OSL_ENSURE( nCheck <= nCheckCount,
     220             :                             "Range error :-(" );
     221           0 :                 nFunction = *((sal_uInt16*)mpLbColumns->GetEntryData( i ));
     222           0 :                 pSubTotals[nCheck] = nFieldArr[i];
     223           0 :                 pFunctions[nCheck] = LbPosToFunc( nFunction );
     224           0 :                 nCheck++;
     225             :             }
     226             :         }
     227             :         theSubTotalData.SetSubTotals( nGroupNo,      // Gruppen-Nr.
     228           0 :                                       pSubTotals.get(),
     229           0 :                                       pFunctions.get(),
     230           0 :                                       nCheckCount ); // Anzahl der Array-Elemente
     231             : 
     232             :     }
     233             : 
     234           0 :     rArgSet.Put( ScSubTotalItem( SCITEM_SUBTDATA, &theSubTotalData ) );
     235             : 
     236           0 :     return true;
     237             : }
     238             : 
     239           0 : void ScTpSubTotalGroup::FillListBoxes()
     240             : {
     241             :     OSL_ENSURE( pViewData && pDoc, "ViewData or Document not found :-/" );
     242             : 
     243           0 :     if ( pViewData && pDoc )
     244             :     {
     245           0 :         SCCOL   nFirstCol   = rSubTotalData.nCol1;
     246           0 :         SCROW   nFirstRow   = rSubTotalData.nRow1;
     247           0 :         SCTAB   nTab        = pViewData->GetTabNo();
     248           0 :         SCCOL   nMaxCol     = rSubTotalData.nCol2;
     249             :         SCCOL   col;
     250           0 :         OUString  aFieldName;
     251             : 
     252           0 :         mpLbGroup->Clear();
     253           0 :         mpLbColumns->Clear();
     254           0 :         mpLbGroup->InsertEntry( aStrNone, 0 );
     255             : 
     256           0 :         sal_uInt16 i=0;
     257           0 :         for ( col=nFirstCol; col<=nMaxCol && i<SC_MAXFIELDS; col++ )
     258             :         {
     259           0 :             aFieldName = pDoc->GetString(col, nFirstRow, nTab);
     260           0 :             if ( aFieldName.isEmpty() )
     261             :             {
     262           0 :                 aFieldName = ScGlobal::ReplaceOrAppend( aStrColumn, "%1", ScColToAlpha( col ));
     263             :             }
     264           0 :             nFieldArr[i] = col;
     265           0 :             mpLbGroup->InsertEntry( aFieldName, i+1 );
     266           0 :             mpLbColumns->InsertEntry( aFieldName, i );
     267           0 :             mpLbColumns->SetEntryData( i, new sal_uInt16(0) );
     268           0 :             i++;
     269             :         }
     270             :         // subsequent initialization of the constant:
     271           0 :         (sal_uInt16&)nFieldCount = i;
     272             :     }
     273           0 : }
     274             : 
     275           0 : sal_uInt16 ScTpSubTotalGroup::GetFieldSelPos( SCCOL nField )
     276             : {
     277           0 :     sal_uInt16  nFieldPos   = 0;
     278           0 :     bool    bFound      = false;
     279             : 
     280           0 :     for ( sal_uInt16 n=0; n<nFieldCount && !bFound; n++ )
     281             :     {
     282           0 :         if ( nFieldArr[n] == nField )
     283             :         {
     284           0 :             nFieldPos = n;
     285           0 :             bFound = true;
     286             :         }
     287             :     }
     288             : 
     289           0 :     return nFieldPos;
     290             : }
     291             : 
     292           0 : ScSubTotalFunc ScTpSubTotalGroup::LbPosToFunc( sal_uInt16 nPos )
     293             : {
     294           0 :     switch ( nPos )
     295             :     {
     296             : //      case  0:    return SUBTOTAL_FUNC_NONE;
     297           0 :         case  2:    return SUBTOTAL_FUNC_AVE;
     298           0 :         case  6:    return SUBTOTAL_FUNC_CNT;
     299           0 :         case  1:    return SUBTOTAL_FUNC_CNT2;
     300           0 :         case  3:    return SUBTOTAL_FUNC_MAX;
     301           0 :         case  4:    return SUBTOTAL_FUNC_MIN;
     302           0 :         case  5:    return SUBTOTAL_FUNC_PROD;
     303           0 :         case  7:    return SUBTOTAL_FUNC_STD;
     304           0 :         case  8:    return SUBTOTAL_FUNC_STDP;
     305           0 :         case  0:    return SUBTOTAL_FUNC_SUM;
     306           0 :         case  9:    return SUBTOTAL_FUNC_VAR;
     307           0 :         case 10:    return SUBTOTAL_FUNC_VARP;
     308             :         default:
     309             :             OSL_FAIL( "ScTpSubTotalGroup::LbPosToFunc" );
     310           0 :             return SUBTOTAL_FUNC_NONE;
     311             :     }
     312             : }
     313             : 
     314           0 : sal_uInt16 ScTpSubTotalGroup::FuncToLbPos( ScSubTotalFunc eFunc )
     315             : {
     316           0 :     switch ( eFunc )
     317             :     {
     318             : //      case SUBTOTAL_FUNC_NONE:    return 0;
     319           0 :         case SUBTOTAL_FUNC_AVE:     return 2;
     320           0 :         case SUBTOTAL_FUNC_CNT:     return 6;
     321           0 :         case SUBTOTAL_FUNC_CNT2:    return 1;
     322           0 :         case SUBTOTAL_FUNC_MAX:     return 3;
     323           0 :         case SUBTOTAL_FUNC_MIN:     return 4;
     324           0 :         case SUBTOTAL_FUNC_PROD:    return 5;
     325           0 :         case SUBTOTAL_FUNC_STD:     return 7;
     326           0 :         case SUBTOTAL_FUNC_STDP:    return 8;
     327           0 :         case SUBTOTAL_FUNC_SUM:     return 0;
     328           0 :         case SUBTOTAL_FUNC_VAR:     return 9;
     329           0 :         case SUBTOTAL_FUNC_VARP:    return 10;
     330             :         default:
     331             :             OSL_FAIL( "ScTpSubTotalGroup::FuncToLbPos" );
     332           0 :             return 0;
     333             :     }
     334             : }
     335             : 
     336             : // Handler:
     337             : 
     338           0 : IMPL_LINK( ScTpSubTotalGroup, SelectHdl, ListBox *, pLb )
     339             : {
     340           0 :     if (   (mpLbColumns->GetEntryCount() > 0)
     341           0 :         && (mpLbColumns->GetSelectionCount() > 0) )
     342             :     {
     343           0 :         sal_uInt16      nFunction   = mpLbFunctions->GetSelectEntryPos();
     344           0 :         sal_uInt16      nColumn     = mpLbColumns->GetSelectEntryPos();
     345           0 :         sal_uInt16*     pFunction   = (sal_uInt16*)mpLbColumns->GetEntryData( nColumn );
     346             : 
     347             :         OSL_ENSURE( pFunction, "EntryData not found!" );
     348           0 :         if ( !pFunction )
     349           0 :             return 0;
     350             : 
     351           0 :         if ( ((SvxCheckListBox*)pLb) == mpLbColumns )
     352             :         {
     353           0 :             mpLbFunctions->SelectEntryPos( *pFunction );
     354             :         }
     355           0 :         else if ( pLb == mpLbFunctions )
     356             :         {
     357           0 :             *pFunction = nFunction;
     358           0 :             mpLbColumns->CheckEntryPos( nColumn, true );
     359             :         }
     360             :     }
     361           0 :     return 0;
     362             : }
     363             : 
     364           0 : IMPL_LINK( ScTpSubTotalGroup, CheckHdl, ListBox *, pLb )
     365             : {
     366           0 :     if ( ((SvxCheckListBox*)pLb) == mpLbColumns )
     367             :     {
     368           0 :         SvTreeListEntry* pEntry = mpLbColumns->GetHdlEntry();
     369             : 
     370           0 :         if ( pEntry )
     371             :         {
     372           0 :             mpLbColumns->SelectEntryPos( (sal_uInt16)mpLbColumns->GetModel()->GetAbsPos( pEntry ) );
     373           0 :             SelectHdl( pLb );
     374             :         }
     375             :     }
     376           0 :     return 0;
     377             : }
     378             : 
     379             : // Derived Group TabPages:
     380             : 
     381           0 : SfxTabPage* ScTpSubTotalGroup1::Create( vcl::Window*         pParent,
     382             :                                                  const SfxItemSet*  rArgSet )
     383           0 :     { return ( new ScTpSubTotalGroup1( pParent, *rArgSet ) ); }
     384             : 
     385           0 : SfxTabPage* ScTpSubTotalGroup2::Create( vcl::Window*          pParent,
     386             :                                        const SfxItemSet*    rArgSet )
     387           0 :     { return ( new ScTpSubTotalGroup2( pParent, *rArgSet ) ); }
     388             : 
     389           0 : SfxTabPage* ScTpSubTotalGroup3::Create( vcl::Window*          pParent,
     390             :                                        const SfxItemSet*    rArgSet )
     391           0 :     { return ( new ScTpSubTotalGroup3( pParent, *rArgSet ) ); }
     392             : 
     393           0 : ScTpSubTotalGroup1::ScTpSubTotalGroup1( vcl::Window* pParent, const SfxItemSet& rArgSet ) :
     394           0 :     ScTpSubTotalGroup( pParent, rArgSet )
     395           0 : {}
     396             : 
     397           0 : ScTpSubTotalGroup2::ScTpSubTotalGroup2( vcl::Window* pParent, const SfxItemSet& rArgSet ) :
     398           0 :     ScTpSubTotalGroup( pParent, rArgSet )
     399           0 : {}
     400             : 
     401           0 : ScTpSubTotalGroup3::ScTpSubTotalGroup3( vcl::Window* pParent, const SfxItemSet& rArgSet ) :
     402           0 :     ScTpSubTotalGroup( pParent, rArgSet )
     403           0 : {}
     404             : 
     405             : #define RESET(i) (ScTpSubTotalGroup::DoReset( (i), *rArgSet ))
     406           0 : void ScTpSubTotalGroup1::Reset( const SfxItemSet* rArgSet ) { RESET(1); }
     407           0 : void ScTpSubTotalGroup2::Reset( const SfxItemSet* rArgSet ) { RESET(2); }
     408           0 : void ScTpSubTotalGroup3::Reset( const SfxItemSet* rArgSet ) { RESET(3); }
     409             : #undef RESET
     410             : 
     411             : #define FILLSET(i) (ScTpSubTotalGroup::DoFillItemSet( (i), *rArgSet ))
     412           0 : bool ScTpSubTotalGroup1::FillItemSet( SfxItemSet* rArgSet ) { return FILLSET(1); }
     413           0 : bool ScTpSubTotalGroup2::FillItemSet( SfxItemSet* rArgSet ) { return FILLSET(2); }
     414           0 : bool ScTpSubTotalGroup3::FillItemSet( SfxItemSet* rArgSet ) { return FILLSET(3); }
     415             : #undef FILL
     416             : 
     417             : // Optionen-Tabpage:
     418             : 
     419           0 : ScTpSubTotalOptions::ScTpSubTotalOptions( vcl::Window*               pParent,
     420             :                                           const SfxItemSet&     rArgSet )
     421             : 
     422             :         :   SfxTabPage      ( pParent,
     423             :                               "SubTotalOptionsPage", "modules/scalc/ui/subtotaloptionspage.ui" ,
     424             :                               &rArgSet ),
     425             :             pViewData       ( NULL ),
     426             :             pDoc            ( NULL ),
     427           0 :             nWhichSubTotals ( rArgSet.GetPool()->GetWhich( SID_SUBTOTALS ) ),
     428             :             rSubTotalData   ( static_cast<const ScSubTotalItem&>(
     429           0 :                               rArgSet.Get( nWhichSubTotals )).
     430           0 :                                 GetSubTotalData() )
     431             : {
     432           0 :     get(pBtnPagebreak,"pagebreak");
     433           0 :     get(pBtnCase,"case");
     434           0 :     get(pBtnSort,"sort");
     435           0 :     get(pFlSort,"label2");
     436           0 :     get(pBtnAscending,"ascending");
     437           0 :     get(pBtnDescending,"descending");
     438           0 :     get(pBtnFormats,"formats");
     439           0 :     get(pBtnUserDef,"btnuserdef");
     440           0 :     get(pLbUserDef,"lbuserdef");
     441             : 
     442           0 :     Init();
     443           0 : }
     444             : 
     445           0 : ScTpSubTotalOptions::~ScTpSubTotalOptions()
     446             : {
     447           0 : }
     448             : 
     449           0 : void ScTpSubTotalOptions::Init()
     450             : {
     451             :     const ScSubTotalItem& rSubTotalItem = static_cast<const ScSubTotalItem&>(
     452           0 :                                           GetItemSet().Get( nWhichSubTotals ));
     453             : 
     454           0 :     pViewData   = rSubTotalItem.GetViewData();
     455           0 :     pDoc        = ( pViewData ) ? pViewData->GetDocument() : NULL;
     456             : 
     457             :     OSL_ENSURE( pViewData && pDoc, "ViewData or Document not found!" );
     458             : 
     459           0 :     pBtnSort->SetClickHdl    ( LINK( this, ScTpSubTotalOptions, CheckHdl ) );
     460           0 :     pBtnUserDef->SetClickHdl ( LINK( this, ScTpSubTotalOptions, CheckHdl ) );
     461             : 
     462           0 :     FillUserSortListBox();
     463           0 : }
     464             : 
     465           0 : SfxTabPage* ScTpSubTotalOptions::Create( vcl::Window*                 pParent,
     466             :                                           const SfxItemSet*     rArgSet )
     467             : {
     468           0 :     return ( new ScTpSubTotalOptions( pParent, *rArgSet ) );
     469             : }
     470             : 
     471           0 : void ScTpSubTotalOptions::Reset( const SfxItemSet* /* rArgSet */ )
     472             : {
     473           0 :     pBtnPagebreak->Check ( rSubTotalData.bPagebreak );
     474           0 :     pBtnCase->Check      ( rSubTotalData.bCaseSens );
     475           0 :     pBtnFormats->Check   ( rSubTotalData.bIncludePattern );
     476           0 :     pBtnSort->Check      ( rSubTotalData.bDoSort );
     477           0 :     pBtnAscending->Check ( rSubTotalData.bAscending );
     478           0 :     pBtnDescending->Check( !rSubTotalData.bAscending );
     479             : 
     480           0 :     if ( rSubTotalData.bUserDef )
     481             :     {
     482           0 :         pBtnUserDef->Check( true );
     483           0 :         pLbUserDef->Enable();
     484           0 :         pLbUserDef->SelectEntryPos( rSubTotalData.nUserIndex );
     485             :     }
     486             :     else
     487             :     {
     488           0 :         pBtnUserDef->Check( false );
     489           0 :         pLbUserDef->Disable();
     490           0 :         pLbUserDef->SelectEntryPos( 0 );
     491             :     }
     492             : 
     493           0 :     CheckHdl( pBtnSort );
     494           0 : }
     495             : 
     496           0 : bool ScTpSubTotalOptions::FillItemSet( SfxItemSet* rArgSet )
     497             : {
     498           0 :     ScSubTotalParam theSubTotalData;            // auslesen, wenn schon teilweise gefuellt
     499           0 :     SfxTabDialog* pDlg = GetTabDialog();
     500           0 :     if ( pDlg )
     501             :     {
     502           0 :         const SfxItemSet* pExample = pDlg->GetExampleSet();
     503             :         const SfxPoolItem* pItem;
     504           0 :         if ( pExample && pExample->GetItemState( nWhichSubTotals, true, &pItem ) == SfxItemState::SET )
     505           0 :             theSubTotalData = static_cast<const ScSubTotalItem*>(pItem)->GetSubTotalData();
     506             :     }
     507             : 
     508           0 :     theSubTotalData.bPagebreak      = pBtnPagebreak->IsChecked();
     509           0 :     theSubTotalData.bReplace        = true;
     510           0 :     theSubTotalData.bCaseSens       = pBtnCase->IsChecked();
     511           0 :     theSubTotalData.bIncludePattern = pBtnFormats->IsChecked();
     512           0 :     theSubTotalData.bDoSort         = pBtnSort->IsChecked();
     513           0 :     theSubTotalData.bAscending      = pBtnAscending->IsChecked();
     514           0 :     theSubTotalData.bUserDef        = pBtnUserDef->IsChecked();
     515           0 :     theSubTotalData.nUserIndex      = (pBtnUserDef->IsChecked())
     516           0 :                                     ? pLbUserDef->GetSelectEntryPos()
     517           0 :                                     : 0;
     518             : 
     519           0 :     rArgSet->Put( ScSubTotalItem( nWhichSubTotals, &theSubTotalData ) );
     520             : 
     521           0 :     return true;
     522             : }
     523             : 
     524           0 : void ScTpSubTotalOptions::FillUserSortListBox()
     525             : {
     526           0 :     ScUserList* pUserLists = ScGlobal::GetUserList();
     527             : 
     528           0 :     pLbUserDef->Clear();
     529           0 :     if ( pUserLists )
     530             :     {
     531           0 :         size_t nCount = pUserLists->size();
     532           0 :         for ( size_t i=0; i<nCount; ++i )
     533           0 :             pLbUserDef->InsertEntry( (*pUserLists)[i]->GetString() );
     534             :     }
     535           0 : }
     536             : 
     537             : // Handler:
     538             : 
     539           0 : IMPL_LINK( ScTpSubTotalOptions, CheckHdl, CheckBox *, pBox )
     540             : {
     541           0 :     if ( pBox == pBtnSort )
     542             :     {
     543           0 :         if ( pBtnSort->IsChecked() )
     544             :         {
     545           0 :             pFlSort->Enable();
     546           0 :             pBtnFormats->Enable();
     547           0 :             pBtnUserDef->Enable();
     548           0 :             pBtnAscending->Enable();
     549           0 :             pBtnDescending->Enable();
     550             : 
     551           0 :             if ( pBtnUserDef->IsChecked() )
     552           0 :                 pLbUserDef->Enable();
     553             :         }
     554             :         else
     555             :         {
     556           0 :             pFlSort->Disable();
     557           0 :             pBtnFormats->Disable();
     558           0 :             pBtnUserDef->Disable();
     559           0 :             pBtnAscending->Disable();
     560           0 :             pBtnDescending->Disable();
     561           0 :             pLbUserDef->Disable();
     562             :         }
     563             :     }
     564           0 :     else if ( pBox == pBtnUserDef )
     565             :     {
     566           0 :         if ( pBtnUserDef->IsChecked() )
     567             :         {
     568           0 :             pLbUserDef->Enable();
     569           0 :             pLbUserDef->GrabFocus();
     570             :         }
     571             :         else
     572           0 :             pLbUserDef->Disable();
     573             :     }
     574             : 
     575           0 :     return 0;
     576             : }
     577             : 
     578           0 : ScTpSubTotalGroup1::~ScTpSubTotalGroup1()
     579             : {
     580           0 : }
     581             : 
     582           0 : ScTpSubTotalGroup2::~ScTpSubTotalGroup2()
     583             : {
     584           0 : }
     585             : 
     586           0 : ScTpSubTotalGroup3::~ScTpSubTotalGroup3()
     587             : {
     588           0 : }
     589             : 
     590             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10