LCOV - code coverage report
Current view: top level - sw/source/ui/misc - srtdlg.cxx (source / functions) Hit Total Coverage
Test: commit c8344322a7af75b84dd3ca8f78b05543a976dfd5 Lines: 0 290 0.0 %
Date: 2015-06-13 12:38:46 Functions: 0 18 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             : #include <cstdint>
      21             : 
      22             : #include "srtdlg.hxx"
      23             : 
      24             : #include <vcl/lstbox.hxx>
      25             : #include <vcl/msgbox.hxx>
      26             : #include <svl/intitem.hxx>
      27             : #include <svl/eitem.hxx>
      28             : #include <sfx2/dispatch.hxx>
      29             : #include <svx/svxids.hrc>
      30             : #include <editeng/unolingu.hxx>
      31             : #include <svx/svxdlg.hxx>
      32             : #include <svx/dialogs.hrc>
      33             : #include <unotools/collatorwrapper.hxx>
      34             : #include <svtools/collatorres.hxx>
      35             : #include <swwait.hxx>
      36             : #include <view.hxx>
      37             : #include <cmdid.h>
      38             : #include <wrtsh.hxx>
      39             : #include <misc.hrc>
      40             : #include <app.hrc>
      41             : #include <swtable.hxx>
      42             : #include <node.hxx>
      43             : #include <tblsel.hxx>
      44             : #include <sfx2/request.hxx>
      45             : #include <boost/scoped_ptr.hpp>
      46             : 
      47             : static bool bCheck1 = true;
      48             : static bool bCheck2 = false;
      49             : static bool bCheck3 = false;
      50             : 
      51             : static sal_uInt16 nCol1 = 1;
      52             : static sal_uInt16 nCol2 = 1;
      53             : static sal_uInt16 nCol3 = 1;
      54             : 
      55             : static sal_uInt16 nType1 = 0;
      56             : static sal_uInt16 nType2 = 0;
      57             : static sal_uInt16 nType3 = 0;
      58             : 
      59             : static sal_uInt16 nLang = LANGUAGE_NONE;
      60             : 
      61             : static bool   bAsc1  = true;
      62             : static bool   bAsc2  = true;
      63             : static bool   bAsc3  = true;
      64             : static bool   bCol   = false;
      65             : static bool   bCsSens= false;
      66             : 
      67             : static sal_Unicode    cDeli  = '\t';
      68             : 
      69             : using namespace ::com::sun::star::lang;
      70             : using namespace ::com::sun::star::uno;
      71             : using namespace ::com::sun::star;
      72             : 
      73           0 : static void lcl_ClearLstBoxAndDelUserData( ListBox& rLstBox )
      74             : {
      75           0 :     const sal_Int32 nEnd = rLstBox.GetEntryCount();
      76           0 :     for( sal_Int32 n = 0; n < nEnd; ++n )
      77             :     {
      78           0 :         delete static_cast<OUString *>(rLstBox.GetEntryData( n ));
      79             :     }
      80           0 :     rLstBox.Clear();
      81           0 : }
      82             : 
      83             : // determine lines and columns for table selection
      84           0 : static bool lcl_GetSelTable( SwWrtShell &rSh, sal_uInt16& rX, sal_uInt16& rY )
      85             : {
      86           0 :     const SwTableNode* pTableNd = rSh.IsCrsrInTable();
      87           0 :     if( !pTableNd )
      88           0 :         return false;
      89             : 
      90           0 :     _FndBox aFndBox( 0, 0 );
      91             : 
      92             :     // look for all boxes / lines
      93             :     {
      94           0 :         SwSelBoxes aSelBoxes;
      95           0 :         ::GetTableSel( rSh, aSelBoxes );
      96           0 :         _FndPara aPara( aSelBoxes, &aFndBox );
      97           0 :         const SwTable& rTable = pTableNd->GetTable();
      98           0 :         ForEach_FndLineCopyCol( (SwTableLines&)rTable.GetTabLines(), &aPara );
      99             :     }
     100           0 :     rX = aFndBox.GetLines().size();
     101           0 :     if( !rX )
     102           0 :         return false;
     103             : 
     104           0 :     rY = aFndBox.GetLines().front().GetBoxes().size();
     105           0 :     return true;
     106             : }
     107             : 
     108             : // init list
     109           0 : SwSortDlg::SwSortDlg(vcl::Window* pParent, SwWrtShell &rShell)
     110             :     : SvxStandardDialog(pParent, "SortDialog", "modules/swriter/ui/sortdialog.ui")
     111             :     , aColText(SW_RES(STR_COL))
     112             :     , aRowText(SW_RES(STR_ROW))
     113             :     , aNumericText(SW_RES(STR_NUMERIC))
     114             :     , rSh(rShell)
     115             :     , pColRes(0)
     116             :     , nX(99)
     117           0 :     , nY(99)
     118             : {
     119           0 :     get(m_pColLbl, "column");
     120           0 :     get(m_pTypLbl, "keytype");
     121             : 
     122           0 :     get(m_pKeyCB1, "key1");
     123           0 :     get(m_pColEdt1, "colsb1");
     124           0 :     get(m_pTypDLB1, "typelb1");
     125           0 :     get(m_pSortUp1RB, "up1");
     126           0 :     get(m_pSortDn1RB, "down1");
     127             : 
     128           0 :     get(m_pKeyCB2, "key2");
     129           0 :     get(m_pColEdt2, "colsb2");
     130           0 :     get(m_pTypDLB2, "typelb2");
     131           0 :     get(m_pSortUp2RB, "up2");
     132           0 :     get(m_pSortDn2RB, "down2");
     133             : 
     134           0 :     get(m_pKeyCB3, "key3");
     135           0 :     get(m_pColEdt3, "colsb3");
     136           0 :     get(m_pTypDLB3, "typelb3");
     137           0 :     get(m_pSortUp3RB, "up3");
     138           0 :     get(m_pSortDn3RB, "down3");
     139             : 
     140           0 :     get(m_pColumnRB, "columns");
     141           0 :     get(m_pRowRB, "rows");
     142             : 
     143           0 :     get(m_pDelimTabRB, "tabs");
     144           0 :     get(m_pDelimFreeRB, "character");
     145           0 :     get(m_pDelimEdt, "separator");
     146           0 :     get(m_pDelimPB, "delimpb");
     147             : 
     148           0 :     get(m_pLangLB, "langlb");
     149           0 :     get(m_pCaseCB, "matchcase");
     150             : 
     151           0 :     m_pColEdt1->SetAccessibleName(m_pColLbl->GetText());
     152           0 :     m_pColEdt2->SetAccessibleName(m_pColLbl->GetText());
     153           0 :     m_pColEdt3->SetAccessibleName(m_pColLbl->GetText());
     154           0 :     m_pTypDLB1->SetAccessibleName(m_pTypLbl->GetText());
     155           0 :     m_pTypDLB2->SetAccessibleName(m_pTypLbl->GetText());
     156           0 :     m_pTypDLB3->SetAccessibleName(m_pTypLbl->GetText());
     157           0 :     m_pSortUp1RB->SetAccessibleRelationMemberOf(m_pKeyCB1);
     158           0 :     m_pSortDn1RB->SetAccessibleRelationMemberOf(m_pKeyCB1);
     159           0 :     m_pSortUp2RB->SetAccessibleRelationMemberOf(m_pKeyCB2);
     160           0 :     m_pSortDn2RB->SetAccessibleRelationMemberOf(m_pKeyCB2);
     161           0 :     m_pSortUp3RB->SetAccessibleRelationMemberOf(m_pKeyCB3);
     162           0 :     m_pSortDn3RB->SetAccessibleRelationMemberOf(m_pKeyCB3);
     163             : 
     164           0 :     m_pDelimEdt->SetMaxTextLen( 1 );
     165           0 :     if(rSh.GetSelectionType() &
     166             :             (nsSelectionType::SEL_TBL|nsSelectionType::SEL_TBL_CELLS) )
     167             :     {
     168           0 :         m_pColumnRB->Check(bCol);
     169           0 :         m_pColLbl->SetText(bCol ? aRowText : aColText);
     170           0 :         m_pRowRB->Check(!bCol);
     171           0 :         m_pDelimTabRB->Enable(false);
     172           0 :         m_pDelimFreeRB->Enable(false);
     173           0 :         m_pDelimEdt->Enable(false);
     174             :     }
     175             :     else
     176             :     {
     177           0 :         m_pColumnRB->Enable(false);
     178           0 :         m_pRowRB->Check(true);
     179           0 :         m_pColLbl->SetText(aColText);
     180             :     }
     181             : 
     182             :     // initialise
     183           0 :     Link<> aLk = LINK(this,SwSortDlg, CheckHdl);
     184           0 :     m_pKeyCB1->SetClickHdl( aLk );
     185           0 :     m_pKeyCB2->SetClickHdl( aLk );
     186           0 :     m_pKeyCB3->SetClickHdl( aLk );
     187           0 :     m_pColumnRB->SetClickHdl( aLk );
     188           0 :     m_pRowRB->SetClickHdl( aLk );
     189             : 
     190           0 :     aLk = LINK(this,SwSortDlg, DelimHdl);
     191           0 :     m_pDelimFreeRB->SetClickHdl(aLk);
     192           0 :     m_pDelimTabRB->SetClickHdl(aLk);
     193             : 
     194           0 :     m_pDelimPB->SetClickHdl( LINK( this, SwSortDlg, DelimCharHdl ));
     195             : 
     196           0 :     m_pKeyCB1->Check(bCheck1);
     197           0 :     m_pKeyCB2->Check(bCheck2);
     198           0 :     m_pKeyCB3->Check(bCheck3);
     199             : 
     200           0 :     m_pColEdt1->SetValue(nCol1);
     201           0 :     m_pColEdt2->SetValue(nCol2);
     202           0 :     m_pColEdt3->SetValue(nCol3);
     203             : 
     204             :     // first initialise the language, then select the
     205           0 :     if( LANGUAGE_NONE == nLang || LANGUAGE_DONTKNOW == nLang )
     206           0 :         nLang = (sal_uInt16)GetAppLanguage();
     207             : 
     208           0 :     m_pLangLB->SetLanguageList( SvxLanguageListFlags::ALL | SvxLanguageListFlags::ONLY_KNOWN, true, false);
     209           0 :     m_pLangLB->SelectLanguage( nLang );
     210             : 
     211           0 :     LanguageHdl( 0 );
     212           0 :     m_pLangLB->SetSelectHdl( LINK( this, SwSortDlg, LanguageHdl ));
     213             : 
     214           0 :     m_pSortUp1RB->Check(bAsc1);
     215           0 :     m_pSortDn1RB->Check(!bAsc1);
     216           0 :     m_pSortUp2RB->Check(bAsc2);
     217           0 :     m_pSortDn2RB->Check(!bAsc2);
     218           0 :     m_pSortUp3RB->Check(bAsc3);
     219           0 :     m_pSortDn3RB->Check(!bAsc3);
     220             : 
     221           0 :     m_pCaseCB->Check( bCsSens );
     222             : 
     223           0 :     m_pDelimTabRB->Check(cDeli == '\t');
     224           0 :     if(!m_pDelimTabRB->IsChecked())
     225             :     {
     226           0 :         m_pDelimEdt->SetText(OUString(cDeli));
     227           0 :         m_pDelimFreeRB->Check(true);
     228           0 :         DelimHdl(m_pDelimFreeRB);
     229             :     }
     230             :     else
     231           0 :         DelimHdl(m_pDelimTabRB);
     232             : 
     233           0 :     if( ::lcl_GetSelTable( rSh, nX, nY) )
     234             :     {
     235           0 :         sal_uInt16 nMax = m_pRowRB->IsChecked()? nY : nX;
     236           0 :         m_pColEdt1->SetMax(nMax);
     237           0 :         m_pColEdt2->SetMax(nMax);
     238           0 :         m_pColEdt3->SetMax(nMax);
     239             :     }
     240             : 
     241           0 :     m_pDelimPB->SetAccessibleRelationMemberOf(m_pDelimFreeRB);
     242             : 
     243           0 :     m_pColEdt1->SetAccessibleRelationMemberOf(m_pKeyCB1);
     244           0 :     m_pTypDLB1->SetAccessibleRelationMemberOf(m_pKeyCB1);
     245             : 
     246           0 :     m_pColEdt2->SetAccessibleRelationMemberOf(m_pKeyCB2);
     247           0 :     m_pTypDLB2->SetAccessibleRelationMemberOf(m_pKeyCB2);
     248             : 
     249           0 :     m_pColEdt3->SetAccessibleRelationMemberOf(m_pKeyCB3);
     250           0 :     m_pTypDLB3->SetAccessibleRelationMemberOf(m_pKeyCB3);
     251           0 : }
     252             : 
     253           0 : SwSortDlg::~SwSortDlg()
     254             : {
     255           0 :     disposeOnce();
     256           0 : }
     257             : 
     258           0 : void SwSortDlg::dispose()
     259             : {
     260           0 :     ::lcl_ClearLstBoxAndDelUserData(*m_pTypDLB1);
     261           0 :     ::lcl_ClearLstBoxAndDelUserData(*m_pTypDLB2);
     262           0 :     ::lcl_ClearLstBoxAndDelUserData(*m_pTypDLB3);
     263           0 :     delete pColRes;
     264           0 :     m_pColLbl.clear();
     265           0 :     m_pTypLbl.clear();
     266           0 :     m_pKeyCB1.clear();
     267           0 :     m_pColEdt1.clear();
     268           0 :     m_pTypDLB1.clear();
     269           0 :     m_pSortUp1RB.clear();
     270           0 :     m_pSortDn1RB.clear();
     271           0 :     m_pKeyCB2.clear();
     272           0 :     m_pColEdt2.clear();
     273           0 :     m_pTypDLB2.clear();
     274           0 :     m_pSortUp2RB.clear();
     275           0 :     m_pSortDn2RB.clear();
     276           0 :     m_pKeyCB3.clear();
     277           0 :     m_pColEdt3.clear();
     278           0 :     m_pTypDLB3.clear();
     279           0 :     m_pSortUp3RB.clear();
     280           0 :     m_pSortDn3RB.clear();
     281           0 :     m_pColumnRB.clear();
     282           0 :     m_pRowRB.clear();
     283           0 :     m_pDelimTabRB.clear();
     284           0 :     m_pDelimFreeRB.clear();
     285           0 :     m_pDelimEdt.clear();
     286           0 :     m_pDelimPB.clear();
     287           0 :     m_pLangLB.clear();
     288           0 :     m_pCaseCB.clear();
     289           0 :     SvxStandardDialog::dispose();
     290           0 : }
     291             : 
     292           0 : sal_Unicode SwSortDlg::GetDelimChar() const
     293             : {
     294           0 :     sal_Unicode cRet = '\t';
     295           0 :     if( !m_pDelimTabRB->IsChecked() )
     296             :     {
     297           0 :         OUString aTmp( m_pDelimEdt->GetText() );
     298           0 :         if( !aTmp.isEmpty() )
     299           0 :             cRet = aTmp[0];
     300             :     }
     301           0 :     return cRet;
     302             : }
     303             : 
     304             : // pass on to the Core
     305           0 : void SwSortDlg::Apply()
     306             : {
     307             :     // save all settings
     308           0 :     bCheck1 = m_pKeyCB1->IsChecked();
     309           0 :     bCheck2 = m_pKeyCB2->IsChecked();
     310           0 :     bCheck3 = m_pKeyCB3->IsChecked();
     311             : 
     312           0 :     nCol1 = (sal_uInt16)m_pColEdt1->GetValue();
     313           0 :     nCol2 = (sal_uInt16)m_pColEdt2->GetValue();
     314           0 :     nCol3 = (sal_uInt16)m_pColEdt3->GetValue();
     315             : 
     316           0 :     nType1 = m_pTypDLB1->GetSelectEntryPos();
     317           0 :     nType2 = m_pTypDLB2->GetSelectEntryPos();
     318           0 :     nType3 = m_pTypDLB3->GetSelectEntryPos();
     319             : 
     320           0 :     bAsc1 = m_pSortUp1RB->IsChecked();
     321           0 :     bAsc2 = m_pSortUp2RB->IsChecked();
     322           0 :     bAsc3 = m_pSortUp3RB->IsChecked();
     323           0 :     bCol = m_pColumnRB->IsChecked();
     324           0 :     nLang = m_pLangLB->GetSelectLanguage();
     325           0 :     cDeli = GetDelimChar();
     326           0 :     bCsSens = m_pCaseCB->IsChecked();
     327             : 
     328             :     void* pUserData;
     329           0 :     SwSortOptions aOptions;
     330           0 :     if( bCheck1 )
     331             :     {
     332           0 :         OUString sEntry( m_pTypDLB1->GetSelectEntry() );
     333           0 :         if( sEntry == aNumericText )
     334           0 :             sEntry.clear();
     335           0 :         else if( 0 != (pUserData = m_pTypDLB1->GetSelectEntryData()) )
     336           0 :             sEntry = *static_cast<OUString*>(pUserData);
     337             : 
     338             :         SwSortKey *pKey = new SwSortKey( nCol1, sEntry,
     339           0 :                                     bAsc1 ? SRT_ASCENDING : SRT_DESCENDING );
     340           0 :         aOptions.aKeys.push_back( pKey );
     341             :     }
     342             : 
     343           0 :     if( bCheck2 )
     344             :     {
     345           0 :         OUString sEntry( m_pTypDLB2->GetSelectEntry() );
     346           0 :         if( sEntry == aNumericText )
     347           0 :             sEntry.clear();
     348           0 :         else if( 0 != (pUserData = m_pTypDLB2->GetSelectEntryData()) )
     349           0 :             sEntry = *static_cast<OUString*>(pUserData);
     350             : 
     351             :         SwSortKey *pKey = new SwSortKey( nCol2, sEntry,
     352           0 :                                     bAsc2 ? SRT_ASCENDING : SRT_DESCENDING );
     353           0 :         aOptions.aKeys.push_back( pKey );
     354             :     }
     355             : 
     356           0 :     if( bCheck3 )
     357             :     {
     358           0 :         OUString sEntry( m_pTypDLB3->GetSelectEntry() );
     359           0 :         if( sEntry == aNumericText )
     360           0 :             sEntry.clear();
     361           0 :         else if( 0 != (pUserData = m_pTypDLB3->GetSelectEntryData()) )
     362           0 :             sEntry = *static_cast<OUString*>(pUserData);
     363             : 
     364             :         SwSortKey *pKey = new SwSortKey( nCol3, sEntry,
     365           0 :                                     bAsc3 ? SRT_ASCENDING : SRT_DESCENDING );
     366           0 :         aOptions.aKeys.push_back( pKey );
     367             :     }
     368             : 
     369           0 :     aOptions.eDirection =  bCol ? SRT_COLUMNS : SRT_ROWS;
     370           0 :     aOptions.cDeli = cDeli;
     371           0 :     aOptions.nLanguage = nLang;
     372           0 :     aOptions.bTable = rSh.IsTableMode();
     373           0 :     aOptions.bIgnoreCase = !bCsSens;
     374             : 
     375             :     bool bRet;
     376             :     {
     377           0 :         SwWait aWait( *rSh.GetView().GetDocShell(), true );
     378           0 :         rSh.StartAllAction();
     379           0 :         if( (bRet = rSh.Sort( aOptions )))
     380           0 :             rSh.SetModified();
     381           0 :         rSh.EndAllAction();
     382             :     }
     383             : 
     384           0 :     if( !bRet )
     385           0 :         ScopedVclPtrInstance<MessageDialog>::Create( this->GetParent(), SW_RES(STR_SRTERR), VCL_MESSAGE_INFO)->Execute();
     386           0 : }
     387             : 
     388           0 : IMPL_LINK( SwSortDlg, DelimHdl, RadioButton*, pButton )
     389             : {
     390           0 :     bool bEnable = pButton == m_pDelimFreeRB && m_pDelimFreeRB->IsEnabled();
     391           0 :     m_pDelimEdt->Enable( bEnable );
     392           0 :     m_pDelimPB->Enable( bEnable );
     393           0 :     return 0;
     394             : }
     395             : 
     396           0 : IMPL_LINK_NOARG(SwSortDlg, DelimCharHdl)
     397             : {
     398           0 :     SvxAbstractDialogFactory* pFact = SvxAbstractDialogFactory::Create();
     399           0 :     if(pFact)
     400             :     {
     401           0 :         SfxAllItemSet aSet( rSh.GetAttrPool() );
     402           0 :         aSet.Put( SfxInt32Item( SID_ATTR_CHAR, GetDelimChar() ) );
     403             :         boost::scoped_ptr<SfxAbstractDialog> pMap(pFact->CreateSfxDialog( m_pDelimPB, aSet,
     404           0 :             rSh.GetView().GetViewFrame()->GetFrame().GetFrameInterface(), RID_SVXDLG_CHARMAP ));
     405           0 :         if( RET_OK == pMap->Execute() )
     406             :         {
     407           0 :             SFX_ITEMSET_ARG( pMap->GetOutputItemSet(), pItem, SfxInt32Item, SID_ATTR_CHAR, false );
     408           0 :             if ( pItem )
     409           0 :                 m_pDelimEdt->SetText( OUString(pItem->GetValue()) );
     410           0 :         }
     411             :     }
     412           0 :     return 0;
     413             : }
     414             : 
     415           0 : IMPL_LINK( SwSortDlg, CheckHdl, void *, pControl )
     416             : {
     417           0 :     if( pControl == m_pRowRB.get())
     418             :     {
     419           0 :         m_pColLbl->SetText(aColText);
     420           0 :         m_pColEdt1->SetMax(nY);
     421           0 :         m_pColEdt2->SetMax(nY);
     422           0 :         m_pColEdt3->SetMax(nY);
     423             : 
     424           0 :         m_pColEdt1->SetAccessibleName(aColText);
     425           0 :         m_pColEdt2->SetAccessibleName(aColText);
     426           0 :         m_pColEdt3->SetAccessibleName(aColText);
     427             :     }
     428           0 :     else if( pControl == m_pColumnRB.get())
     429             :     {
     430           0 :         m_pColLbl->SetText(aRowText);
     431           0 :         m_pColEdt1->SetMax(nX);
     432           0 :         m_pColEdt2->SetMax(nX);
     433           0 :         m_pColEdt3->SetMax(nX);
     434             : 
     435           0 :         m_pColEdt1->SetAccessibleName(aRowText);
     436           0 :         m_pColEdt2->SetAccessibleName(aRowText);
     437           0 :         m_pColEdt3->SetAccessibleName(aRowText);
     438             :     }
     439           0 :     else if(!m_pKeyCB1->IsChecked() &&
     440           0 :                 !m_pKeyCB2->IsChecked() &&
     441           0 :                     !m_pKeyCB3->IsChecked())
     442           0 :         static_cast<CheckBox *>(pControl)->Check(true);
     443           0 :     return 0;
     444             : }
     445             : 
     446           0 : IMPL_LINK( SwSortDlg, LanguageHdl, ListBox*, pLBox )
     447             : {
     448           0 :     Sequence < OUString > aSeq( GetAppCollator().listCollatorAlgorithms(
     449           0 :                 LanguageTag( m_pLangLB->GetSelectLanguage()).getLocale() ));
     450             : 
     451           0 :     if( !pColRes )
     452           0 :         pColRes = new CollatorResource();
     453             : 
     454           0 :     const int nLstBoxCnt = 3;
     455           0 :     ListBox* aLstArr[ nLstBoxCnt ] = { m_pTypDLB1, m_pTypDLB2, m_pTypDLB3 };
     456           0 :     sal_uInt16* aTypeArr[ nLstBoxCnt ] = { &nType1, &nType2, &nType3 };
     457           0 :     OUString aOldStrArr[ nLstBoxCnt ];
     458             : 
     459           0 :     for( int n = 0; n < nLstBoxCnt; ++n )
     460             :     {
     461           0 :         ListBox* pL = aLstArr[ n ];
     462           0 :         void* pUserData = pL->GetSelectEntryData();
     463           0 :         if (pUserData)
     464           0 :             aOldStrArr[ n ] = *static_cast<OUString*>(pUserData);
     465           0 :         ::lcl_ClearLstBoxAndDelUserData( *pL );
     466             :     }
     467             : 
     468           0 :     OUString sAlg, sUINm;
     469           0 :     const sal_Int32 nEnd = aSeq.getLength();
     470           0 :     for( sal_Int32 nCnt = 0; nCnt <= nEnd; ++nCnt )
     471             :     {
     472           0 :         if( nCnt < nEnd )
     473           0 :             sUINm = pColRes->GetTranslation( sAlg = aSeq[ nCnt ] );
     474             :         else
     475           0 :             sUINm = sAlg = aNumericText;
     476             : 
     477           0 :         for( int n = 0; n < nLstBoxCnt; ++n )
     478             :         {
     479           0 :             ListBox* pL = aLstArr[ n ];
     480           0 :             const sal_Int32 nInsPos = pL->InsertEntry( sUINm );
     481           0 :             pL->SetEntryData( nInsPos, new OUString( sAlg ));
     482           0 :             if( pLBox && sAlg == aOldStrArr[ n ] )
     483           0 :                 pL->SelectEntryPos( nInsPos );
     484             :         }
     485             :     }
     486             : 
     487           0 :     for( int n = 0; n < nLstBoxCnt; ++n )
     488             :     {
     489           0 :         ListBox* pL = aLstArr[ n ];
     490           0 :         if( !pLBox )
     491           0 :             pL->SelectEntryPos( *aTypeArr[n] );
     492           0 :         else if( LISTBOX_ENTRY_NOTFOUND == pL->GetSelectEntryPos() )
     493           0 :             pL->SelectEntryPos( 0 );
     494             :     }
     495           0 :     return 0;
     496           0 : }
     497             : 
     498             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.11