summaryrefslogtreecommitdiff
path: root/svx/source/gallery2/galexpl.cxx
diff options
context:
space:
mode:
authorAriel Constenla-Haile <arielch@apache.org>2013-05-07 05:39:15 +0000
committerCaolán McNamara <caolanm@redhat.com>2013-07-01 16:47:03 +0100
commitb9ebdadf5a6ebf22b4df7589d86dd8fdfb675b1e (patch)
tree78792de2fda38e4fc2b2e5ba9b79fcdb4e517830 /svx/source/gallery2/galexpl.cxx
parentbc51be7e7f2fc55456e1ce7dcdc70e6a15c53c0e (diff)
Resolves: fdo#66027 #i122116# Remove GalleryExplorer member functions
(cherry picked from commit e94681fb47e3c5bdba486cd8feca92705d44840d) Conflicts: sc/source/ui/app/typemap.cxx sc/source/ui/view/galwrap.cxx sc/source/ui/view/makefile.mk sc/source/ui/view/tabvwsh9.cxx sd/source/ui/view/drviews9.cxx svx/Package_inc.mk svx/inc/GalleryControl.hxx svx/inc/galbrws2.hxx svx/inc/svx/galbrws.hxx svx/inc/svx/gallery.hxx svx/source/gallery2/GalleryControl.cxx svx/source/gallery2/galbrws.cxx svx/source/gallery2/galbrws2.cxx svx/source/gallery2/galexpl.cxx sw/source/ui/shells/basesh.cxx Change-Id: I49c2b99ca551f058b852c0e5e28cc2fe8c205031
Diffstat (limited to 'svx/source/gallery2/galexpl.cxx')
-rw-r--r--svx/source/gallery2/galexpl.cxx105
1 files changed, 18 insertions, 87 deletions
diff --git a/svx/source/gallery2/galexpl.cxx b/svx/source/gallery2/galexpl.cxx
index 13899ad21197..79fbbd4146d8 100644
--- a/svx/source/gallery2/galexpl.cxx
+++ b/svx/source/gallery2/galexpl.cxx
@@ -36,64 +36,9 @@ namespace
// - GalleryExplorer -
// -------------------
-Gallery* GalleryExplorer::ImplGetGallery()
-{
- static Gallery* pGallery = NULL;
-
- ::osl::MutexGuard aGuard( ::osl::Mutex::getGlobalMutex() );
-
- if( !pGallery )
- pGallery = Gallery::GetGalleryInstance();
-
- return pGallery;
-}
-
-// ------------------------------------------------------------------------
-
-GalleryExplorer* GalleryExplorer::GetGallery()
-{
- static GalleryExplorer* pThis = NULL;
-
- ::osl::MutexGuard aGuard( ::osl::Mutex::getGlobalMutex() );
-
- // only create a dummy object which can be accessed
- if( !pThis )
- pThis = new GalleryExplorer;
-
- return pThis;
-}
-
-// ------------------------------------------------------------------------
-
-INetURLObject GalleryExplorer::GetURL() const
-{
- return GALLERYBROWSER()->GetURL();
-}
-
-String GalleryExplorer::GetFilterName() const
-{
- return GALLERYBROWSER()->GetFilterName();
-}
-
-// ------------------------------------------------------------------------
-
-Graphic GalleryExplorer::GetGraphic() const
-{
- return GALLERYBROWSER()->GetGraphic();
-}
-
-// ------------------------------------------------------------------------
-
-sal_Bool GalleryExplorer::IsLinkage() const
-{
- return GALLERYBROWSER()->IsLinkage();
-}
-
-// ------------------------------------------------------------------------
-
bool GalleryExplorer::FillThemeList( std::vector<String>& rThemeList )
{
- Gallery* pGal = ImplGetGallery();
+ Gallery* pGal = ::Gallery::GetGalleryInstance();
if( pGal )
{
@@ -113,7 +58,7 @@ bool GalleryExplorer::FillThemeList( std::vector<String>& rThemeList )
sal_Bool GalleryExplorer::FillObjList( const String& rThemeName, std::vector<String> &rObjList )
{
- Gallery* pGal = ImplGetGallery();
+ Gallery* pGal = ::Gallery::GetGalleryInstance();
if( pGal )
{
@@ -136,7 +81,7 @@ sal_Bool GalleryExplorer::FillObjList( const String& rThemeName, std::vector<Str
sal_Bool GalleryExplorer::FillObjList( const sal_uInt32 nThemeId, std::vector<String> &rObjList )
{
- Gallery* pGal = ImplGetGallery();
+ Gallery* pGal = ::Gallery::GetGalleryInstance();
if (!pGal)
return false;
@@ -164,7 +109,7 @@ bool GalleryExplorer::FillObjList( const sal_uInt32 nThemeId, std::vector<OUStri
sal_Bool GalleryExplorer::FillObjListTitle( const sal_uInt32 nThemeId, std::vector< OUString >& rList )
{
- Gallery* pGal = ImplGetGallery();
+ Gallery* pGal = ::Gallery::GetGalleryInstance();
if( pGal )
{
SfxListener aListener;
@@ -192,21 +137,7 @@ sal_Bool GalleryExplorer::FillObjListTitle( const sal_uInt32 nThemeId, std::vect
sal_Bool GalleryExplorer::InsertURL( const String& rThemeName, const String& rURL )
{
- return InsertURL( rThemeName, rURL, SGA_FORMAT_ALL );
-}
-
-// ------------------------------------------------------------------------
-
-sal_Bool GalleryExplorer::InsertURL( sal_uIntPtr nThemeId, const String& rURL )
-{
- return InsertURL( nThemeId, rURL, SGA_FORMAT_ALL );
-}
-
-// ------------------------------------------------------------------------
-
-sal_Bool GalleryExplorer::InsertURL( const String& rThemeName, const String& rURL, const sal_uIntPtr )
-{
- Gallery* pGal = ImplGetGallery();
+ Gallery* pGal = ::Gallery::GetGalleryInstance();
sal_Bool bRet = sal_False;
if( pGal )
@@ -228,10 +159,10 @@ sal_Bool GalleryExplorer::InsertURL( const String& rThemeName, const String& rUR
// ------------------------------------------------------------------------
-sal_Bool GalleryExplorer::InsertURL( sal_uIntPtr nThemeId, const String& rURL, const sal_uIntPtr nSgaFormat )
+sal_Bool GalleryExplorer::InsertURL( sal_uIntPtr nThemeId, const String& rURL )
{
- Gallery* pGal = ImplGetGallery();
- return( pGal ? InsertURL( pGal->GetThemeName( nThemeId ), rURL, nSgaFormat ) : sal_False );
+ Gallery* pGal = ::Gallery::GetGalleryInstance();
+ return( pGal ? InsertURL( pGal->GetThemeName( nThemeId ), rURL ) : sal_False );
}
// ------------------------------------------------------------------------
@@ -240,7 +171,7 @@ sal_Bool GalleryExplorer::GetGraphicObj( const String& rThemeName, sal_uIntPtr n
Graphic* pGraphic, BitmapEx* pThumb,
sal_Bool bProgress )
{
- Gallery* pGal = ImplGetGallery();
+ Gallery* pGal = ::Gallery::GetGalleryInstance();
sal_Bool bRet = sal_False;
if( pGal )
@@ -269,7 +200,7 @@ sal_Bool GalleryExplorer::GetGraphicObj( sal_uIntPtr nThemeId, sal_uIntPtr nPos,
Graphic* pGraphic, BitmapEx* pThumb,
sal_Bool bProgress )
{
- Gallery* pGal = ImplGetGallery();
+ Gallery* pGal = ::Gallery::GetGalleryInstance();
return( pGal ? GetGraphicObj( pGal->GetThemeName( nThemeId ), nPos, pGraphic, pThumb, bProgress ) : sal_False );
}
@@ -277,7 +208,7 @@ sal_Bool GalleryExplorer::GetGraphicObj( sal_uIntPtr nThemeId, sal_uIntPtr nPos,
sal_uIntPtr GalleryExplorer::GetSdrObjCount( const String& rThemeName )
{
- Gallery* pGal = ImplGetGallery();
+ Gallery* pGal = ::Gallery::GetGalleryInstance();
sal_uIntPtr nRet = 0;
if( pGal )
@@ -302,7 +233,7 @@ sal_uIntPtr GalleryExplorer::GetSdrObjCount( const String& rThemeName )
sal_uIntPtr GalleryExplorer::GetSdrObjCount( sal_uIntPtr nThemeId )
{
- Gallery* pGal = ImplGetGallery();
+ Gallery* pGal = ::Gallery::GetGalleryInstance();
return( pGal ? GetSdrObjCount( pGal->GetThemeName( nThemeId ) ) : sal_False );
}
@@ -311,7 +242,7 @@ sal_uIntPtr GalleryExplorer::GetSdrObjCount( sal_uIntPtr nThemeId )
sal_Bool GalleryExplorer::GetSdrObj( const String& rThemeName, sal_uIntPtr nSdrModelPos,
SdrModel* pModel, BitmapEx* pThumb )
{
- Gallery* pGal = ImplGetGallery();
+ Gallery* pGal = ::Gallery::GetGalleryInstance();
sal_Bool bRet = sal_False;
if( pGal )
@@ -348,7 +279,7 @@ sal_Bool GalleryExplorer::GetSdrObj( const String& rThemeName, sal_uIntPtr nSdrM
sal_Bool GalleryExplorer::GetSdrObj( sal_uIntPtr nThemeId, sal_uIntPtr nSdrModelPos,
SdrModel* pModel, BitmapEx* pThumb )
{
- Gallery* pGal = ImplGetGallery();
+ Gallery* pGal = ::Gallery::GetGalleryInstance();
return( pGal ? GetSdrObj( pGal->GetThemeName( nThemeId ), nSdrModelPos, pModel, pThumb ) : sal_False );
}
@@ -356,7 +287,7 @@ sal_Bool GalleryExplorer::GetSdrObj( sal_uIntPtr nThemeId, sal_uIntPtr nSdrModel
sal_Bool GalleryExplorer::BeginLocking( const String& rThemeName )
{
- Gallery* pGal = ImplGetGallery();
+ Gallery* pGal = ::Gallery::GetGalleryInstance();
sal_Bool bRet = sal_False;
if( pGal )
@@ -377,7 +308,7 @@ sal_Bool GalleryExplorer::BeginLocking( const String& rThemeName )
sal_Bool GalleryExplorer::BeginLocking( sal_uIntPtr nThemeId )
{
- Gallery* pGal = ImplGetGallery();
+ Gallery* pGal = ::Gallery::GetGalleryInstance();
return( pGal ? BeginLocking( pGal->GetThemeName( nThemeId ) ) : sal_False );
}
@@ -385,7 +316,7 @@ sal_Bool GalleryExplorer::BeginLocking( sal_uIntPtr nThemeId )
sal_Bool GalleryExplorer::EndLocking( const String& rThemeName )
{
- Gallery* pGal = ImplGetGallery();
+ Gallery* pGal = ::Gallery::GetGalleryInstance();
sal_Bool bRet = sal_False;
if( pGal )
@@ -416,7 +347,7 @@ sal_Bool GalleryExplorer::EndLocking( const String& rThemeName )
sal_Bool GalleryExplorer::EndLocking( sal_uIntPtr nThemeId )
{
- Gallery* pGal = ImplGetGallery();
+ Gallery* pGal = ::Gallery::GetGalleryInstance();
return( pGal ? EndLocking( pGal->GetThemeName( nThemeId ) ) : sal_False );
}