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

Generated by: LCOV version 1.11