Lines Matching refs:bHiContrast

69     ImageList*              GetImageList( sal_Bool bBig, sal_Bool bHiContrast );
70 Image GetImage( sal_uInt16 nId, sal_Bool bBig, sal_Bool bHiContrast );
121 static ImageList* GetImageList( sal_Bool bBig, sal_Bool bHiContrast ) in GetImageList() argument
126 ImageList*& rpList = bBig ? ( bHiContrast ? pImageListHiBig : pImageListBig ) : in GetImageList()
127 ( bHiContrast ? pImageListHiSmall : pImageListSmall ); in GetImageList()
132 ResId aResId( bBig ? ( bHiContrast ? RID_DEFAULTIMAGELIST_LCH : RID_DEFAULTIMAGELIST_LC ) : in GetImageList()
133 … ( bHiContrast ? RID_DEFAULTIMAGELIST_SCH : RID_DEFAULTIMAGELIST_SC ), *pResMgr); in GetImageList()
148 static sal_Int16 impl_convertBools( sal_Bool bLarge, sal_Bool bHiContrast ) in impl_convertBools() argument
153 if ( bHiContrast ) in impl_convertBools()
184 ImageList* SfxImageManager_Impl::GetImageList( sal_Bool bBig, sal_Bool bHiContrast ) in GetImageList() argument
186 sal_Int32 nIndex = impl_convertBools( bBig, bHiContrast ); in GetImageList()
190 m_pImageList[nIndex] = ::GetImageList( bBig, bHiContrast ); in GetImageList()
192 m_pImageList[nIndex] = m_pModule->GetImageList_Impl( bBig, bHiContrast ); in GetImageList()
200 Image SfxImageManager_Impl::GetImage( sal_uInt16 nId, sal_Bool bBig, sal_Bool bHiContrast ) in GetImage() argument
202 ImageList* pImageList = GetImageList( bBig, bHiContrast ); in GetImage()
225 … sal_Bool bHiContrast = pBox->GetSettings().GetStyleSettings().GetHighContrastMode(); in SetSymbolsSize_Impl() local
232 pBox->SetItemImage( nId, GetImage( nId, bLarge, bHiContrast ) ); in SetSymbolsSize_Impl()
311 Image SfxImageManager::GetImage( sal_uInt16 nId, sal_Bool bBig, sal_Bool bHiContrast ) const in GetImage()
313 ImageList* pImageList = pImp->GetImageList( bBig, bHiContrast ); in GetImage()
321 Image SfxImageManager::GetImage( sal_uInt16 nId, sal_Bool bHiContrast ) const in GetImage()
324 return GetImage( nId, bLarge, bHiContrast ); in GetImage()
329 Image SfxImageManager::SeekImage( sal_uInt16 nId, sal_Bool bBig, sal_Bool bHiContrast ) const in SeekImage()
332 ImageList* pImageList = pImp->GetImageList( bBig, bHiContrast ); in SeekImage()
337 pImageList = ::GetImageManager( 0 )->GetImageList( bBig, bHiContrast ); in SeekImage()
346 Image SfxImageManager::SeekImage( sal_uInt16 nId, sal_Bool bHiContrast ) const in SeekImage()
349 return SeekImage( nId, bLarge, bHiContrast ); in SeekImage()
383 void SfxImageManager::SetImages( ToolBox& rToolBox, sal_Bool bHiContrast, sal_Bool bLarge ) in SetImages() argument
385 SetImagesForceSize( rToolBox, bLarge, bHiContrast ); in SetImages()
390 void SfxImageManager::SetImagesForceSize( ToolBox& rToolBox, sal_Bool bHiContrast, sal_Bool bLarge ) in SetImagesForceSize() argument
392 ImageList* pImageList = pImp->GetImageList( bLarge, bHiContrast ); in SetImagesForceSize()
420 sal_Bool bHiContrast = rToolBox.GetSettings().GetStyleSettings().GetHighContrastMode(); in SetImages() local
421 SetImagesForceSize( rToolBox, bHiContrast, bLarge ); in SetImages()