1*cdf0e10cSrcweir /************************************************************************* 2*cdf0e10cSrcweir * 3*cdf0e10cSrcweir * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4*cdf0e10cSrcweir * 5*cdf0e10cSrcweir * Copyright 2000, 2010 Oracle and/or its affiliates. 6*cdf0e10cSrcweir * 7*cdf0e10cSrcweir * OpenOffice.org - a multi-platform office productivity suite 8*cdf0e10cSrcweir * 9*cdf0e10cSrcweir * This file is part of OpenOffice.org. 10*cdf0e10cSrcweir * 11*cdf0e10cSrcweir * OpenOffice.org is free software: you can redistribute it and/or modify 12*cdf0e10cSrcweir * it under the terms of the GNU Lesser General Public License version 3 13*cdf0e10cSrcweir * only, as published by the Free Software Foundation. 14*cdf0e10cSrcweir * 15*cdf0e10cSrcweir * OpenOffice.org is distributed in the hope that it will be useful, 16*cdf0e10cSrcweir * but WITHOUT ANY WARRANTY; without even the implied warranty of 17*cdf0e10cSrcweir * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18*cdf0e10cSrcweir * GNU Lesser General Public License version 3 for more details 19*cdf0e10cSrcweir * (a copy is included in the LICENSE file that accompanied this code). 20*cdf0e10cSrcweir * 21*cdf0e10cSrcweir * You should have received a copy of the GNU Lesser General Public License 22*cdf0e10cSrcweir * version 3 along with OpenOffice.org. If not, see 23*cdf0e10cSrcweir * <http://www.openoffice.org/license.html> 24*cdf0e10cSrcweir * for a copy of the LGPLv3 License. 25*cdf0e10cSrcweir * 26*cdf0e10cSrcweir ************************************************************************/ 27*cdf0e10cSrcweir 28*cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove 29*cdf0e10cSrcweir #include "precompiled_svx.hxx" 30*cdf0e10cSrcweir 31*cdf0e10cSrcweir // include --------------------------------------------------------------- 32*cdf0e10cSrcweir #include <tools/shl.hxx> 33*cdf0e10cSrcweir 34*cdf0e10cSrcweir #define _SVX_CHECKLBX_CXX 35*cdf0e10cSrcweir 36*cdf0e10cSrcweir #include <svx/checklbx.hxx> 37*cdf0e10cSrcweir #include <svx/dialmgr.hxx> 38*cdf0e10cSrcweir 39*cdf0e10cSrcweir #include <svx/dialogs.hrc> 40*cdf0e10cSrcweir 41*cdf0e10cSrcweir // class SvxCheckListBox ------------------------------------------------- 42*cdf0e10cSrcweir 43*cdf0e10cSrcweir SvxCheckListBox::SvxCheckListBox( Window* pParent, WinBits nWinStyle ) : 44*cdf0e10cSrcweir 45*cdf0e10cSrcweir SvTreeListBox( pParent, nWinStyle ) 46*cdf0e10cSrcweir 47*cdf0e10cSrcweir { 48*cdf0e10cSrcweir Init_Impl(); 49*cdf0e10cSrcweir } 50*cdf0e10cSrcweir 51*cdf0e10cSrcweir // ----------------------------------------------------------------------- 52*cdf0e10cSrcweir 53*cdf0e10cSrcweir SvxCheckListBox::SvxCheckListBox( Window* pParent, const ResId& rResId ) : 54*cdf0e10cSrcweir 55*cdf0e10cSrcweir SvTreeListBox( pParent, rResId ) 56*cdf0e10cSrcweir 57*cdf0e10cSrcweir { 58*cdf0e10cSrcweir Init_Impl(); 59*cdf0e10cSrcweir } 60*cdf0e10cSrcweir 61*cdf0e10cSrcweir // ----------------------------------------------------------------------- 62*cdf0e10cSrcweir 63*cdf0e10cSrcweir SvxCheckListBox::SvxCheckListBox( Window* pParent, const ResId& rResId, 64*cdf0e10cSrcweir const Image& rNormalStaticImage, 65*cdf0e10cSrcweir const Image& /*TODO#i72485# rHighContrastStaticImage*/ ) : 66*cdf0e10cSrcweir 67*cdf0e10cSrcweir SvTreeListBox( pParent, rResId ) 68*cdf0e10cSrcweir 69*cdf0e10cSrcweir { 70*cdf0e10cSrcweir Init_Impl(); 71*cdf0e10cSrcweir pCheckButton->aBmps[SV_BMP_STATICIMAGE] = rNormalStaticImage; 72*cdf0e10cSrcweir } 73*cdf0e10cSrcweir 74*cdf0e10cSrcweir // ----------------------------------------------------------------------- 75*cdf0e10cSrcweir 76*cdf0e10cSrcweir SvxCheckListBox::~SvxCheckListBox() 77*cdf0e10cSrcweir { 78*cdf0e10cSrcweir delete pCheckButton; 79*cdf0e10cSrcweir } 80*cdf0e10cSrcweir 81*cdf0e10cSrcweir // ----------------------------------------------------------------------- 82*cdf0e10cSrcweir 83*cdf0e10cSrcweir void SvxCheckListBox::Init_Impl() 84*cdf0e10cSrcweir { 85*cdf0e10cSrcweir pCheckButton = new SvLBoxButtonData( this ); 86*cdf0e10cSrcweir EnableCheckButton( pCheckButton ); 87*cdf0e10cSrcweir } 88*cdf0e10cSrcweir 89*cdf0e10cSrcweir // ----------------------------------------------------------------------- 90*cdf0e10cSrcweir 91*cdf0e10cSrcweir void SvxCheckListBox::InsertEntry( const String& rStr, sal_uInt16 nPos, 92*cdf0e10cSrcweir void* pUserData, 93*cdf0e10cSrcweir SvLBoxButtonKind eButtonKind ) 94*cdf0e10cSrcweir { 95*cdf0e10cSrcweir SvTreeListBox::InsertEntry( rStr, NULL, sal_False, nPos, pUserData, 96*cdf0e10cSrcweir eButtonKind ); 97*cdf0e10cSrcweir } 98*cdf0e10cSrcweir 99*cdf0e10cSrcweir // ----------------------------------------------------------------------- 100*cdf0e10cSrcweir 101*cdf0e10cSrcweir void SvxCheckListBox::RemoveEntry( sal_uInt16 nPos ) 102*cdf0e10cSrcweir { 103*cdf0e10cSrcweir if ( nPos < GetEntryCount() ) 104*cdf0e10cSrcweir SvTreeListBox::GetModel()->Remove( GetEntry( nPos ) ); 105*cdf0e10cSrcweir } 106*cdf0e10cSrcweir 107*cdf0e10cSrcweir // ----------------------------------------------------------------------- 108*cdf0e10cSrcweir 109*cdf0e10cSrcweir void SvxCheckListBox::SelectEntryPos( sal_uInt16 nPos, sal_Bool bSelect ) 110*cdf0e10cSrcweir { 111*cdf0e10cSrcweir if ( nPos < GetEntryCount() ) 112*cdf0e10cSrcweir Select( GetEntry( nPos ), bSelect ); 113*cdf0e10cSrcweir } 114*cdf0e10cSrcweir 115*cdf0e10cSrcweir // ----------------------------------------------------------------------- 116*cdf0e10cSrcweir 117*cdf0e10cSrcweir sal_uInt16 SvxCheckListBox::GetSelectEntryPos() const 118*cdf0e10cSrcweir { 119*cdf0e10cSrcweir SvLBoxEntry* pEntry = GetCurEntry(); 120*cdf0e10cSrcweir 121*cdf0e10cSrcweir if ( pEntry ) 122*cdf0e10cSrcweir return (sal_uInt16)GetModel()->GetAbsPos( pEntry ); 123*cdf0e10cSrcweir return LISTBOX_ENTRY_NOTFOUND; 124*cdf0e10cSrcweir } 125*cdf0e10cSrcweir 126*cdf0e10cSrcweir // ----------------------------------------------------------------------- 127*cdf0e10cSrcweir 128*cdf0e10cSrcweir String SvxCheckListBox::GetText( sal_uInt16 nPos ) const 129*cdf0e10cSrcweir { 130*cdf0e10cSrcweir SvLBoxEntry* pEntry = GetEntry( nPos ); 131*cdf0e10cSrcweir 132*cdf0e10cSrcweir if ( pEntry ) 133*cdf0e10cSrcweir return GetEntryText( pEntry ); 134*cdf0e10cSrcweir return String(); 135*cdf0e10cSrcweir } 136*cdf0e10cSrcweir 137*cdf0e10cSrcweir // ----------------------------------------------------------------------- 138*cdf0e10cSrcweir 139*cdf0e10cSrcweir sal_uInt16 SvxCheckListBox::GetCheckedEntryCount() const 140*cdf0e10cSrcweir { 141*cdf0e10cSrcweir sal_uInt16 nCheckCount = 0; 142*cdf0e10cSrcweir sal_uInt16 nCount = (sal_uInt16)GetEntryCount(); 143*cdf0e10cSrcweir 144*cdf0e10cSrcweir for ( sal_uInt16 i = 0; i < nCount; ++i ) 145*cdf0e10cSrcweir { 146*cdf0e10cSrcweir if ( IsChecked( i ) ) 147*cdf0e10cSrcweir nCheckCount++; 148*cdf0e10cSrcweir } 149*cdf0e10cSrcweir return nCheckCount; 150*cdf0e10cSrcweir } 151*cdf0e10cSrcweir 152*cdf0e10cSrcweir // ----------------------------------------------------------------------- 153*cdf0e10cSrcweir 154*cdf0e10cSrcweir void SvxCheckListBox::CheckEntryPos( sal_uInt16 nPos, sal_Bool bCheck ) 155*cdf0e10cSrcweir { 156*cdf0e10cSrcweir if ( nPos < GetEntryCount() ) 157*cdf0e10cSrcweir SetCheckButtonState( 158*cdf0e10cSrcweir GetEntry( nPos ), bCheck ? SvButtonState( SV_BUTTON_CHECKED ) : 159*cdf0e10cSrcweir SvButtonState( SV_BUTTON_UNCHECKED ) ); 160*cdf0e10cSrcweir } 161*cdf0e10cSrcweir 162*cdf0e10cSrcweir // ----------------------------------------------------------------------- 163*cdf0e10cSrcweir 164*cdf0e10cSrcweir sal_Bool SvxCheckListBox::IsChecked( sal_uInt16 nPos ) const 165*cdf0e10cSrcweir { 166*cdf0e10cSrcweir if ( nPos < GetEntryCount() ) 167*cdf0e10cSrcweir return (GetCheckButtonState( GetEntry( nPos ) ) == SV_BUTTON_CHECKED); 168*cdf0e10cSrcweir else 169*cdf0e10cSrcweir return sal_False; 170*cdf0e10cSrcweir } 171*cdf0e10cSrcweir 172*cdf0e10cSrcweir // ----------------------------------------------------------------------- 173*cdf0e10cSrcweir 174*cdf0e10cSrcweir void* SvxCheckListBox::SetEntryData ( sal_uInt16 nPos, void* pNewData ) 175*cdf0e10cSrcweir { 176*cdf0e10cSrcweir void* pOld = NULL; 177*cdf0e10cSrcweir 178*cdf0e10cSrcweir if ( nPos < GetEntryCount() ) 179*cdf0e10cSrcweir { 180*cdf0e10cSrcweir pOld = GetEntry( nPos )->GetUserData(); 181*cdf0e10cSrcweir GetEntry( nPos )->SetUserData( pNewData ); 182*cdf0e10cSrcweir } 183*cdf0e10cSrcweir return pOld; 184*cdf0e10cSrcweir } 185*cdf0e10cSrcweir 186*cdf0e10cSrcweir // ----------------------------------------------------------------------- 187*cdf0e10cSrcweir 188*cdf0e10cSrcweir void* SvxCheckListBox::GetEntryData( sal_uInt16 nPos ) const 189*cdf0e10cSrcweir { 190*cdf0e10cSrcweir if ( nPos < GetEntryCount() ) 191*cdf0e10cSrcweir return GetEntry( nPos )->GetUserData(); 192*cdf0e10cSrcweir else 193*cdf0e10cSrcweir return NULL; 194*cdf0e10cSrcweir } 195*cdf0e10cSrcweir 196*cdf0e10cSrcweir // ----------------------------------------------------------------------- 197*cdf0e10cSrcweir 198*cdf0e10cSrcweir void SvxCheckListBox::ToggleCheckButton( SvLBoxEntry* pEntry ) 199*cdf0e10cSrcweir { 200*cdf0e10cSrcweir if ( pEntry ) 201*cdf0e10cSrcweir { 202*cdf0e10cSrcweir if ( !IsSelected( pEntry ) ) 203*cdf0e10cSrcweir Select( pEntry ); 204*cdf0e10cSrcweir else 205*cdf0e10cSrcweir CheckEntryPos( GetSelectEntryPos(), !IsChecked( GetSelectEntryPos() ) ); 206*cdf0e10cSrcweir } 207*cdf0e10cSrcweir } 208*cdf0e10cSrcweir 209*cdf0e10cSrcweir // ----------------------------------------------------------------------- 210*cdf0e10cSrcweir 211*cdf0e10cSrcweir void SvxCheckListBox::MouseButtonDown( const MouseEvent& rMEvt ) 212*cdf0e10cSrcweir { 213*cdf0e10cSrcweir if ( rMEvt.IsLeft() ) 214*cdf0e10cSrcweir { 215*cdf0e10cSrcweir const Point aPnt = rMEvt.GetPosPixel(); 216*cdf0e10cSrcweir SvLBoxEntry* pEntry = GetEntry( aPnt ); 217*cdf0e10cSrcweir 218*cdf0e10cSrcweir if ( pEntry ) 219*cdf0e10cSrcweir { 220*cdf0e10cSrcweir sal_Bool bCheck = ( GetCheckButtonState( pEntry ) == SV_BUTTON_CHECKED ); 221*cdf0e10cSrcweir SvLBoxItem* pItem = GetItem( pEntry, aPnt.X() ); 222*cdf0e10cSrcweir 223*cdf0e10cSrcweir if ( pItem && pItem->IsA() == SV_ITEM_ID_LBOXBUTTON ) 224*cdf0e10cSrcweir { 225*cdf0e10cSrcweir SvTreeListBox::MouseButtonDown( rMEvt ); 226*cdf0e10cSrcweir Select( pEntry, sal_True ); 227*cdf0e10cSrcweir return; 228*cdf0e10cSrcweir } 229*cdf0e10cSrcweir else 230*cdf0e10cSrcweir { 231*cdf0e10cSrcweir ToggleCheckButton( pEntry ); 232*cdf0e10cSrcweir SvTreeListBox::MouseButtonDown( rMEvt ); 233*cdf0e10cSrcweir 234*cdf0e10cSrcweir // check if the entry below the mouse changed during the base method call. This is possible if, 235*cdf0e10cSrcweir // for instance, a handler invoked by the base class tampers with the list entries. 236*cdf0e10cSrcweir const SvLBoxEntry* pNewEntry = GetEntry( aPnt ); 237*cdf0e10cSrcweir if ( pNewEntry != pEntry ) 238*cdf0e10cSrcweir return; 239*cdf0e10cSrcweir 240*cdf0e10cSrcweir if ( bCheck != ( GetCheckButtonState( pEntry ) == SV_BUTTON_CHECKED ) ) 241*cdf0e10cSrcweir CheckButtonHdl(); 242*cdf0e10cSrcweir return; 243*cdf0e10cSrcweir } 244*cdf0e10cSrcweir } 245*cdf0e10cSrcweir } 246*cdf0e10cSrcweir SvTreeListBox::MouseButtonDown( rMEvt ); 247*cdf0e10cSrcweir } 248*cdf0e10cSrcweir 249*cdf0e10cSrcweir // ----------------------------------------------------------------------- 250*cdf0e10cSrcweir 251*cdf0e10cSrcweir void SvxCheckListBox::KeyInput( const KeyEvent& rKEvt ) 252*cdf0e10cSrcweir { 253*cdf0e10cSrcweir const KeyCode& rKey = rKEvt.GetKeyCode(); 254*cdf0e10cSrcweir 255*cdf0e10cSrcweir if ( rKey.GetCode() == KEY_RETURN || rKey.GetCode() == KEY_SPACE ) 256*cdf0e10cSrcweir { 257*cdf0e10cSrcweir SvLBoxEntry* pEntry = GetCurEntry(); 258*cdf0e10cSrcweir 259*cdf0e10cSrcweir if ( pEntry ) 260*cdf0e10cSrcweir { 261*cdf0e10cSrcweir sal_Bool bCheck = ( GetCheckButtonState( pEntry ) == SV_BUTTON_CHECKED ); 262*cdf0e10cSrcweir ToggleCheckButton( pEntry ); 263*cdf0e10cSrcweir if ( bCheck != ( GetCheckButtonState( pEntry ) == SV_BUTTON_CHECKED ) ) 264*cdf0e10cSrcweir CheckButtonHdl(); 265*cdf0e10cSrcweir } 266*cdf0e10cSrcweir } 267*cdf0e10cSrcweir else if ( GetEntryCount() ) 268*cdf0e10cSrcweir SvTreeListBox::KeyInput( rKEvt ); 269*cdf0e10cSrcweir } 270*cdf0e10cSrcweir 271*cdf0e10cSrcweir // ----------------------------------------------------------------------- 272*cdf0e10cSrcweir 273*cdf0e10cSrcweir SvLBoxEntry* SvxCheckListBox::InsertEntry( const XubString& rText, SvLBoxEntry* pParent, sal_Bool bChildsOnDemand, sal_uIntPtr nPos, void* pUserData, SvLBoxButtonKind eButtonKind ) 274*cdf0e10cSrcweir { 275*cdf0e10cSrcweir return SvTreeListBox::InsertEntry( rText, pParent, bChildsOnDemand, nPos, pUserData, eButtonKind ); 276*cdf0e10cSrcweir } 277*cdf0e10cSrcweir 278