1 /************************************************************************* 2 * 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 * 5 * Copyright 2000, 2010 Oracle and/or its affiliates. 6 * 7 * OpenOffice.org - a multi-platform office productivity suite 8 * 9 * This file is part of OpenOffice.org. 10 * 11 * OpenOffice.org is free software: you can redistribute it and/or modify 12 * it under the terms of the GNU Lesser General Public License version 3 13 * only, as published by the Free Software Foundation. 14 * 15 * OpenOffice.org is distributed in the hope that it will be useful, 16 * but WITHOUT ANY WARRANTY; without even the implied warranty of 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 * GNU Lesser General Public License version 3 for more details 19 * (a copy is included in the LICENSE file that accompanied this code). 20 * 21 * You should have received a copy of the GNU Lesser General Public License 22 * version 3 along with OpenOffice.org. If not, see 23 * <http://www.openoffice.org/license.html> 24 * for a copy of the LGPLv3 License. 25 * 26 ************************************************************************/ 27 28 #ifndef _SFXIMGMGR_HXX 29 #define _SFXIMGMGR_HXX 30 31 #include "sal/config.h" 32 #include "sfx2/dllapi.h" 33 34 #include <sal/types.h> 35 #include <tools/gen.hxx> 36 #ifndef _IMAGE_HXX //autogen 37 #include <vcl/image.hxx> 38 #endif 39 40 class ToolBox; 41 class SfxModule; 42 class SfxImageManager_Impl; 43 class SFX2_DLLPUBLIC SfxImageManager 44 { 45 SfxImageManager_Impl* pImp; 46 47 public: 48 static SfxImageManager* GetImageManager( SfxModule* ); 49 50 SfxImageManager( SfxModule* pModule = 0 ); 51 ~SfxImageManager(); 52 53 void RegisterToolBox( ToolBox *pBox, sal_uInt16 nFlags=0xFFFF); 54 void ReleaseToolBox( ToolBox *pBox ); 55 56 // get images from resources 57 void SetImages( ToolBox& rToolBox ); 58 void SetImages( ToolBox& rToolBox, sal_Bool bHiContrast, sal_Bool bLarge ); 59 void SetImagesForceSize( ToolBox& rToolBox, sal_Bool bHiContrast, sal_Bool bLarge ); 60 61 Image GetImage( sal_uInt16 nId, sal_Bool bLarge, sal_Bool bHiContrast ) const; 62 Image GetImage( sal_uInt16 nId, sal_Bool bHiContrast ) const; 63 Image SeekImage( sal_uInt16 nId, sal_Bool bLarge, sal_Bool bHiContrast ) const; 64 Image SeekImage( sal_uInt16 nId, sal_Bool bHiContrast ) const; 65 }; 66 67 #endif 68