/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ #include #include #include "svtools/treelistentry.hxx" #include "svtools/viewdataentry.hxx" #include #include #include #include struct SvLBoxButtonData_Impl { SvTreeListEntry* pEntry; sal_Bool bDefaultImages; sal_Bool bShowRadioButton; SvLBoxButtonData_Impl() : pEntry( NULL ), bDefaultImages( sal_False ), bShowRadioButton( sal_False ) {} }; DBG_NAME(SvLBoxButtonData) void SvLBoxButtonData::InitData( sal_Bool bImagesFromDefault, bool _bRadioBtn, const Control* pCtrl ) { pImpl = new SvLBoxButtonData_Impl; bDataOk = sal_False; eState = SV_BUTTON_UNCHECKED; pImpl->bDefaultImages = bImagesFromDefault; pImpl->bShowRadioButton = ( _bRadioBtn != false ); if ( bImagesFromDefault ) SetDefaultImages( pCtrl ); } SvLBoxButtonData::SvLBoxButtonData( const Control* pControlForSettings ) { DBG_CTOR(SvLBoxButtonData,0); InitData( sal_True, false, pControlForSettings ); } SvLBoxButtonData::SvLBoxButtonData( const Control* pControlForSettings, bool _bRadioBtn ) { DBG_CTOR(SvLBoxButtonData,0); InitData( sal_True, _bRadioBtn, pControlForSettings ); } SvLBoxButtonData::~SvLBoxButtonData() { DBG_DTOR(SvLBoxButtonData,0); delete pImpl; #ifdef DBG_UTIL pImpl = NULL; #endif } void SvLBoxButtonData::CallLink() { DBG_CHKTHIS(SvLBoxButtonData,0); aLink.Call( this ); } sal_uInt16 SvLBoxButtonData::GetIndex( sal_uInt16 nItemState ) { DBG_CHKTHIS(SvLBoxButtonData,0); nItemState &= 0x000F; sal_uInt16 nIdx; switch( nItemState ) { case SV_ITEMSTATE_UNCHECKED: nIdx = SV_BMP_UNCHECKED; break; case SV_ITEMSTATE_CHECKED: nIdx = SV_BMP_CHECKED; break; case SV_ITEMSTATE_TRISTATE: nIdx = SV_BMP_TRISTATE; break; case SV_ITEMSTATE_UNCHECKED | SV_ITEMSTATE_HILIGHTED: nIdx = SV_BMP_HIUNCHECKED; break; case SV_ITEMSTATE_CHECKED | SV_ITEMSTATE_HILIGHTED: nIdx = SV_BMP_HICHECKED; break; case SV_ITEMSTATE_TRISTATE | SV_ITEMSTATE_HILIGHTED: nIdx = SV_BMP_HITRISTATE; break; default: nIdx = SV_BMP_UNCHECKED; } return nIdx; } void SvLBoxButtonData::SetWidthAndHeight() { DBG_CHKTHIS(SvLBoxButtonData,0); Size aSize = aBmps[0].GetSizePixel(); nWidth = aSize.Width(); nHeight = aSize.Height(); bDataOk = sal_True; } void SvLBoxButtonData::StoreButtonState( SvTreeListEntry* pActEntry, sal_uInt16 nItemFlags ) { DBG_CHKTHIS(SvLBoxButtonData,0); pImpl->pEntry = pActEntry; eState = ConvertToButtonState( nItemFlags ); } SvButtonState SvLBoxButtonData::ConvertToButtonState( sal_uInt16 nItemFlags ) const { DBG_CHKTHIS(SvLBoxButtonData,0); nItemFlags &= (SV_ITEMSTATE_UNCHECKED | SV_ITEMSTATE_CHECKED | SV_ITEMSTATE_TRISTATE); switch( nItemFlags ) { case SV_ITEMSTATE_UNCHECKED: return SV_BUTTON_UNCHECKED; case SV_ITEMSTATE_CHECKED: return SV_BUTTON_CHECKED; case SV_ITEMSTATE_TRISTATE: return SV_BUTTON_TRISTATE; default: return SV_BUTTON_UNCHECKED; } } SvTreeListEntry* SvLBoxButtonData::GetActEntry() const { DBG_ASSERT( pImpl, "-SvLBoxButtonData::GetActEntry(): don't use me that way!" ); return pImpl->pEntry; } void SvLBoxButtonData::SetDefaultImages( const Control* pCtrl ) { const AllSettings& rSettings = pCtrl? pCtrl->GetSettings() : Application::GetSettings(); if ( pImpl->bShowRadioButton ) { aBmps[ SV_BMP_UNCHECKED ] = RadioButton::GetRadioImage( rSettings, BUTTON_DRAW_DEFAULT ); aBmps[ SV_BMP_CHECKED ] = RadioButton::GetRadioImage( rSettings, BUTTON_DRAW_CHECKED ); aBmps[ SV_BMP_HICHECKED ] = RadioButton::GetRadioImage( rSettings, BUTTON_DRAW_CHECKED | BUTTON_DRAW_PRESSED ); aBmps[ SV_BMP_HIUNCHECKED ] = RadioButton::GetRadioImage( rSettings, BUTTON_DRAW_DEFAULT | BUTTON_DRAW_PRESSED ); aBmps[ SV_BMP_TRISTATE ] = RadioButton::GetRadioImage( rSettings, BUTTON_DRAW_DONTKNOW ); aBmps[ SV_BMP_HITRISTATE ] = RadioButton::GetRadioImage( rSettings, BUTTON_DRAW_DONTKNOW | BUTTON_DRAW_PRESSED ); } else { aBmps[ SV_BMP_UNCHECKED ] = CheckBox::GetCheckImage( rSettings, BUTTON_DRAW_DEFAULT ); aBmps[ SV_BMP_CHECKED ] = CheckBox::GetCheckImage( rSettings, BUTTON_DRAW_CHECKED ); aBmps[ SV_BMP_HICHECKED ] = CheckBox::GetCheckImage( rSettings, BUTTON_DRAW_CHECKED | BUTTON_DRAW_PRESSED ); aBmps[ SV_BMP_HIUNCHECKED ] = CheckBox::GetCheckImage( rSettings, BUTTON_DRAW_DEFAULT | BUTTON_DRAW_PRESSED ); aBmps[ SV_BMP_TRISTATE ] = CheckBox::GetCheckImage( rSettings, BUTTON_DRAW_DONTKNOW ); aBmps[ SV_BMP_HITRISTATE ] = CheckBox::GetCheckImage( rSettings, BUTTON_DRAW_DONTKNOW | BUTTON_DRAW_PRESSED ); } } sal_Bool SvLBoxButtonData::HasDefaultImages( void ) const { return pImpl->bDefaultImages; } sal_Bool SvLBoxButtonData::IsRadio() { return pImpl->bShowRadioButton; } // *************************************************************** // class SvLBoxString // *************************************************************** DBG_NAME(SvLBoxString); SvLBoxString::SvLBoxString(SvTreeListEntry* pEntry, sal_uInt16 nFlags, const OUString& rStr) : SvLBoxItem(pEntry, nFlags) { DBG_CTOR(SvLBoxString,0); SetText(rStr); } SvLBoxString::SvLBoxString() : SvLBoxItem() { DBG_CTOR(SvLBoxString,0); } SvLBoxString::~SvLBoxString() { DBG_DTOR(SvLBoxString,0); } sal_uInt16 SvLBoxString::GetType() const { DBG_CHKTHIS(SvLBoxString,0); return SV_ITEM_ID_LBOXSTRING; } void SvLBoxString::Paint( const Point& rPos, SvTreeListBox& rDev, const SvViewDataEntry* /*pView*/, const SvTreeListEntry* pEntry) { DBG_CHKTHIS(SvLBoxString,0); if (pEntry) { sal_uInt16 nStyle = rDev.IsEnabled() ? 0 : TEXT_DRAW_DISABLE; if ( rDev.IsEntryMnemonicsEnabled() ) nStyle |= TEXT_DRAW_MNEMONIC; rDev.DrawText(Rectangle(rPos, GetSize(&rDev, pEntry)), maText, nStyle); } else rDev.DrawText(rPos, maText); } SvLBoxItem* SvLBoxString::Create() const { DBG_CHKTHIS(SvLBoxString,0); return new SvLBoxString; } void SvLBoxString::Clone( SvLBoxItem* pSource ) { DBG_CHKTHIS(SvLBoxString,0); maText = ((SvLBoxString*)pSource)->maText; } void SvLBoxString::InitViewData( SvTreeListBox* pView, SvTreeListEntry* pEntry, SvViewDataItem* pViewData) { DBG_CHKTHIS(SvLBoxString,0); if( !pViewData ) pViewData = pView->GetViewDataItem( pEntry, this ); // fdo#72125: GetTextWidth() can get very expensive; let's just count // an approximate width using a cached value when we have many entries long nTextWidth; if (pView->GetEntryCount() > 100) { static SvTreeListBox *pPreviousView = NULL; static float fApproximateCharWidth = 0.0; if (pPreviousView != pView) { pPreviousView = pView; fApproximateCharWidth = pView->approximate_char_width(); } nTextWidth = maText.getLength() * fApproximateCharWidth; } else nTextWidth = pView->GetTextWidth(maText); pViewData->maSize = Size(nTextWidth, pView->GetTextHeight()); } // *************************************************************** // class SvLBoxBmp // *************************************************************** DBG_NAME(SvLBoxBmp); SvLBoxBmp::SvLBoxBmp() : SvLBoxItem() { DBG_CTOR(SvLBoxBmp,0); } SvLBoxBmp::~SvLBoxBmp() { DBG_DTOR(SvLBoxBmp,0); } sal_uInt16 SvLBoxBmp::GetType() const { DBG_CHKTHIS(SvLBoxBmp,0); return SV_ITEM_ID_LBOXBMP; } void SvLBoxBmp::InitViewData( SvTreeListBox* pView,SvTreeListEntry* pEntry, SvViewDataItem* pViewData) { DBG_CHKTHIS(SvLBoxBmp,0); if( !pViewData ) pViewData = pView->GetViewDataItem( pEntry, this ); pViewData->maSize = aBmp.GetSizePixel(); } void SvLBoxBmp::Paint( const Point& rPos, SvTreeListBox& rDev, const SvViewDataEntry* /*pView*/, const SvTreeListEntry* /*pEntry*/) { DBG_CHKTHIS(SvLBoxBmp,0); sal_uInt16 nStyle = rDev.IsEnabled() ? 0 : IMAGE_DRAW_DISABLE; rDev.DrawImage( rPos, aBmp ,nStyle); } SvLBoxItem* SvLBoxBmp::Create() const { DBG_CHKTHIS(SvLBoxBmp,0); return new SvLBoxBmp; } void SvLBoxBmp::Clone( SvLBoxItem* pSource ) { DBG_CHKTHIS(SvLBoxBmp,0); aBmp = ((SvLBoxBmp*)pSource)->aBmp; } // *************************************************************** // class SvLBoxButton // *************************************************************** DBG_NAME(SvLBoxButton); SvLBoxButton::SvLBoxButton( SvTreeListEntry* pEntry, SvLBoxButtonKind eTheKind, sal_uInt16 nFlags, SvLBoxButtonData* pBData ) : SvLBoxItem( pEntry, nFlags ) { DBG_CTOR(SvLBoxButton,0); eKind = eTheKind; nBaseOffs = 0; nItemFlags = 0; SetStateUnchecked(); pData = pBData; isVis = true; } SvLBoxButton::SvLBoxButton() : SvLBoxItem() { DBG_CTOR(SvLBoxButton,0); eKind = SvLBoxButtonKind_enabledCheckbox; nItemFlags = 0; SetStateUnchecked(); } SvLBoxButton::~SvLBoxButton() { DBG_DTOR(SvLBoxButton,0); } sal_uInt16 SvLBoxButton::GetType() const { DBG_CHKTHIS(SvLBoxButton,0); return SV_ITEM_ID_LBOXBUTTON; } sal_Bool SvLBoxButton::ClickHdl( SvTreeListBox*, SvTreeListEntry* pEntry ) { DBG_CHKTHIS(SvLBoxButton,0); if ( CheckModification() ) { if ( IsStateChecked() ) SetStateUnchecked(); else SetStateChecked(); pData->StoreButtonState( pEntry, nItemFlags ); pData->CallLink(); } return sal_False; } void SvLBoxButton::Paint( const Point& rPos, SvTreeListBox& rDev, const SvViewDataEntry* /*pView*/, const SvTreeListEntry* /*pEntry*/) { DBG_CHKTHIS(SvLBoxButton,0); sal_uInt16 nIndex = eKind == SvLBoxButtonKind_staticImage ? SV_BMP_STATICIMAGE : pData->GetIndex( nItemFlags ); sal_uInt16 nStyle = eKind != SvLBoxButtonKind_disabledCheckbox && rDev.IsEnabled() ? 0 : IMAGE_DRAW_DISABLE; /// //Native drawing /// sal_Bool bNativeOK = sal_False; ControlType eCtrlType = (pData->IsRadio())? CTRL_RADIOBUTTON : CTRL_CHECKBOX; if ( nIndex != SV_BMP_STATICIMAGE && rDev.IsNativeControlSupported( eCtrlType, PART_ENTIRE_CONTROL) ) { Size aSize(pData->Width(), pData->Height()); ImplAdjustBoxSize( aSize, eCtrlType, &rDev ); ImplControlValue aControlValue; Rectangle aCtrlRegion( rPos, aSize ); ControlState nState = 0; //states CTRL_STATE_DEFAULT, CTRL_STATE_PRESSED and CTRL_STATE_ROLLOVER are not implemented if ( IsStateHilighted() ) nState |= CTRL_STATE_FOCUSED; if ( nStyle != IMAGE_DRAW_DISABLE ) nState |= CTRL_STATE_ENABLED; if ( IsStateChecked() ) aControlValue.setTristateVal( BUTTONVALUE_ON ); else if ( IsStateUnchecked() ) aControlValue.setTristateVal( BUTTONVALUE_OFF ); else if ( IsStateTristate() ) aControlValue.setTristateVal( BUTTONVALUE_MIXED ); if( isVis) bNativeOK = rDev.DrawNativeControl( eCtrlType, PART_ENTIRE_CONTROL, aCtrlRegion, nState, aControlValue, OUString() ); } if( !bNativeOK && isVis ) rDev.DrawImage( rPos, pData->aBmps[nIndex + nBaseOffs] ,nStyle); } SvLBoxItem* SvLBoxButton::Create() const { DBG_CHKTHIS(SvLBoxButton,0); return new SvLBoxButton; } void SvLBoxButton::Clone( SvLBoxItem* pSource ) { DBG_CHKTHIS(SvLBoxButton,0); pData = ((SvLBoxButton*)pSource)->pData; } void SvLBoxButton::ImplAdjustBoxSize( Size& io_rSize, ControlType i_eType, Window* i_pParent ) { if ( i_pParent->IsNativeControlSupported( i_eType, PART_ENTIRE_CONTROL) ) { ImplControlValue aControlValue; Rectangle aCtrlRegion( Point( 0, 0 ), io_rSize ); ControlState nState = CTRL_STATE_ENABLED; aControlValue.setTristateVal( BUTTONVALUE_ON ); Rectangle aNativeBounds, aNativeContent; bool bNativeOK = i_pParent->GetNativeControlRegion( i_eType, PART_ENTIRE_CONTROL, aCtrlRegion, nState, aControlValue, OUString(), aNativeBounds, aNativeContent ); if( bNativeOK ) { Size aContentSize( aNativeContent.GetSize() ); // leave a little space around the box image (looks better) if( aContentSize.Height() + 2 > io_rSize.Height() ) io_rSize.Height() = aContentSize.Height() + 2; if( aContentSize.Width() + 2 > io_rSize.Width() ) io_rSize.Width() = aContentSize.Width() + 2; } } } void SvLBoxButton::InitViewData( SvTreeListBox* pView,SvTreeListEntry* pEntry, SvViewDataItem* pViewData ) { DBG_CHKTHIS(SvLBoxButton,0); if( !pViewData ) pViewData = pView->GetViewDataItem( pEntry, this ); Size aSize( pData->Width(), pData->Height() ); ControlType eCtrlType = (pData->IsRadio())? CTRL_RADIOBUTTON : CTRL_CHECKBOX; if ( eKind != SvLBoxButtonKind_staticImage && pView ) ImplAdjustBoxSize( aSize, eCtrlType, pView ); pViewData->maSize = aSize; } bool SvLBoxButton::CheckModification() const { return eKind == SvLBoxButtonKind_enabledCheckbox; } void SvLBoxButton::SetStateInvisible() { isVis = false; } // *************************************************************** // class SvLBoxContextBmp // *************************************************************** struct SvLBoxContextBmp_Impl { Image m_aImage1; Image m_aImage2; bool m_bExpanded; }; // *************************************************************** DBG_NAME(SvLBoxContextBmp) SvLBoxContextBmp::SvLBoxContextBmp( SvTreeListEntry* pEntry, sal_uInt16 nItemFlags, Image aBmp1, Image aBmp2, bool bExpanded) :SvLBoxItem( pEntry, nItemFlags ) ,m_pImpl( new SvLBoxContextBmp_Impl ) { DBG_CTOR(SvLBoxContextBmp,0); m_pImpl->m_bExpanded = bExpanded; SetModeImages( aBmp1, aBmp2 ); } SvLBoxContextBmp::SvLBoxContextBmp() :SvLBoxItem( ) ,m_pImpl( new SvLBoxContextBmp_Impl ) { m_pImpl->m_bExpanded = false; DBG_CTOR(SvLBoxContextBmp,0); } SvLBoxContextBmp::~SvLBoxContextBmp() { delete m_pImpl; DBG_DTOR(SvLBoxContextBmp,0); } sal_uInt16 SvLBoxContextBmp::GetType() const { DBG_CHKTHIS(SvLBoxContextBmp,0); return SV_ITEM_ID_LBOXCONTEXTBMP; } sal_Bool SvLBoxContextBmp::SetModeImages( const Image& _rBitmap1, const Image& _rBitmap2 ) { DBG_CHKTHIS(SvLBoxContextBmp,0); sal_Bool bSuccess = sal_True; m_pImpl->m_aImage1 = _rBitmap1; m_pImpl->m_aImage2 = _rBitmap2; return bSuccess; } Image& SvLBoxContextBmp::implGetImageStore( sal_Bool _bFirst ) { DBG_CHKTHIS(SvLBoxContextBmp,0); // OJ: #i27071# wrong mode so we just return the normal images return _bFirst ? m_pImpl->m_aImage1 : m_pImpl->m_aImage2; } void SvLBoxContextBmp::InitViewData( SvTreeListBox* pView,SvTreeListEntry* pEntry, SvViewDataItem* pViewData) { DBG_CHKTHIS(SvLBoxContextBmp,0); if( !pViewData ) pViewData = pView->GetViewDataItem( pEntry, this ); pViewData->maSize = m_pImpl->m_aImage1.GetSizePixel(); } void SvLBoxContextBmp::Paint( const Point& _rPos, SvTreeListBox& _rDev, const SvViewDataEntry* pView, const SvTreeListEntry* pEntry) { DBG_CHKTHIS(SvLBoxContextBmp,0); // get the image. const Image& rImage = implGetImageStore(pView->IsExpanded() != m_pImpl->m_bExpanded); sal_Bool _bSemiTransparent = pEntry && ( 0 != ( SV_ENTRYFLAG_SEMITRANSPARENT & pEntry->GetFlags( ) ) ); // draw sal_uInt16 nStyle = _rDev.IsEnabled() ? 0 : IMAGE_DRAW_DISABLE; if ( _bSemiTransparent ) nStyle |= IMAGE_DRAW_SEMITRANSPARENT; _rDev.DrawImage( _rPos, rImage, nStyle); } SvLBoxItem* SvLBoxContextBmp::Create() const { DBG_CHKTHIS(SvLBoxContextBmp,0); return new SvLBoxContextBmp; } void SvLBoxContextBmp::Clone( SvLBoxItem* pSource ) { DBG_CHKTHIS(SvLBoxContextBmp,0); m_pImpl->m_aImage1 = static_cast< SvLBoxContextBmp* >( pSource )->m_pImpl->m_aImage1; m_pImpl->m_aImage2 = static_cast< SvLBoxContextBmp* >( pSource )->m_pImpl->m_aImage2; m_pImpl->m_bExpanded = static_cast(pSource)->m_pImpl->m_bExpanded; } long SvLBoxButtonData::Width() { if ( !bDataOk ) SetWidthAndHeight(); return nWidth; } long SvLBoxButtonData::Height() { if ( !bDataOk ) SetWidthAndHeight(); return nHeight; } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */