1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: FastTokenHandlerService.hxx,v $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
30 #ifndef OOX_SHAPE_FAST_TOKEN_HANDLER_SERVICE_HXX
31 #define OOX_SHAPE_FAST_TOKEN_HANDLER_SERVICE_HXX
33 #include <oox/core/fasttokenhandler.hxx>
35 #include "sal/config.h"
36 #include "cppuhelper/factory.hxx"
37 #include "cppuhelper/implementationentry.hxx"
38 #include "cppuhelper/implbase2.hxx"
39 #include "com/sun/star/lang/XServiceInfo.hpp"
40 #include "com/sun/star/xml/sax/XFastTokenHandler.hpp"
42 namespace css
= ::com::sun::star
;
47 class FastTokenHandlerService
:
48 public ::cppu::WeakImplHelper2
<
49 css::lang::XServiceInfo
,
50 css::xml::sax::XFastTokenHandler
>
53 explicit FastTokenHandlerService(css::uno::Reference
< css::uno::XComponentContext
> const & context
);
55 // ::com::sun::star::lang::XServiceInfo:
56 virtual ::rtl::OUString SAL_CALL
getImplementationName() throw (css::uno::RuntimeException
);
57 virtual ::sal_Bool SAL_CALL
supportsService(const ::rtl::OUString
& ServiceName
) throw (css::uno::RuntimeException
);
58 virtual css::uno::Sequence
< ::rtl::OUString
> SAL_CALL
getSupportedServiceNames() throw (css::uno::RuntimeException
);
60 // ::com::sun::star::xml::sax::XFastTokenHandler:
61 virtual ::sal_Int32 SAL_CALL
getToken(const ::rtl::OUString
& Identifier
) throw (css::uno::RuntimeException
);
62 virtual ::rtl::OUString SAL_CALL
getIdentifier(::sal_Int32 Token
) throw (css::uno::RuntimeException
);
63 virtual ::com::sun::star::uno::Sequence
< ::sal_Int8
> SAL_CALL
getUTF8Identifier( ::sal_Int32 Token
) throw (::com::sun::star::uno::RuntimeException
);
64 virtual ::sal_Int32 SAL_CALL
getTokenFromUTF8(const css::uno::Sequence
< ::sal_Int8
> & Identifier
) throw (css::uno::RuntimeException
);
67 FastTokenHandlerService(FastTokenHandlerService
&); // not defined
68 void operator =(FastTokenHandlerService
&); // not defined
70 virtual ~FastTokenHandlerService() {}
72 css::uno::Reference
< css::uno::XComponentContext
> m_xContext
;
73 FastTokenHandler mFastTokenHandler
;
76 ::rtl::OUString SAL_CALL
FastTokenHandlerService_getImplementationName();
78 css::uno::Sequence
< ::rtl::OUString
> SAL_CALL
FastTokenHandlerService_getSupportedServiceNames();
80 css::uno::Reference
< css::uno::XInterface
> SAL_CALL
_FastTokenHandlerService_create(
81 const css::uno::Reference
< css::uno::XComponentContext
> & context
)
82 SAL_THROW((css::uno::Exception
));
85 #endif // OOX_SHAPE_FAST_TOKEN_HANDLER_SERVICE_HXX