Lines Matching refs:mpTheme

56 	mpTheme = ( mpGallery ? mpGallery->AcquireTheme( rThemeName, *this ) : NULL );  in GalleryTheme()
68 DBG_ASSERT( !mpTheme || mpGallery, "Theme is living without Gallery" ); in ~GalleryTheme()
76 if( mpTheme ) in ~GalleryTheme()
77 mpGallery->ReleaseTheme( mpTheme, *this ); in ~GalleryTheme()
181 return( ( mpTheme != NULL ) && ( mpTheme->GetObjectCount() > 0 ) ); in hasElements()
191 return( mpTheme ? mpTheme->GetObjectCount() : 0 ); in getCount()
202 if( mpTheme ) in getByIndex()
210 const GalleryObject* pObj = mpTheme->ImplGetGalleryObject( nIndex ); in getByIndex()
228 if( mpTheme ) in getName()
229 aRet = mpTheme->GetName(); in getName()
241 if( mpTheme ) in update()
244 mpTheme->Actualize( aDummyLink ); in update()
257 if( mpTheme ) in insertURLByIndex()
265 if( ( aURL.GetProtocol() != INET_PROT_NOT_VALID ) && mpTheme->InsertURL( aURL, nIndex ) ) in insertURLByIndex()
267 const GalleryObject* pObj = mpTheme->ImplGetGalleryObject( aURL ); in insertURLByIndex()
270 nRet = mpTheme->ImplGetGalleryObjectPos( pObj ); in insertURLByIndex()
290 if( mpTheme ) in insertGraphicByIndex()
298 if( mpTheme->InsertGraphic( aGraphic, nIndex ) ) in insertGraphicByIndex()
318 if( mpTheme ) in insertDrawingByIndex()
326 if( mpTheme->InsertModel( *static_cast< FmFormModel* >( pModel->GetDoc() ), nIndex ) ) in insertDrawingByIndex()
369 if( mpTheme ) in removeByIndex()
374 mpTheme->RemoveObject( nIndex ); in removeByIndex()
389 DBG_ASSERT( !mpTheme || mpGallery, "Theme is living without Gallery" ); in Notify()
393 if( mpGallery && mpTheme ) in Notify()
395 mpGallery->ReleaseTheme( mpTheme, *this ); in Notify()
396 mpTheme = NULL; in Notify()
437 return mpTheme; in implGetTheme()