LCOV - code coverage report
Current view: top level - svx/source/dialog - checklbx.cxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 1 107 0.9 %
Date: 2014-11-03 Functions: 2 22 9.1 %
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 <svtools/treelistentry.hxx>
      21             : 
      22             : #include <svx/checklbx.hxx>
      23             : #include <svx/dialmgr.hxx>
      24             : 
      25             : #include <svx/dialogs.hrc>
      26             : 
      27             : #include <vcl/builder.hxx>
      28             : 
      29           0 : SvxCheckListBox::SvxCheckListBox( vcl::Window* pParent, WinBits nWinStyle ) :
      30             : 
      31           0 :     SvTreeListBox( pParent, nWinStyle )
      32             : 
      33             : {
      34           0 :     Init_Impl();
      35           0 : }
      36             : 
      37           0 : extern "C" SAL_DLLPUBLIC_EXPORT vcl::Window* SAL_CALL makeSvxCheckListBox(vcl::Window *pParent, VclBuilder::stringmap &rMap)
      38             : {
      39           0 :     WinBits nWinStyle = WB_TABSTOP;
      40           0 :     OString sBorder = VclBuilder::extractCustomProperty(rMap);
      41           0 :     if (!sBorder.isEmpty())
      42           0 :         nWinStyle |= WB_BORDER;
      43           0 :     return new SvxCheckListBox(pParent, nWinStyle);
      44             : }
      45             : 
      46           0 : void SvxCheckListBox::SetNormalStaticImage(const Image& rNormalStaticImage)
      47             : {
      48           0 :     pCheckButton->SetImage(SvBmp::STATICIMAGE, rNormalStaticImage);
      49           0 : }
      50             : 
      51           0 : SvxCheckListBox::~SvxCheckListBox()
      52             : {
      53           0 :     delete pCheckButton;
      54           0 : }
      55             : 
      56           0 : void SvxCheckListBox::Init_Impl()
      57             : {
      58           0 :     pCheckButton = new SvLBoxButtonData( this );
      59           0 :     EnableCheckButton( pCheckButton );
      60           0 : }
      61             : 
      62           0 : void SvxCheckListBox::InsertEntry( const OUString& rStr, sal_uLong nPos,
      63             :                                    void* pUserData,
      64             :                                    SvLBoxButtonKind eButtonKind )
      65             : {
      66             :     SvTreeListBox::InsertEntry( rStr, NULL, false, nPos, pUserData,
      67           0 :                                 eButtonKind );
      68           0 : }
      69             : 
      70             : 
      71             : 
      72           0 : void SvxCheckListBox::RemoveEntry( sal_uLong nPos )
      73             : {
      74           0 :     if ( nPos < GetEntryCount() )
      75           0 :         SvTreeListBox::GetModel()->Remove( GetEntry( nPos ) );
      76           0 : }
      77             : 
      78             : 
      79             : 
      80           0 : void SvxCheckListBox::SelectEntryPos( sal_uLong nPos, bool bSelect )
      81             : {
      82           0 :     if ( nPos < GetEntryCount() )
      83           0 :         Select( GetEntry( nPos ), bSelect );
      84           0 : }
      85             : 
      86             : 
      87             : 
      88           0 : sal_uLong SvxCheckListBox::GetSelectEntryPos() const
      89             : {
      90           0 :     SvTreeListEntry* pEntry = GetCurEntry();
      91             : 
      92           0 :     if ( pEntry )
      93           0 :         return GetModel()->GetAbsPos( pEntry );
      94           0 :     return TREELIST_ENTRY_NOTFOUND;
      95             : }
      96             : 
      97             : 
      98             : 
      99           0 : OUString SvxCheckListBox::GetText( sal_uLong nPos ) const
     100             : {
     101           0 :     SvTreeListEntry* pEntry = GetEntry( nPos );
     102             : 
     103           0 :     if ( pEntry )
     104           0 :         return GetEntryText( pEntry );
     105           0 :     return OUString();
     106             : }
     107             : 
     108             : 
     109             : 
     110           0 : sal_uLong SvxCheckListBox::GetCheckedEntryCount() const
     111             : {
     112           0 :     sal_uLong nCheckCount = 0;
     113           0 :     sal_uLong nCount = GetEntryCount();
     114             : 
     115           0 :     for ( sal_uLong i = 0; i < nCount; ++i )
     116             :     {
     117           0 :         if ( IsChecked( i ) )
     118           0 :             nCheckCount++;
     119             :     }
     120           0 :     return nCheckCount;
     121             : }
     122             : 
     123             : 
     124             : 
     125           0 : void SvxCheckListBox::CheckEntryPos( sal_uLong nPos, bool bCheck )
     126             : {
     127           0 :     if ( nPos < GetEntryCount() )
     128             :         SetCheckButtonState(
     129             :             GetEntry( nPos ), bCheck ? SvButtonState( SV_BUTTON_CHECKED ) :
     130           0 :                                        SvButtonState( SV_BUTTON_UNCHECKED ) );
     131           0 : }
     132             : 
     133             : 
     134             : 
     135           0 : bool SvxCheckListBox::IsChecked( sal_uLong nPos ) const
     136             : {
     137           0 :     if ( nPos < GetEntryCount() )
     138           0 :         return (GetCheckButtonState( GetEntry( nPos ) ) == SV_BUTTON_CHECKED);
     139             :     else
     140           0 :         return false;
     141             : }
     142             : 
     143             : 
     144             : 
     145           0 : void* SvxCheckListBox::SetEntryData ( sal_uLong nPos, void* pNewData )
     146             : {
     147           0 :     void* pOld = NULL;
     148             : 
     149           0 :     if ( nPos < GetEntryCount() )
     150             :     {
     151           0 :         pOld = GetEntry( nPos )->GetUserData();
     152           0 :         GetEntry( nPos )->SetUserData( pNewData );
     153             :     }
     154           0 :     return pOld;
     155             : }
     156             : 
     157             : 
     158             : 
     159           0 : void* SvxCheckListBox::GetEntryData( sal_uLong nPos ) const
     160             : {
     161           0 :     if ( nPos < GetEntryCount() )
     162           0 :         return GetEntry( nPos )->GetUserData();
     163             :     else
     164           0 :         return NULL;
     165             : }
     166             : 
     167             : 
     168             : 
     169           0 : void SvxCheckListBox::ToggleCheckButton( SvTreeListEntry* pEntry )
     170             : {
     171           0 :     if ( pEntry )
     172             :     {
     173           0 :         if ( !IsSelected( pEntry ) )
     174           0 :             Select( pEntry );
     175             :         else
     176           0 :             CheckEntryPos( GetSelectEntryPos(), !IsChecked( GetSelectEntryPos() ) );
     177             :     }
     178           0 : }
     179             : 
     180             : 
     181             : 
     182           0 : void SvxCheckListBox::MouseButtonDown( const MouseEvent& rMEvt )
     183             : {
     184           0 :     if ( rMEvt.IsLeft() )
     185             :     {
     186           0 :         const Point aPnt = rMEvt.GetPosPixel();
     187           0 :         SvTreeListEntry* pEntry = GetEntry( aPnt );
     188             : 
     189           0 :         if ( pEntry )
     190             :         {
     191           0 :             bool bCheck = ( GetCheckButtonState( pEntry ) == SV_BUTTON_CHECKED );
     192           0 :             SvLBoxItem* pItem = GetItem( pEntry, aPnt.X() );
     193             : 
     194           0 :             if (pItem && pItem->GetType() == SV_ITEM_ID_LBOXBUTTON)
     195             :             {
     196           0 :                 SvTreeListBox::MouseButtonDown( rMEvt );
     197           0 :                 Select( pEntry, true );
     198           0 :                 return;
     199             :             }
     200             :             else
     201             :             {
     202           0 :                 ToggleCheckButton( pEntry );
     203           0 :                 SvTreeListBox::MouseButtonDown( rMEvt );
     204             : 
     205             :                 // check if the entry below the mouse changed during the base method call. This is possible if,
     206             :                 // for instance, a handler invoked by the base class tampers with the list entries.
     207           0 :                 const SvTreeListEntry* pNewEntry = GetEntry( aPnt );
     208           0 :                 if ( pNewEntry != pEntry )
     209           0 :                     return;
     210             : 
     211           0 :                 if ( bCheck != ( GetCheckButtonState( pEntry ) == SV_BUTTON_CHECKED ) )
     212           0 :                     CheckButtonHdl();
     213           0 :                 return;
     214             :             }
     215             :         }
     216             :     }
     217           0 :     SvTreeListBox::MouseButtonDown( rMEvt );
     218             : }
     219             : 
     220             : 
     221             : 
     222           0 : void SvxCheckListBox::KeyInput( const KeyEvent& rKEvt )
     223             : {
     224           0 :     const vcl::KeyCode& rKey = rKEvt.GetKeyCode();
     225             : 
     226           0 :     if ( rKey.GetCode() == KEY_RETURN || rKey.GetCode() == KEY_SPACE )
     227             :     {
     228           0 :         SvTreeListEntry* pEntry = GetCurEntry();
     229             : 
     230           0 :         if ( pEntry )
     231             :         {
     232           0 :             bool bCheck = ( GetCheckButtonState( pEntry ) == SV_BUTTON_CHECKED );
     233           0 :             ToggleCheckButton( pEntry );
     234           0 :             if ( bCheck != ( GetCheckButtonState( pEntry ) == SV_BUTTON_CHECKED ) )
     235           0 :                 CheckButtonHdl();
     236             :         }
     237             :     }
     238           0 :     else if ( GetEntryCount() )
     239           0 :         SvTreeListBox::KeyInput( rKEvt );
     240           0 : }
     241             : 
     242             : 
     243             : 
     244           0 : SvTreeListEntry* SvxCheckListBox::InsertEntry( const OUString& rText, SvTreeListEntry* pParent, bool bChildrenOnDemand, sal_uIntPtr nPos, void* pUserData, SvLBoxButtonKind eButtonKind )
     245             : {
     246           0 :     return SvTreeListBox::InsertEntry( rText, pParent, bChildrenOnDemand, nPos, pUserData, eButtonKind );
     247         651 : }
     248             : 
     249             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10