1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
10 #ifndef INCLUDED_SFX2_EXOTICFILELOADEXCEPTION_HXX
11 #define INCLUDED_SFX2_EXOTICFILELOADEXCEPTION_HXX
13 #include <com/sun/star/task/XInteractionContinuation.hpp>
14 #include <com/sun/star/task/XInteractionRequest.hpp>
15 #include <comphelper/interaction.hxx>
16 #include <cppuhelper/implbase.hxx>
17 #include <rtl/ref.hxx>
19 class ExoticFileLoadException
: public cppu::WeakImplHelper
<css::task::XInteractionRequest
>
23 ExoticFileLoadException(const OUString
& rURL
, const OUString
& rFilterUIName
);
24 bool isApprove() const;
28 virtual css::uno::Sequence
<css::uno::Reference
<css::task::XInteractionContinuation
>>
29 SAL_CALL
getContinuations() override
31 return m_lContinuations
;
33 css::uno::Any SAL_CALL
getRequest() override
{ return m_aRequest
; }
37 css::uno::Any m_aRequest
;
38 rtl::Reference
<comphelper::OInteractionAbort
> m_xAbort
;
39 rtl::Reference
<comphelper::OInteractionApprove
> m_xApprove
;
40 css::uno::Sequence
<css::uno::Reference
<css::task::XInteractionContinuation
>> m_lContinuations
;
45 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */