Lines Matching refs:mpThemes
159 …mpThemes ( new GalleryThemeListBox( this, WB_TABSTOP | WB_3DLOOK | WB_BORDER | WB_HSC… in DBG_NAME()
182 mpThemes->SetHelpId( HID_GALLERY_THEMELIST ); in DBG_NAME()
183 mpThemes->SetSelectHdl( LINK( this, GalleryBrowser1, SelectThemeHdl ) ); in DBG_NAME()
184 mpThemes->SetAccessibleName(String(SVX_RES( RID_SVXSTR_GALLERYPROPS_GALTHEME ) ) ); in DBG_NAME()
191 mpThemes->Show( sal_True ); in DBG_NAME()
199 delete mpThemes; in ~GalleryBrowser1()
200 mpThemes = NULL; in ~GalleryBrowser1()
228 nRet = mpThemes->InsertEntry( pEntry->GetThemeName(), *pImage ); in ImplInsertThemeEntry()
245 mpThemes->SetPosSizePixel( Point( 0, nStartY ), in ImplAdjustControls()
377 mpThemes->SelectEntry( mpExchangeData->pTheme->GetName() ); in ImplEndGalleryThemeProperties()
447 mpGallery->RemoveTheme( mpThemes->GetSelectEntry() ); in ImplExecute()
529 if( mpThemes ) in GetFocus()
530 mpThemes->GrabFocus(); in GetFocus()
547 const sal_uInt16 nCurSelectPos = mpThemes->GetSelectEntryPos(); in Notify()
548 const sal_uInt16 nRenameEntryPos = mpThemes->GetEntryPos( rGalleryHint.GetThemeName() ); in Notify()
550 mpThemes->RemoveEntry( rGalleryHint.GetThemeName() ); in Notify()
555 mpThemes->SelectEntry( rGalleryHint.GetStringData() ); in Notify()
563 mpThemes->RemoveEntry( rGalleryHint.GetThemeName() ); in Notify()
569 const sal_uInt16 nCurSelectPos = mpThemes->GetSelectEntryPos(); in Notify()
570 const sal_uInt16 nCloseEntryPos = mpThemes->GetEntryPos( rGalleryHint.GetThemeName() ); in Notify()
574 if( nCurSelectPos < ( mpThemes->GetEntryCount() - 1 ) ) in Notify()
575 mpThemes->SelectEntryPos( nCurSelectPos + 1 ); in Notify()
577 mpThemes->SelectEntryPos( nCurSelectPos - 1 ); in Notify()
579 mpThemes->SetNoSelection(); in Notify()
688 const Rectangle aThemesRect( mpThemes->GetPosPixel(), mpThemes->GetOutputSizePixel() ); in IMPL_LINK()
689 Point aSelPos( mpThemes->GetBoundingRectangle( mpThemes->GetSelectEntryPos() ).Center() ); in IMPL_LINK()