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

Generated by: LCOV version 1.10