4396431863
2004/06/01 10:55:35 cd 1.2.4.3: #i10000# Fixed merge problems 2004/05/31 04:18:11 cd 1.2.4.2: RESYNC: (1.2-1.3); FILE MERGED 2004/04/05 07:57:37 cd 1.2.4.1: #i26252# New internal structure to transport toolbar data
53 lines
1.7 KiB
C++
53 lines
1.7 KiB
C++
#ifndef __FRAMEWORK_XML_TOOLBOXCONFIGURATION_HXX_
|
|
#define __FRAMEWORK_XML_TOOLBOXCONFIGURATION_HXX_
|
|
|
|
#ifndef _SVARRAY_HXX
|
|
#include <svtools/svarray.hxx>
|
|
#endif
|
|
#ifndef _SV_BITMAP_HXX
|
|
#include <vcl/bitmap.hxx>
|
|
#endif
|
|
#ifndef _STRING_HXX
|
|
#include <tools/string.hxx>
|
|
#endif
|
|
|
|
#ifndef _COM_SUN_STAR_IO_XINPUTSTREAM_HPP_
|
|
#include <com/sun/star/io/XInputStream.hpp>
|
|
#endif
|
|
#ifndef _COM_SUN_STAR_IO_XOUPUTSTREAM_HPP_
|
|
#include <com/sun/star/io/XOutputStream.hpp>
|
|
#endif
|
|
#ifndef _COM_SUN_STAR_CONTAINER_XINDEXCONTAINER_HPP_
|
|
#include <com/sun/star/container/XIndexContainer.hpp>
|
|
#endif
|
|
#ifndef _COM_SUN_STAR_CONTAINER_XINDEXACCESS_HPP_
|
|
#include <com/sun/star/container/XIndexAccess.hpp>
|
|
#endif
|
|
|
|
// #110897#
|
|
#ifndef _COM_SUN_STAR_LANG_XMULTISERVICEFACTORY_HPP_
|
|
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
|
|
#endif
|
|
|
|
namespace framework
|
|
{
|
|
|
|
class ToolBoxConfiguration
|
|
{
|
|
public:
|
|
// #110897#
|
|
static sal_Bool LoadToolBox(
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& xServiceFactory,
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::io::XInputStream >& rInputStream,
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::container::XIndexContainer >& rToolbarConfiguration );
|
|
|
|
// #110897#
|
|
static sal_Bool StoreToolBox(
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& xServiceFactory,
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::io::XOutputStream >& rOutputStream,
|
|
const ::com::sun::star::uno::Reference< ::com::sun::star::container::XIndexAccess >& rToolbarConfiguration );
|
|
};
|
|
|
|
} // namespace framework
|
|
|
|
#endif // __FRAMEWORK_XML_TOOLBOXCONFIGURATION_HXX_
|