Version 3.6.0.4, tag libreoffice-3.6.0.4
[LibreOffice.git] / uui / source / requeststringresolver.hxx
blob5492cc4cac66ed1d1afc446ce594173d68984b53
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*************************************************************************
4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6 * Copyright 2000, 2010 Oracle and/or its affiliates.
8 * OpenOffice.org - a multi-platform office productivity suite
10 * This file is part of OpenOffice.org.
12 * OpenOffice.org is free software: you can redistribute it and/or modify
13 * it under the terms of the GNU Lesser General Public License version 3
14 * only, as published by the Free Software Foundation.
16 * OpenOffice.org is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU Lesser General Public License version 3 for more details
20 * (a copy is included in the LICENSE file that accompanied this code).
22 * You should have received a copy of the GNU Lesser General Public License
23 * version 3 along with OpenOffice.org. If not, see
24 * <http://www.openoffice.org/license.html>
25 * for a copy of the LGPLv3 License.
27 ************************************************************************/
29 #ifndef UUI_REQUESTSTRINGRESOLVER_HXX
30 #define UUI_REQUESTSTRINGRESOLVER_HXX
32 #include "com/sun/star/lang/XServiceInfo.hpp"
33 #include "com/sun/star/task/XInteractionRequestStringResolver.hpp"
34 #include "cppuhelper/implbase2.hxx"
36 class UUIInteractionHelper;
38 class UUIInteractionRequestStringResolver:
39 public cppu::WeakImplHelper2<
40 com::sun::star::lang::XServiceInfo,
41 com::sun::star::task::XInteractionRequestStringResolver >
43 public:
44 static char const m_aImplementationName[];
46 static com::sun::star::uno::Sequence< rtl::OUString >
47 getSupportedServiceNames_static();
49 static com::sun::star::uno::Reference< com::sun::star::uno::XInterface >
50 SAL_CALL
51 createInstance(
52 com::sun::star::uno::Reference<
53 com::sun::star::lang::XMultiServiceFactory > const &
54 rServiceFactory)
55 SAL_THROW((com::sun::star::uno::Exception));
57 private:
58 com::sun::star::uno::Reference<
59 com::sun::star::lang::XMultiServiceFactory > m_xServiceFactory;
60 UUIInteractionHelper * m_pImpl;
62 UUIInteractionRequestStringResolver(UUIInteractionRequestStringResolver &); // not implemented
63 void operator =(UUIInteractionRequestStringResolver); // not implemented
65 UUIInteractionRequestStringResolver(
66 com::sun::star::uno::Reference<
67 com::sun::star::lang::XMultiServiceFactory >
68 const & rServiceFactory)
69 SAL_THROW(());
71 virtual ~UUIInteractionRequestStringResolver() SAL_THROW(());
73 virtual rtl::OUString SAL_CALL getImplementationName()
74 throw (com::sun::star::uno::RuntimeException);
76 virtual sal_Bool SAL_CALL supportsService(rtl::OUString const &
77 rServiceName)
78 throw (com::sun::star::uno::RuntimeException);
80 virtual com::sun::star::uno::Sequence< rtl::OUString > SAL_CALL
81 getSupportedServiceNames()
82 throw (com::sun::star::uno::RuntimeException);
84 virtual com::sun::star::beans::Optional< rtl::OUString > SAL_CALL
85 getStringFromInformationalRequest(
86 const com::sun::star::uno::Reference<
87 com::sun::star::task::XInteractionRequest >& Request )
88 throw (com::sun::star::uno::RuntimeException);
91 #endif // UUI_REQUESTSTRINGRESOLVER_HXX
93 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */