LCOV - code coverage report
Current view: top level - sc/source/ui/dbgui - tpsubt.cxx (source / functions) Hit Total Coverage
Test: commit e02a6cb2c3e2b23b203b422e4e0680877f232636 Lines: 0 305 0.0 %
Date: 2014-04-14 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( 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   ( ((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 = (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( ((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             : 
     175           0 :     if (  (nGroupNo > 3) || (nGroupNo == 0)
     176           0 :         || (mpLbGroup->GetEntryCount() == 0)
     177           0 :         || (mpLbColumns->GetEntryCount() == 0)
     178           0 :         || (mpLbFunctions->GetEntryCount() == 0)
     179             :        )
     180           0 :         return false;
     181             :     else
     182           0 :         nGroupIdx = nGroupNo-1;
     183             : 
     184           0 :     ScSubTotalParam theSubTotalData;            // auslesen, wenn schon teilweise gefuellt
     185           0 :     SfxTabDialog* pDlg = GetTabDialog();
     186           0 :     if ( pDlg )
     187             :     {
     188           0 :         const SfxItemSet* pExample = pDlg->GetExampleSet();
     189             :         const SfxPoolItem* pItem;
     190           0 :         if ( pExample && pExample->GetItemState( nWhichSubTotals, true, &pItem ) == SFX_ITEM_SET )
     191           0 :             theSubTotalData = ((const ScSubTotalItem*)pItem)->GetSubTotalData();
     192             :     }
     193             : 
     194           0 :     boost::scoped_array<ScSubTotalFunc> pFunctions;
     195           0 :     boost::scoped_array<SCCOL>          pSubTotals;
     196           0 :     sal_uInt16          nGroup      = mpLbGroup->GetSelectEntryPos();
     197           0 :     sal_uInt16          nEntryCount = (sal_uInt16)mpLbColumns->GetEntryCount();
     198           0 :     sal_uInt16          nCheckCount = mpLbColumns->GetCheckedEntryCount();
     199             : 
     200           0 :     theSubTotalData.nCol1                   = rSubTotalData.nCol1;
     201           0 :     theSubTotalData.nRow1                   = rSubTotalData.nRow1;
     202           0 :     theSubTotalData.nCol2                   = rSubTotalData.nCol2;
     203           0 :     theSubTotalData.nRow2                   = rSubTotalData.nRow2;
     204           0 :     theSubTotalData.bGroupActive[nGroupIdx] = (nGroup != 0);
     205           0 :     theSubTotalData.nField[nGroupIdx]       = (nGroup != 0)
     206           0 :                                                 ? nFieldArr[nGroup-1]
     207           0 :                                                 : static_cast<SCCOL>(0);
     208             : 
     209           0 :     if ( nEntryCount>0 && nCheckCount>0 && nGroup!=0 )
     210             :     {
     211           0 :         sal_uInt16 nFunction    = 0;
     212             : 
     213           0 :         pSubTotals.reset(new SCCOL          [nCheckCount]);
     214           0 :         pFunctions.reset(new ScSubTotalFunc [nCheckCount]);
     215             : 
     216           0 :         for ( sal_uInt16 i=0, nCheck=0; i<nEntryCount; i++ )
     217             :         {
     218           0 :             if ( mpLbColumns->IsChecked( i ) )
     219             :             {
     220             :                 OSL_ENSURE( nCheck <= nCheckCount,
     221             :                             "Range error :-(" );
     222           0 :                 nFunction = *((sal_uInt16*)mpLbColumns->GetEntryData( i ));
     223           0 :                 pSubTotals[nCheck] = nFieldArr[i];
     224           0 :                 pFunctions[nCheck] = LbPosToFunc( nFunction );
     225           0 :                 nCheck++;
     226             :             }
     227             :         }
     228             :         theSubTotalData.SetSubTotals( nGroupNo,      // Gruppen-Nr.
     229           0 :                                       pSubTotals.get(),
     230           0 :                                       pFunctions.get(),
     231           0 :                                       nCheckCount ); // Anzahl der Array-Elemente
     232             : 
     233             :     }
     234             : 
     235           0 :     rArgSet.Put( ScSubTotalItem( SCITEM_SUBTDATA, &theSubTotalData ) );
     236             : 
     237           0 :     return true;
     238             : }
     239             : 
     240           0 : void ScTpSubTotalGroup::FillListBoxes()
     241             : {
     242             :     OSL_ENSURE( pViewData && pDoc, "ViewData or Document not found :-/" );
     243             : 
     244           0 :     if ( pViewData && pDoc )
     245             :     {
     246           0 :         SCCOL   nFirstCol   = rSubTotalData.nCol1;
     247           0 :         SCROW   nFirstRow   = rSubTotalData.nRow1;
     248           0 :         SCTAB   nTab        = pViewData->GetTabNo();
     249           0 :         SCCOL   nMaxCol     = rSubTotalData.nCol2;
     250             :         SCCOL   col;
     251           0 :         OUString  aFieldName;
     252             : 
     253           0 :         mpLbGroup->Clear();
     254           0 :         mpLbColumns->Clear();
     255           0 :         mpLbGroup->InsertEntry( aStrNone, 0 );
     256             : 
     257           0 :         sal_uInt16 i=0;
     258           0 :         for ( col=nFirstCol; col<=nMaxCol && i<SC_MAXFIELDS; col++ )
     259             :         {
     260           0 :             aFieldName = pDoc->GetString(col, nFirstRow, nTab);
     261           0 :             if ( aFieldName.isEmpty() )
     262             :             {
     263           0 :                 aFieldName = ScGlobal::ReplaceOrAppend( aStrColumn, "%1", ScColToAlpha( col ));
     264             :             }
     265           0 :             nFieldArr[i] = col;
     266           0 :             mpLbGroup->InsertEntry( aFieldName, i+1 );
     267           0 :             mpLbColumns->InsertEntry( aFieldName, i );
     268           0 :             mpLbColumns->SetEntryData( i, new sal_uInt16(0) );
     269           0 :             i++;
     270             :         }
     271             :         // subsequent initialization of the constant:
     272           0 :         (sal_uInt16&)nFieldCount = i;
     273             :     }
     274           0 : }
     275             : 
     276           0 : sal_uInt16 ScTpSubTotalGroup::GetFieldSelPos( SCCOL nField )
     277             : {
     278           0 :     sal_uInt16  nFieldPos   = 0;
     279           0 :     bool    bFound      = false;
     280             : 
     281           0 :     for ( sal_uInt16 n=0; n<nFieldCount && !bFound; n++ )
     282             :     {
     283           0 :         if ( nFieldArr[n] == nField )
     284             :         {
     285           0 :             nFieldPos = n;
     286           0 :             bFound = true;
     287             :         }
     288             :     }
     289             : 
     290           0 :     return nFieldPos;
     291             : }
     292             : 
     293           0 : ScSubTotalFunc ScTpSubTotalGroup::LbPosToFunc( sal_uInt16 nPos )
     294             : {
     295           0 :     switch ( nPos )
     296             :     {
     297             : //      case  0:    return SUBTOTAL_FUNC_NONE;
     298           0 :         case  2:    return SUBTOTAL_FUNC_AVE;
     299           0 :         case  6:    return SUBTOTAL_FUNC_CNT;
     300           0 :         case  1:    return SUBTOTAL_FUNC_CNT2;
     301           0 :         case  3:    return SUBTOTAL_FUNC_MAX;
     302           0 :         case  4:    return SUBTOTAL_FUNC_MIN;
     303           0 :         case  5:    return SUBTOTAL_FUNC_PROD;
     304           0 :         case  7:    return SUBTOTAL_FUNC_STD;
     305           0 :         case  8:    return SUBTOTAL_FUNC_STDP;
     306           0 :         case  0:    return SUBTOTAL_FUNC_SUM;
     307           0 :         case  9:    return SUBTOTAL_FUNC_VAR;
     308           0 :         case 10:    return SUBTOTAL_FUNC_VARP;
     309             :         default:
     310             :             OSL_FAIL( "ScTpSubTotalGroup::LbPosToFunc" );
     311           0 :             return SUBTOTAL_FUNC_NONE;
     312             :     }
     313             : }
     314             : 
     315           0 : sal_uInt16 ScTpSubTotalGroup::FuncToLbPos( ScSubTotalFunc eFunc )
     316             : {
     317           0 :     switch ( eFunc )
     318             :     {
     319             : //      case SUBTOTAL_FUNC_NONE:    return 0;
     320           0 :         case SUBTOTAL_FUNC_AVE:     return 2;
     321           0 :         case SUBTOTAL_FUNC_CNT:     return 6;
     322           0 :         case SUBTOTAL_FUNC_CNT2:    return 1;
     323           0 :         case SUBTOTAL_FUNC_MAX:     return 3;
     324           0 :         case SUBTOTAL_FUNC_MIN:     return 4;
     325           0 :         case SUBTOTAL_FUNC_PROD:    return 5;
     326           0 :         case SUBTOTAL_FUNC_STD:     return 7;
     327           0 :         case SUBTOTAL_FUNC_STDP:    return 8;
     328           0 :         case SUBTOTAL_FUNC_SUM:     return 0;
     329           0 :         case SUBTOTAL_FUNC_VAR:     return 9;
     330           0 :         case SUBTOTAL_FUNC_VARP:    return 10;
     331             :         default:
     332             :             OSL_FAIL( "ScTpSubTotalGroup::FuncToLbPos" );
     333           0 :             return 0;
     334             :     }
     335             : }
     336             : 
     337             : 
     338             : // Handler:
     339             : 
     340             : 
     341           0 : IMPL_LINK( ScTpSubTotalGroup, SelectHdl, ListBox *, pLb )
     342             : {
     343           0 :     if (   (mpLbColumns->GetEntryCount() > 0)
     344           0 :         && (mpLbColumns->GetSelectionCount() > 0) )
     345             :     {
     346           0 :         sal_uInt16      nFunction   = mpLbFunctions->GetSelectEntryPos();
     347           0 :         sal_uInt16      nColumn     = mpLbColumns->GetSelectEntryPos();
     348           0 :         sal_uInt16*     pFunction   = (sal_uInt16*)mpLbColumns->GetEntryData( nColumn );
     349             : 
     350             :         OSL_ENSURE( pFunction, "EntryData not found!" );
     351           0 :         if ( !pFunction )
     352           0 :             return 0;
     353             : 
     354           0 :         if ( ((SvxCheckListBox*)pLb) == mpLbColumns )
     355             :         {
     356           0 :             mpLbFunctions->SelectEntryPos( *pFunction );
     357             :         }
     358           0 :         else if ( pLb == mpLbFunctions )
     359             :         {
     360           0 :             *pFunction = nFunction;
     361           0 :             mpLbColumns->CheckEntryPos( nColumn, true );
     362             :         }
     363             :     }
     364           0 :     return 0;
     365             : }
     366             : 
     367           0 : IMPL_LINK( ScTpSubTotalGroup, CheckHdl, ListBox *, pLb )
     368             : {
     369           0 :     if ( ((SvxCheckListBox*)pLb) == mpLbColumns )
     370             :     {
     371           0 :         SvTreeListEntry* pEntry = mpLbColumns->GetHdlEntry();
     372             : 
     373           0 :         if ( pEntry )
     374             :         {
     375           0 :             mpLbColumns->SelectEntryPos( (sal_uInt16)mpLbColumns->GetModel()->GetAbsPos( pEntry ) );
     376           0 :             SelectHdl( pLb );
     377             :         }
     378             :     }
     379           0 :     return 0;
     380             : }
     381             : 
     382             : 
     383             : // Derived Group TabPages:
     384             : 
     385           0 : SfxTabPage* ScTpSubTotalGroup1::Create( Window*         pParent,
     386             :                                                  const SfxItemSet&  rArgSet )
     387           0 :     { return ( new ScTpSubTotalGroup1( pParent, rArgSet ) ); }
     388             : 
     389           0 : SfxTabPage* ScTpSubTotalGroup2::Create( Window*          pParent,
     390             :                                        const SfxItemSet&    rArgSet )
     391           0 :     { return ( new ScTpSubTotalGroup2( pParent, rArgSet ) ); }
     392             : 
     393           0 : SfxTabPage* ScTpSubTotalGroup3::Create( Window*          pParent,
     394             :                                        const SfxItemSet&    rArgSet )
     395           0 :     { return ( new ScTpSubTotalGroup3( pParent, rArgSet ) ); }
     396             : 
     397           0 : ScTpSubTotalGroup1::ScTpSubTotalGroup1( Window* pParent, const SfxItemSet& rArgSet ) :
     398           0 :     ScTpSubTotalGroup( pParent, rArgSet )
     399           0 : {}
     400             : 
     401           0 : ScTpSubTotalGroup2::ScTpSubTotalGroup2( Window* pParent, const SfxItemSet& rArgSet ) :
     402           0 :     ScTpSubTotalGroup( pParent, rArgSet )
     403           0 : {}
     404             : 
     405           0 : ScTpSubTotalGroup3::ScTpSubTotalGroup3( Window* pParent, const SfxItemSet& rArgSet ) :
     406           0 :     ScTpSubTotalGroup( pParent, rArgSet )
     407           0 : {}
     408             : 
     409             : 
     410             : #define RESET(i) (ScTpSubTotalGroup::DoReset( (i), rArgSet ))
     411           0 : void ScTpSubTotalGroup1::Reset( const SfxItemSet& rArgSet ) { RESET(1); }
     412           0 : void ScTpSubTotalGroup2::Reset( const SfxItemSet& rArgSet ) { RESET(2); }
     413           0 : void ScTpSubTotalGroup3::Reset( const SfxItemSet& rArgSet ) { RESET(3); }
     414             : #undef RESET
     415             : 
     416             : #define FILLSET(i) (ScTpSubTotalGroup::DoFillItemSet( (i), rArgSet ))
     417           0 : bool ScTpSubTotalGroup1::FillItemSet( SfxItemSet& rArgSet ) { return FILLSET(1); }
     418           0 : bool ScTpSubTotalGroup2::FillItemSet( SfxItemSet& rArgSet ) { return FILLSET(2); }
     419           0 : bool ScTpSubTotalGroup3::FillItemSet( SfxItemSet& rArgSet ) { return FILLSET(3); }
     420             : #undef FILL
     421             : 
     422             : 
     423             : // Optionen-Tabpage:
     424             : 
     425           0 : ScTpSubTotalOptions::ScTpSubTotalOptions( Window*               pParent,
     426             :                                           const SfxItemSet&     rArgSet )
     427             : 
     428             :         :   SfxTabPage      ( pParent,
     429             :                               "SubTotalOptionsPage", "modules/scalc/ui/subtotaloptionspage.ui" ,
     430             :                               rArgSet ),
     431             :             pViewData       ( NULL ),
     432             :             pDoc            ( NULL ),
     433           0 :             nWhichSubTotals ( rArgSet.GetPool()->GetWhich( SID_SUBTOTALS ) ),
     434             :             rSubTotalData   ( ((const ScSubTotalItem&)
     435           0 :                               rArgSet.Get( nWhichSubTotals )).
     436           0 :                                 GetSubTotalData() )
     437             : {
     438           0 :     get(pBtnPagebreak,"pagebreak");
     439           0 :     get(pBtnCase,"case");
     440           0 :     get(pBtnSort,"sort");
     441           0 :     get(pFlSort,"label2");
     442           0 :     get(pBtnAscending,"ascending");
     443           0 :     get(pBtnDescending,"descending");
     444           0 :     get(pBtnFormats,"formats");
     445           0 :     get(pBtnUserDef,"btnuserdef");
     446           0 :     get(pLbUserDef,"lbuserdef");
     447             : 
     448           0 :     Init();
     449           0 : }
     450             : 
     451           0 : ScTpSubTotalOptions::~ScTpSubTotalOptions()
     452             : {
     453           0 : }
     454             : 
     455           0 : void ScTpSubTotalOptions::Init()
     456             : {
     457             :     const ScSubTotalItem& rSubTotalItem = (const ScSubTotalItem&)
     458           0 :                                           GetItemSet().Get( nWhichSubTotals );
     459             : 
     460           0 :     pViewData   = rSubTotalItem.GetViewData();
     461           0 :     pDoc        = ( pViewData ) ? pViewData->GetDocument() : NULL;
     462             : 
     463             :     OSL_ENSURE( pViewData && pDoc, "ViewData or Document not found!" );
     464             : 
     465           0 :     pBtnSort->SetClickHdl    ( LINK( this, ScTpSubTotalOptions, CheckHdl ) );
     466           0 :     pBtnUserDef->SetClickHdl ( LINK( this, ScTpSubTotalOptions, CheckHdl ) );
     467             : 
     468           0 :     FillUserSortListBox();
     469           0 : }
     470             : 
     471           0 : SfxTabPage* ScTpSubTotalOptions::Create( Window*                 pParent,
     472             :                                           const SfxItemSet&     rArgSet )
     473             : {
     474           0 :     return ( new ScTpSubTotalOptions( pParent, rArgSet ) );
     475             : }
     476             : 
     477           0 : void ScTpSubTotalOptions::Reset( const SfxItemSet& /* rArgSet */ )
     478             : {
     479           0 :     pBtnPagebreak->Check ( rSubTotalData.bPagebreak );
     480           0 :     pBtnCase->Check      ( rSubTotalData.bCaseSens );
     481           0 :     pBtnFormats->Check   ( rSubTotalData.bIncludePattern );
     482           0 :     pBtnSort->Check      ( rSubTotalData.bDoSort );
     483           0 :     pBtnAscending->Check ( rSubTotalData.bAscending );
     484           0 :     pBtnDescending->Check( !rSubTotalData.bAscending );
     485             : 
     486           0 :     if ( rSubTotalData.bUserDef )
     487             :     {
     488           0 :         pBtnUserDef->Check( true );
     489           0 :         pLbUserDef->Enable();
     490           0 :         pLbUserDef->SelectEntryPos( rSubTotalData.nUserIndex );
     491             :     }
     492             :     else
     493             :     {
     494           0 :         pBtnUserDef->Check( false );
     495           0 :         pLbUserDef->Disable();
     496           0 :         pLbUserDef->SelectEntryPos( 0 );
     497             :     }
     498             : 
     499           0 :     CheckHdl( pBtnSort );
     500           0 : }
     501             : 
     502           0 : bool ScTpSubTotalOptions::FillItemSet( SfxItemSet& rArgSet )
     503             : {
     504           0 :     ScSubTotalParam theSubTotalData;            // auslesen, wenn schon teilweise gefuellt
     505           0 :     SfxTabDialog* pDlg = GetTabDialog();
     506           0 :     if ( pDlg )
     507             :     {
     508           0 :         const SfxItemSet* pExample = pDlg->GetExampleSet();
     509             :         const SfxPoolItem* pItem;
     510           0 :         if ( pExample && pExample->GetItemState( nWhichSubTotals, true, &pItem ) == SFX_ITEM_SET )
     511           0 :             theSubTotalData = ((const ScSubTotalItem*)pItem)->GetSubTotalData();
     512             :     }
     513             : 
     514           0 :     theSubTotalData.bPagebreak      = pBtnPagebreak->IsChecked();
     515           0 :     theSubTotalData.bReplace        = true;
     516           0 :     theSubTotalData.bCaseSens       = pBtnCase->IsChecked();
     517           0 :     theSubTotalData.bIncludePattern = pBtnFormats->IsChecked();
     518           0 :     theSubTotalData.bDoSort         = pBtnSort->IsChecked();
     519           0 :     theSubTotalData.bAscending      = pBtnAscending->IsChecked();
     520           0 :     theSubTotalData.bUserDef        = pBtnUserDef->IsChecked();
     521           0 :     theSubTotalData.nUserIndex      = (pBtnUserDef->IsChecked())
     522           0 :                                     ? pLbUserDef->GetSelectEntryPos()
     523           0 :                                     : 0;
     524             : 
     525           0 :     rArgSet.Put( ScSubTotalItem( nWhichSubTotals, &theSubTotalData ) );
     526             : 
     527           0 :     return true;
     528             : }
     529             : 
     530           0 : void ScTpSubTotalOptions::FillUserSortListBox()
     531             : {
     532           0 :     ScUserList* pUserLists = ScGlobal::GetUserList();
     533             : 
     534           0 :     pLbUserDef->Clear();
     535           0 :     if ( pUserLists )
     536             :     {
     537           0 :         size_t nCount = pUserLists->size();
     538           0 :         for ( size_t i=0; i<nCount; ++i )
     539           0 :             pLbUserDef->InsertEntry( (*pUserLists)[i]->GetString() );
     540             :     }
     541           0 : }
     542             : 
     543             : 
     544             : // Handler:
     545             : 
     546           0 : IMPL_LINK( ScTpSubTotalOptions, CheckHdl, CheckBox *, pBox )
     547             : {
     548           0 :     if ( pBox == pBtnSort )
     549             :     {
     550           0 :         if ( pBtnSort->IsChecked() )
     551             :         {
     552           0 :             pFlSort->Enable();
     553           0 :             pBtnFormats->Enable();
     554           0 :             pBtnUserDef->Enable();
     555           0 :             pBtnAscending->Enable();
     556           0 :             pBtnDescending->Enable();
     557             : 
     558           0 :             if ( pBtnUserDef->IsChecked() )
     559           0 :                 pLbUserDef->Enable();
     560             :         }
     561             :         else
     562             :         {
     563           0 :             pFlSort->Disable();
     564           0 :             pBtnFormats->Disable();
     565           0 :             pBtnUserDef->Disable();
     566           0 :             pBtnAscending->Disable();
     567           0 :             pBtnDescending->Disable();
     568           0 :             pLbUserDef->Disable();
     569             :         }
     570             :     }
     571           0 :     else if ( pBox == pBtnUserDef )
     572             :     {
     573           0 :         if ( pBtnUserDef->IsChecked() )
     574             :         {
     575           0 :             pLbUserDef->Enable();
     576           0 :             pLbUserDef->GrabFocus();
     577             :         }
     578             :         else
     579           0 :             pLbUserDef->Disable();
     580             :     }
     581             : 
     582           0 :     return 0;
     583             : }
     584             : 
     585           0 : ScTpSubTotalGroup1::~ScTpSubTotalGroup1()
     586             : {
     587           0 : }
     588             : 
     589           0 : ScTpSubTotalGroup2::~ScTpSubTotalGroup2()
     590             : {
     591           0 : }
     592             : 
     593           0 : ScTpSubTotalGroup3::~ScTpSubTotalGroup3()
     594             : {
     595           0 : }
     596             : 
     597             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10