1*b16fc349SAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
3*b16fc349SAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4*b16fc349SAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5*b16fc349SAndrew Rist  * distributed with this work for additional information
6*b16fc349SAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7*b16fc349SAndrew Rist  * to you under the Apache License, Version 2.0 (the
8*b16fc349SAndrew Rist  * "License"); you may not use this file except in compliance
9*b16fc349SAndrew Rist  * with the License.  You may obtain a copy of the License at
10*b16fc349SAndrew Rist  *
11*b16fc349SAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12*b16fc349SAndrew Rist  *
13*b16fc349SAndrew Rist  * Unless required by applicable law or agreed to in writing,
14*b16fc349SAndrew Rist  * software distributed under the License is distributed on an
15*b16fc349SAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*b16fc349SAndrew Rist  * KIND, either express or implied.  See the License for the
17*b16fc349SAndrew Rist  * specific language governing permissions and limitations
18*b16fc349SAndrew Rist  * under the License.
19*b16fc349SAndrew Rist  *
20*b16fc349SAndrew Rist  *************************************************************/
21*b16fc349SAndrew Rist 
22*b16fc349SAndrew Rist 
23cdf0e10cSrcweir 
24cdf0e10cSrcweir #ifndef UUI_REQUESTSTRINGRESOLVER_HXX
25cdf0e10cSrcweir #define UUI_REQUESTSTRINGRESOLVER_HXX
26cdf0e10cSrcweir 
27cdf0e10cSrcweir #include "com/sun/star/lang/XServiceInfo.hpp"
28cdf0e10cSrcweir #include "com/sun/star/task/XInteractionRequestStringResolver.hpp"
29cdf0e10cSrcweir #include "cppuhelper/implbase2.hxx"
30cdf0e10cSrcweir 
31cdf0e10cSrcweir class UUIInteractionHelper;
32cdf0e10cSrcweir 
33cdf0e10cSrcweir class UUIInteractionRequestStringResolver:
34cdf0e10cSrcweir     public cppu::WeakImplHelper2<
35cdf0e10cSrcweir         com::sun::star::lang::XServiceInfo,
36cdf0e10cSrcweir         com::sun::star::task::XInteractionRequestStringResolver >
37cdf0e10cSrcweir {
38cdf0e10cSrcweir public:
39cdf0e10cSrcweir     static char const m_aImplementationName[];
40cdf0e10cSrcweir 
41cdf0e10cSrcweir     static com::sun::star::uno::Sequence< rtl::OUString >
42cdf0e10cSrcweir     getSupportedServiceNames_static();
43cdf0e10cSrcweir 
44cdf0e10cSrcweir     static com::sun::star::uno::Reference< com::sun::star::uno::XInterface >
45cdf0e10cSrcweir     SAL_CALL
46cdf0e10cSrcweir     createInstance(
47cdf0e10cSrcweir         com::sun::star::uno::Reference<
48cdf0e10cSrcweir 	    com::sun::star::lang::XMultiServiceFactory > const &
49cdf0e10cSrcweir 	rServiceFactory)
50cdf0e10cSrcweir         SAL_THROW((com::sun::star::uno::Exception));
51cdf0e10cSrcweir 
52cdf0e10cSrcweir private:
53cdf0e10cSrcweir     com::sun::star::uno::Reference<
54cdf0e10cSrcweir 	com::sun::star::lang::XMultiServiceFactory > m_xServiceFactory;
55cdf0e10cSrcweir     UUIInteractionHelper * m_pImpl;
56cdf0e10cSrcweir 
57cdf0e10cSrcweir     UUIInteractionRequestStringResolver(UUIInteractionRequestStringResolver &); // not implemented
58cdf0e10cSrcweir     void operator =(UUIInteractionRequestStringResolver); // not implemented
59cdf0e10cSrcweir 
60cdf0e10cSrcweir     UUIInteractionRequestStringResolver(
61cdf0e10cSrcweir         com::sun::star::uno::Reference<
62cdf0e10cSrcweir             com::sun::star::lang::XMultiServiceFactory >
63cdf0e10cSrcweir                 const & rServiceFactory)
64cdf0e10cSrcweir         SAL_THROW(());
65cdf0e10cSrcweir 
66cdf0e10cSrcweir     virtual ~UUIInteractionRequestStringResolver() SAL_THROW(());
67cdf0e10cSrcweir 
68cdf0e10cSrcweir     virtual rtl::OUString SAL_CALL getImplementationName()
69cdf0e10cSrcweir         throw (com::sun::star::uno::RuntimeException);
70cdf0e10cSrcweir 
71cdf0e10cSrcweir     virtual sal_Bool SAL_CALL supportsService(rtl::OUString const &
72cdf0e10cSrcweir 					      rServiceName)
73cdf0e10cSrcweir         throw (com::sun::star::uno::RuntimeException);
74cdf0e10cSrcweir 
75cdf0e10cSrcweir     virtual com::sun::star::uno::Sequence< rtl::OUString > SAL_CALL
76cdf0e10cSrcweir     getSupportedServiceNames()
77cdf0e10cSrcweir         throw (com::sun::star::uno::RuntimeException);
78cdf0e10cSrcweir 
79cdf0e10cSrcweir     virtual com::sun::star::beans::Optional< rtl::OUString > SAL_CALL
80cdf0e10cSrcweir     getStringFromInformationalRequest(
81cdf0e10cSrcweir         const com::sun::star::uno::Reference<
82cdf0e10cSrcweir             com::sun::star::task::XInteractionRequest >& Request )
83cdf0e10cSrcweir         throw (com::sun::star::uno::RuntimeException);
84cdf0e10cSrcweir };
85cdf0e10cSrcweir 
86cdf0e10cSrcweir #endif // UUI_REQUESTSTRINGRESOLVER_HXX
87