LCOV - code coverage report
Current view: top level - cui/source/options - fontsubs.cxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 0 295 0.0 %
Date: 2014-11-03 Functions: 0 24 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 "sal/config.h"
      21             : 
      22             : #include <officecfg/Office/Common.hxx>
      23             : #include <svtools/ctrltool.hxx>
      24             : #include <svtools/svlbitm.hxx>
      25             : #include <vcl/svapp.hxx>
      26             : #include <vcl/wrkwin.hxx>
      27             : #include <svtools/fontsubstconfig.hxx>
      28             : #include "fontsubs.hxx"
      29             : #include <dialmgr.hxx>
      30             : #include "helpid.hrc"
      31             : #include <cuires.hrc>
      32             : 
      33             : /*********************************************************************/
      34             : /*                                                                   */
      35             : /*  TabPage font replacement                                         */
      36             : /*                                                                   */
      37             : /*********************************************************************/
      38             : 
      39           0 : SvxFontSubstTabPage::SvxFontSubstTabPage( vcl::Window* pParent,
      40             :                                 const SfxItemSet& rSet )
      41             :     : SfxTabPage(pParent, "OptFontsPage", "cui/ui/optfontspage.ui", &rSet)
      42           0 :     , pConfig(new SvtFontSubstConfig)
      43           0 :     , pCheckButtonData(0)
      44             : {
      45           0 :     get(m_pUseTableCB, "usetable");
      46           0 :     get(m_pReplacements, "replacements");
      47           0 :     get(m_pFont1CB, "font1");
      48           0 :     get(m_pFont2CB, "font2");
      49           0 :     m_pFont1CB->SetStyle(m_pFont1CB->GetStyle() | WB_SORT);
      50           0 :     m_pFont2CB->SetStyle(m_pFont2CB->GetStyle() | WB_SORT);
      51           0 :     get(m_pApply, "apply");
      52           0 :     get(m_pDelete, "delete");
      53           0 :     get(m_pFontNameLB, "fontname");
      54           0 :     m_sAutomatic = m_pFontNameLB->GetEntry(0);
      55             :     assert(!m_sAutomatic.isEmpty());
      56           0 :     get(m_pNonPropFontsOnlyCB, "nonpropfontonly");
      57           0 :     get(m_pFontHeightLB, "fontheight");
      58             : 
      59           0 :     SvSimpleTableContainer *pCheckLBContainer = get<SvSimpleTableContainer>("checklb");
      60           0 :     Size aControlSize(248, 75);
      61           0 :     aControlSize = LogicToPixel(aControlSize, MAP_APPFONT);
      62           0 :     pCheckLBContainer->set_width_request(aControlSize.Width());
      63           0 :     pCheckLBContainer->set_height_request(aControlSize.Height());
      64             : 
      65           0 :     m_pCheckLB = new SvxFontSubstCheckListBox(*pCheckLBContainer, 0);
      66           0 :     m_pCheckLB->SetHelpId(HID_OFA_FONT_SUBST_CLB);
      67             : 
      68           0 :     m_pCheckLB->SetStyle(m_pCheckLB->GetStyle()|WB_HSCROLL|WB_VSCROLL);
      69           0 :     m_pCheckLB->SetSelectionMode(MULTIPLE_SELECTION);
      70           0 :     m_pCheckLB->SortByCol(2);
      71           0 :     long aStaticTabs[] = { 4, 0, 0, 0, 0 };
      72           0 :     m_pCheckLB->SvSimpleTable::SetTabs(&aStaticTabs[0]);
      73             : 
      74           0 :     OUString sHeader1(get<FixedText>("always")->GetText());
      75           0 :     OUString sHeader2(get<FixedText>("screenonly")->GetText());
      76           0 :     OUStringBuffer sHeader;
      77           0 :     sHeader.append(sHeader1).append("\t").append(sHeader2)
      78           0 :         .append("\t ").append(get<FixedText>("font")->GetText())
      79           0 :         .append("\t ").append(get<FixedText>("replacewith")->GetText());
      80           0 :     m_pCheckLB->InsertHeaderEntry(sHeader.makeStringAndClear());
      81             : 
      82           0 :     HeaderBar &rBar = m_pCheckLB->GetTheHeaderBar();
      83           0 :     HeaderBarItemBits nBits = rBar.GetItemBits(1) | HIB_FIXEDPOS | HIB_FIXED;
      84           0 :     nBits &= ~HIB_CLICKABLE;
      85           0 :     rBar.SetItemBits(1, nBits);
      86           0 :     rBar.SetItemBits(2, nBits);
      87             : 
      88           0 :     m_pCheckLB->setColSizes();
      89             : 
      90           0 :     aTextColor = m_pCheckLB->GetTextColor();
      91           0 :     Link aLink(LINK(this, SvxFontSubstTabPage, SelectHdl));
      92             : 
      93           0 :     m_pCheckLB->SetSelectHdl(aLink);
      94           0 :     m_pUseTableCB->SetClickHdl(aLink);
      95           0 :     m_pFont1CB->SetSelectHdl(aLink);
      96           0 :     m_pFont1CB->SetModifyHdl(aLink);
      97           0 :     m_pFont2CB->SetSelectHdl(aLink);
      98           0 :     m_pFont2CB->SetModifyHdl(aLink);
      99           0 :     m_pApply->SetClickHdl(aLink);
     100           0 :     m_pDelete->SetClickHdl(aLink);
     101             : 
     102           0 :     m_pNonPropFontsOnlyCB->SetClickHdl(LINK(this, SvxFontSubstTabPage, NonPropFontsHdl));
     103             : 
     104             :     sal_uInt16 nHeight;
     105           0 :     for(nHeight = 6; nHeight <= 16; nHeight++)
     106           0 :         m_pFontHeightLB->InsertEntry(OUString::number(nHeight));
     107           0 :     for(nHeight = 18; nHeight <= 28; nHeight+= 2)
     108           0 :         m_pFontHeightLB->InsertEntry(OUString::number(nHeight));
     109           0 :     for(nHeight = 32; nHeight <= 48; nHeight+= 4)
     110           0 :         m_pFontHeightLB->InsertEntry(OUString::number(nHeight));
     111           0 :     for(nHeight = 54; nHeight <= 72; nHeight+= 6)
     112           0 :         m_pFontHeightLB->InsertEntry(OUString::number(nHeight));
     113           0 :     for(nHeight = 80; nHeight <= 96; nHeight+= 8)
     114           0 :         m_pFontHeightLB->InsertEntry(OUString::number(nHeight));
     115           0 : }
     116             : 
     117           0 : SvTreeListEntry* SvxFontSubstTabPage::CreateEntry(OUString& rFont1, OUString& rFont2)
     118             : {
     119           0 :     SvTreeListEntry* pEntry = new SvTreeListEntry;
     120             : 
     121           0 :     if( !pCheckButtonData )
     122           0 :         pCheckButtonData = new SvLBoxButtonData( m_pCheckLB );
     123             : 
     124           0 :     pEntry->AddItem( new SvLBoxContextBmp( pEntry, 0, Image(), Image(), false));    // Sonst Puff!
     125             : 
     126             :     pEntry->AddItem( new SvLBoxButton( pEntry,
     127             :                                            SvLBoxButtonKind_enabledCheckbox, 0,
     128           0 :                                            pCheckButtonData ) );
     129             :     pEntry->AddItem( new SvLBoxButton( pEntry,
     130             :                                            SvLBoxButtonKind_enabledCheckbox, 0,
     131           0 :                                            pCheckButtonData ) );
     132             : 
     133           0 :     pEntry->AddItem( new SvLBoxString( pEntry, 0, rFont1 ) );
     134           0 :     pEntry->AddItem( new SvLBoxString( pEntry, 0, rFont2 ) );
     135             : 
     136           0 :     return pEntry;
     137             : }
     138             : 
     139           0 : SvxFontSubstTabPage::~SvxFontSubstTabPage()
     140             : {
     141           0 :     delete pCheckButtonData;
     142           0 :     delete pConfig;
     143           0 :     delete m_pCheckLB;
     144           0 : }
     145             : 
     146           0 : SfxTabPage*  SvxFontSubstTabPage::Create( vcl::Window* pParent,
     147             :                                 const SfxItemSet* rAttrSet)
     148             : {
     149           0 :     return new SvxFontSubstTabPage(pParent, *rAttrSet);
     150             : }
     151             : 
     152           0 : bool  SvxFontSubstTabPage::FillItemSet( SfxItemSet* )
     153             : {
     154           0 :     pConfig->ClearSubstitutions();// remove all entries
     155             : 
     156           0 :     pConfig->Enable(m_pUseTableCB->IsChecked());
     157             : 
     158           0 :     SvTreeListEntry* pEntry = m_pCheckLB->First();
     159             : 
     160           0 :     while (pEntry)
     161             :     {
     162           0 :         SubstitutionStruct aAdd;
     163           0 :         aAdd.sFont = m_pCheckLB->GetEntryText(pEntry, 0);
     164           0 :         aAdd.sReplaceBy = m_pCheckLB->GetEntryText(pEntry, 1);
     165           0 :         aAdd.bReplaceAlways = m_pCheckLB->IsChecked(pEntry, 0);
     166           0 :         aAdd.bReplaceOnScreenOnly = m_pCheckLB->IsChecked(pEntry, 1);
     167           0 :         pConfig->AddSubstitution(aAdd);
     168           0 :         pEntry = m_pCheckLB->Next(pEntry);
     169           0 :     }
     170           0 :     if(pConfig->IsModified())
     171           0 :         pConfig->Commit();
     172           0 :     pConfig->Apply();
     173             :     boost::shared_ptr< comphelper::ConfigurationChanges > batch(
     174           0 :         comphelper::ConfigurationChanges::create());
     175           0 :     if(m_pFontHeightLB->IsValueChangedFromSaved())
     176             :         officecfg::Office::Common::Font::SourceViewFont::FontHeight::set(
     177           0 :             static_cast< sal_Int16 >(m_pFontHeightLB->GetSelectEntry().toInt32()),
     178           0 :             batch);
     179           0 :     if(m_pNonPropFontsOnlyCB->IsValueChangedFromSaved())
     180             :         officecfg::Office::Common::Font::SourceViewFont::
     181             :             NonProportionalFontsOnly::set(
     182           0 :                 m_pNonPropFontsOnlyCB->IsChecked(), batch);
     183             :     //font name changes cannot be detected by saved values
     184           0 :     OUString sFontName;
     185           0 :     if(m_pFontNameLB->GetSelectEntryPos())
     186           0 :         sFontName = m_pFontNameLB->GetSelectEntry();
     187             :     officecfg::Office::Common::Font::SourceViewFont::FontName::set(
     188           0 :         boost::optional< OUString >(sFontName), batch);
     189           0 :     batch->commit();
     190             : 
     191           0 :     return false;
     192             : }
     193             : 
     194           0 : void  SvxFontSubstTabPage::Reset( const SfxItemSet* )
     195             : {
     196           0 :     m_pCheckLB->SetUpdateMode(false);
     197           0 :     m_pCheckLB->Clear();
     198             : 
     199           0 :     FontList aFntLst( Application::GetDefaultDevice() );
     200           0 :     m_pFont1CB->Fill( &aFntLst );
     201           0 :     m_pFont2CB->Fill( &aFntLst );
     202             : 
     203           0 :     sal_Int32 nCount = pConfig->SubstitutionCount();
     204           0 :     if (nCount)
     205           0 :         m_pUseTableCB->Check(pConfig->IsEnabled());
     206             : 
     207           0 :     for (sal_Int32  i = 0; i < nCount; ++i)
     208             :     {
     209           0 :         const SubstitutionStruct* pSubs = pConfig->GetSubstitution(i);
     210           0 :         OUString aTmpStr1(pSubs->sFont);
     211           0 :         OUString aTmpStr2(pSubs->sReplaceBy);
     212           0 :         SvTreeListEntry* pEntry = CreateEntry(aTmpStr1, aTmpStr2);
     213           0 :         m_pCheckLB->Insert(pEntry);
     214           0 :         m_pCheckLB->CheckEntry(pEntry, 0, pSubs->bReplaceAlways);
     215           0 :         m_pCheckLB->CheckEntry(pEntry, 1, pSubs->bReplaceOnScreenOnly);
     216           0 :     }
     217             : 
     218           0 :     CheckEnable();
     219           0 :     m_pCheckLB->SetUpdateMode(true);
     220             : 
     221             :     //fill font name box first
     222             :     m_pNonPropFontsOnlyCB->Check(
     223             :         officecfg::Office::Common::Font::SourceViewFont::
     224           0 :         NonProportionalFontsOnly::get());
     225           0 :     NonPropFontsHdl(m_pNonPropFontsOnlyCB);
     226             :     OUString sFontName(
     227             :         officecfg::Office::Common::Font::SourceViewFont::FontName::get().
     228           0 :         get_value_or(OUString()));
     229           0 :     if(!sFontName.isEmpty())
     230           0 :         m_pFontNameLB->SelectEntry(sFontName);
     231             :     else
     232           0 :         m_pFontNameLB->SelectEntryPos(0);
     233             :     m_pFontHeightLB->SelectEntry(
     234             :         OUString::number(
     235             :             officecfg::Office::Common::Font::SourceViewFont::FontHeight::
     236           0 :             get()));
     237           0 :     m_pNonPropFontsOnlyCB->SaveValue();
     238           0 :     m_pFontHeightLB->SaveValue();
     239           0 : }
     240             : 
     241           0 : IMPL_LINK(SvxFontSubstTabPage, SelectHdl, vcl::Window*, pWin)
     242             : {
     243           0 :     if (pWin == m_pApply || pWin == m_pDelete)
     244             :     {
     245             :         SvTreeListEntry* pEntry;
     246             :         // nCol is stupidly the nCol'th text column, not counted!
     247             :         // Therefore "0" as column.
     248           0 :         sal_uLong nPos = m_pCheckLB->GetEntryPos(m_pFont1CB->GetText(), 0);
     249             : 
     250           0 :         if (pWin == m_pApply)
     251             :         {
     252           0 :             if (nPos != 0xffffffff)
     253             :             {
     254             :                 // change entry
     255           0 :                 m_pCheckLB->SetEntryText(m_pFont2CB->GetText(), nPos, 1);
     256           0 :                 pEntry = m_pCheckLB->GetEntry(nPos);
     257             :             }
     258             :             else
     259             :             {
     260             :                 // new entry
     261           0 :                 OUString sFont1 = m_pFont1CB->GetText();
     262           0 :                 OUString sFont2 = m_pFont2CB->GetText();
     263             : 
     264           0 :                 pEntry = CreateEntry(sFont1, sFont2);
     265           0 :                 m_pCheckLB->Insert(pEntry);
     266             :             }
     267           0 :             m_pCheckLB->SelectAll(false);
     268           0 :             m_pCheckLB->Select(pEntry);
     269             :         }
     270           0 :         else if (pWin == m_pDelete)
     271             :         {
     272           0 :             if (nPos != 0xffffffff)
     273             :             {
     274           0 :                 pEntry = m_pCheckLB->FirstSelected();
     275           0 :                 while (pEntry)
     276             :                 {
     277           0 :                     SvTreeListEntry* pDelEntry = pEntry;
     278           0 :                     pEntry = m_pCheckLB->NextSelected(pEntry);
     279           0 :                     m_pCheckLB->RemoveEntry(pDelEntry);
     280             :                 }
     281             :             }
     282             :         }
     283             :     }
     284             : 
     285           0 :     if (pWin == m_pCheckLB)
     286             :     {
     287           0 :         SvTreeListEntry* pEntry = m_pCheckLB->FirstSelected();
     288             : 
     289           0 :         if (m_pCheckLB->NextSelected(pEntry) == 0)
     290             :         {
     291           0 :             m_pFont1CB->SetText(m_pCheckLB->GetEntryText(pEntry, 0));
     292           0 :             m_pFont2CB->SetText(m_pCheckLB->GetEntryText(pEntry, 1));
     293             :         }
     294             :     }
     295             : 
     296           0 :     if (pWin == m_pFont1CB)
     297             :     {
     298           0 :         sal_uLong nPos = m_pCheckLB->GetEntryPos(m_pFont1CB->GetText(), 0);
     299             : 
     300           0 :         if (nPos != 0xffffffff)
     301             :         {
     302           0 :             SvTreeListEntry* pEntry = m_pCheckLB->GetEntry(nPos);
     303             : 
     304           0 :             if (pEntry != m_pCheckLB->FirstSelected())
     305             :             {
     306           0 :                 m_pCheckLB->SelectAll(false);
     307           0 :                 m_pCheckLB->Select(pEntry);
     308             :             }
     309             :         }
     310             :     }
     311             : 
     312           0 :     CheckEnable();
     313             : 
     314           0 :     return 0;
     315             : }
     316             : 
     317             : 
     318           0 : IMPL_LINK(SvxFontSubstTabPage, NonPropFontsHdl, CheckBox*, pBox)
     319             : {
     320           0 :     OUString sFontName = m_pFontNameLB->GetSelectEntry();
     321           0 :     bool bNonPropOnly = pBox->IsChecked();
     322           0 :     m_pFontNameLB->Clear();
     323           0 :     FontList aFntLst( Application::GetDefaultDevice() );
     324           0 :     m_pFontNameLB->InsertEntry(m_sAutomatic);
     325           0 :     sal_uInt16 nFontCount = aFntLst.GetFontNameCount();
     326           0 :     for(sal_uInt16 nFont = 0; nFont < nFontCount; nFont++)
     327             :     {
     328           0 :         const vcl::FontInfo& rInfo = aFntLst.GetFontName( nFont );
     329           0 :         if(!bNonPropOnly || rInfo.GetPitch() == PITCH_FIXED)
     330           0 :             m_pFontNameLB->InsertEntry(rInfo.GetName());
     331             :     }
     332           0 :     m_pFontNameLB->SelectEntry(sFontName);
     333           0 :     return 0;
     334             : }
     335             : 
     336           0 : void SvxFontSubstTabPage::CheckEnable()
     337             : {
     338           0 :     bool bEnableAll = m_pUseTableCB->IsChecked();
     339           0 :     m_pReplacements->Enable(bEnableAll);
     340           0 :     if (bEnableAll)
     341             :     {
     342             :         bool bApply, bDelete;
     343             : 
     344           0 :         SvTreeListEntry* pEntry = m_pCheckLB->FirstSelected();
     345             : 
     346           0 :         OUString sEntry = m_pFont1CB->GetText();
     347           0 :         sEntry += "\t";
     348           0 :         sEntry += m_pFont2CB->GetText();
     349             : 
     350             :         // because of OS/2 optimization error (Bug #56267) a bit more intricate:
     351           0 :         if (m_pFont1CB->GetText().isEmpty() || m_pFont2CB->GetText().isEmpty())
     352           0 :             bApply = false;
     353           0 :         else if(m_pFont1CB->GetText() == m_pFont2CB->GetText())
     354           0 :             bApply = false;
     355           0 :         else if(m_pCheckLB->GetEntryPos(sEntry) != 0xffffffff)
     356           0 :             bApply = false;
     357           0 :         else if(pEntry != 0 && m_pCheckLB->NextSelected(pEntry) != 0)
     358           0 :             bApply = false;
     359             :         else
     360           0 :             bApply = true;
     361             : 
     362           0 :         bDelete = pEntry != 0;
     363             : 
     364           0 :         m_pApply->Enable(bApply);
     365           0 :         m_pDelete->Enable(bDelete);
     366             :     }
     367             : 
     368           0 :     if (bEnableAll)
     369             :     {
     370           0 :         if (!m_pCheckLB->IsEnabled())
     371             :         {
     372           0 :             m_pCheckLB->EnableTable();
     373           0 :             m_pCheckLB->SetTextColor(aTextColor);
     374           0 :             m_pCheckLB->Invalidate();
     375           0 :             SelectHdl(m_pFont1CB);
     376             :         }
     377             :     }
     378             :     else
     379             :     {
     380           0 :         if (m_pCheckLB->IsEnabled())
     381             :         {
     382           0 :             m_pCheckLB->DisableTable();
     383           0 :             m_pCheckLB->SetTextColor(Color(COL_GRAY));
     384           0 :             m_pCheckLB->Invalidate();
     385           0 :             m_pCheckLB->SelectAll(false);
     386             :         }
     387             :     }
     388           0 : }
     389             : 
     390           0 : void SvxFontSubstCheckListBox::setColSizes()
     391             : {
     392           0 :     HeaderBar &rBar = GetTheHeaderBar();
     393           0 :     if (rBar.GetItemCount() < 4)
     394           0 :         return;
     395           0 :     long nW1 = rBar.GetTextWidth(rBar.GetItemText(3));
     396           0 :     long nW2 = rBar.GetTextWidth(rBar.GetItemText(4));
     397           0 :     long nMax = std::max( nW1, nW2 ) + 6; // width of the longest header + a little offset
     398           0 :     long nMin = rBar.LogicToPixel(Size(10, 0), MAP_APPFONT).Width();
     399           0 :     nMax = std::max( nMax, nMin );
     400           0 :     const long nDoubleMax = 2*nMax;
     401           0 :     const long nRest = GetSizePixel().Width() - nDoubleMax;
     402           0 :     long aStaticTabs[] = { 4, 0, 0, 0, 0 };
     403           0 :     aStaticTabs[2] = nMax;
     404           0 :     aStaticTabs[3] = nDoubleMax;
     405           0 :     aStaticTabs[4] = nDoubleMax + nRest/2;
     406           0 :     SvSimpleTable::SetTabs(aStaticTabs, MAP_PIXEL);
     407             : }
     408             : 
     409           0 : void SvxFontSubstCheckListBox::Resize()
     410             : {
     411           0 :     SvSimpleTable::Resize();
     412           0 :     setColSizes();
     413           0 : }
     414             : 
     415           0 : void SvxFontSubstCheckListBox::SetTabs()
     416             : {
     417           0 :     SvSimpleTable::SetTabs();
     418           0 :     sal_uInt16 nAdjust = SV_LBOXTAB_ADJUST_RIGHT|SV_LBOXTAB_ADJUST_LEFT|SV_LBOXTAB_ADJUST_CENTER|SV_LBOXTAB_ADJUST_NUMERIC|SV_LBOXTAB_FORCE;
     419             : 
     420           0 :     SvLBoxTab* pTab = aTabs[1];
     421           0 :     pTab->nFlags &= ~nAdjust;
     422           0 :     pTab->nFlags |= SV_LBOXTAB_PUSHABLE|SV_LBOXTAB_ADJUST_CENTER|SV_LBOXTAB_FORCE;
     423             : 
     424           0 :     pTab = aTabs[2];
     425           0 :     pTab->nFlags &= ~nAdjust;
     426           0 :     pTab->nFlags |= SV_LBOXTAB_PUSHABLE|SV_LBOXTAB_ADJUST_CENTER|SV_LBOXTAB_FORCE;
     427           0 : }
     428             : 
     429           0 : void    SvxFontSubstCheckListBox::KeyInput( const KeyEvent& rKEvt )
     430             : {
     431           0 :     if(!rKEvt.GetKeyCode().GetModifier() &&
     432           0 :         KEY_SPACE == rKEvt.GetKeyCode().GetCode())
     433             :     {
     434           0 :         sal_uLong nSelPos = GetModel()->GetAbsPos(GetCurEntry());
     435           0 :         sal_uInt16 nCol = GetCurrentTabPos() - 1;
     436           0 :         if ( nCol < 2 )
     437             :         {
     438           0 :             CheckEntryPos( nSelPos, nCol, !IsChecked( nSelPos, nCol ) );
     439           0 :             CallImplEventListeners( VCLEVENT_CHECKBOX_TOGGLE, (void*)GetEntry( nSelPos ) );
     440             :         }
     441             :         else
     442             :         {
     443           0 :             sal_uInt16 nCheck = IsChecked(nSelPos, 1) ? 1 : 0;
     444           0 :             if(IsChecked(nSelPos, 0))
     445           0 :                 nCheck += 2;
     446           0 :             nCheck--;
     447           0 :             nCheck &= 3;
     448           0 :             CheckEntryPos(nSelPos, 1, 0 != (nCheck & 1));
     449           0 :             CheckEntryPos(nSelPos, 0, 0 != (nCheck & 2));
     450             :         }
     451             :     }
     452             :     else
     453           0 :         SvSimpleTable::KeyInput(rKEvt);
     454           0 : }
     455             : 
     456           0 : void SvxFontSubstCheckListBox::CheckEntryPos(sal_uLong nPos, sal_uInt16 nCol, bool bChecked)
     457             : {
     458           0 :     if ( nPos < GetEntryCount() )
     459             :         SetCheckButtonState(
     460             :             GetEntry(nPos),
     461             :             nCol,
     462             :             bChecked ? SvButtonState( SV_BUTTON_CHECKED ) :
     463           0 :                                        SvButtonState( SV_BUTTON_UNCHECKED ) );
     464           0 : }
     465             : 
     466           0 : void SvxFontSubstCheckListBox::CheckEntry(SvTreeListEntry* pEntry, sal_uInt16 nCol, bool bChecked)
     467             : {
     468           0 :     if ( pEntry )
     469             :         SetCheckButtonState(
     470             :             pEntry,
     471             :             nCol,
     472             :             bChecked ? SvButtonState( SV_BUTTON_CHECKED ) :
     473           0 :                                        SvButtonState( SV_BUTTON_UNCHECKED ) );
     474           0 : }
     475             : 
     476           0 : bool SvxFontSubstCheckListBox::IsChecked(sal_uLong nPos, sal_uInt16 nCol)
     477             : {
     478           0 :     return GetCheckButtonState( GetEntry(nPos), nCol ) == SV_BUTTON_CHECKED;
     479             : }
     480             : 
     481           0 : bool SvxFontSubstCheckListBox::IsChecked(SvTreeListEntry* pEntry, sal_uInt16 nCol)
     482             : {
     483           0 :     return GetCheckButtonState( pEntry, nCol ) == SV_BUTTON_CHECKED;
     484             : }
     485             : 
     486           0 : void SvxFontSubstCheckListBox::SetCheckButtonState( SvTreeListEntry* pEntry, sal_uInt16 nCol, SvButtonState eState)
     487             : {
     488           0 :     SvLBoxButton* pItem = static_cast<SvLBoxButton*>(pEntry->GetItem(nCol + 1));
     489             : 
     490             :     DBG_ASSERT(pItem,"SetCheckButton:Item not found");
     491           0 :     if (pItem->GetType() == SV_ITEM_ID_LBOXBUTTON)
     492             :     {
     493           0 :         switch( eState )
     494             :         {
     495             :             case SV_BUTTON_CHECKED:
     496           0 :                 pItem->SetStateChecked();
     497           0 :                 break;
     498             : 
     499             :             case SV_BUTTON_UNCHECKED:
     500           0 :                 pItem->SetStateUnchecked();
     501           0 :                 break;
     502             : 
     503             :             case SV_BUTTON_TRISTATE:
     504           0 :                 pItem->SetStateTristate();
     505           0 :                 break;
     506             :         }
     507           0 :         InvalidateEntry( pEntry );
     508             :     }
     509           0 : }
     510             : 
     511           0 : SvButtonState SvxFontSubstCheckListBox::GetCheckButtonState( SvTreeListEntry* pEntry, sal_uInt16 nCol ) const
     512             : {
     513           0 :     SvButtonState eState = SV_BUTTON_UNCHECKED;
     514           0 :     SvLBoxButton* pItem = static_cast<SvLBoxButton*>(pEntry->GetItem(nCol + 1));
     515             :     DBG_ASSERT(pItem,"GetChButnState:Item not found");
     516             : 
     517           0 :     if (pItem->GetType() == SV_ITEM_ID_LBOXBUTTON)
     518             :     {
     519           0 :         sal_uInt16 nButtonFlags = pItem->GetButtonFlags();
     520           0 :         eState = pCheckButtonData->ConvertToButtonState( nButtonFlags );
     521             :     }
     522             : 
     523           0 :     return eState;
     524           0 : }
     525             : 
     526             : 
     527             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10