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/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef INCLUDED_COMPHELPER_INTERACTION_HXX
21 #define INCLUDED_COMPHELPER_INTERACTION_HXX
23 #include <cppuhelper/implbase.hxx>
24 #include <com/sun/star/task/XInteractionApprove.hpp>
25 #include <com/sun/star/task/XInteractionDisapprove.hpp>
26 #include <com/sun/star/task/XInteractionAbort.hpp>
27 #include <com/sun/star/task/XInteractionRetry.hpp>
28 #include <com/sun/star/task/XInteractionRequest.hpp>
29 #include <comphelper/comphelperdllapi.h>
39 /** template for instantiating concrete interaction handlers<p/>
40 the template argument must be an interface derived from XInteractionContinuation
42 template <class INTERACTION
>
44 : public ::cppu::WeakImplHelper
< INTERACTION
>
47 OInteraction() : m_bSelected(false) {}
49 /// determines whether or not this handler was selected
50 bool wasSelected() const { return m_bSelected
; }
52 // XInteractionContinuation
53 virtual void SAL_CALL
select() override
;
55 bool m_bSelected
: 1; /// indicates if the select event occurred
59 template <class INTERACTION
>
60 void SAL_CALL OInteraction
< INTERACTION
>::select( )
66 //= OInteractionApprove
68 typedef OInteraction
< css::task::XInteractionApprove
> OInteractionApprove
;
71 //= OInteractionDisapprove
73 typedef OInteraction
< css::task::XInteractionDisapprove
> OInteractionDisapprove
;
78 typedef OInteraction
< css::task::XInteractionAbort
> OInteractionAbort
;
83 typedef OInteraction
< css::task::XInteractionRetry
> OInteractionRetry
;
86 //= OInteractionRequest
88 typedef ::cppu::WeakImplHelper
< css::task::XInteractionRequest
89 > OInteractionRequest_Base
;
90 /** implements an interaction request (com.sun.star.task::XInteractionRequest)<p/>
91 at run time, you can freely add any interaction continuation objects
93 class COMPHELPER_DLLPUBLIC OInteractionRequest final
: public OInteractionRequest_Base
96 m_aRequest
; /// the request we represent
97 std::vector
< css::uno::Reference
< css::task::XInteractionContinuation
> >
98 m_aContinuations
; /// all registered continuations
101 OInteractionRequest(css::uno::Any aRequestDescription
);
102 OInteractionRequest(css::uno::Any aRequestDescription
,
103 std::vector
<css::uno::Reference
<css::task::XInteractionContinuation
>>&& rContinuations
);
105 /// add a new continuation
106 void addContinuation(const css::uno::Reference
< css::task::XInteractionContinuation
>& _rxContinuation
);
108 // XInteractionRequest
109 virtual css::uno::Any SAL_CALL
getRequest( ) override
;
110 virtual css::uno::Sequence
< css::uno::Reference
< css::task::XInteractionContinuation
> > SAL_CALL
getContinuations( ) override
;
113 } // namespace comphelper
116 #endif // INCLUDED_COMPHELPER_INTERACTION_HXX
119 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */