1 /**************************************************************
2  *
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  *
20  *************************************************************/
21 
22 
23 
24 #ifndef _BASIC_MODSIZEEXCEEDED_HXX
25 #define _BASIC_MODSIZEEXCEEDED_HXX
26 
27 #include <com/sun/star/task/XInteractionHandler.hpp>
28 #include <cppuhelper/implbase1.hxx>
29 
30 class ModuleSizeExceeded : public ::cppu::WeakImplHelper1< ::com::sun::star::task::XInteractionRequest >
31 {
32     // C++ interface
33     public:
34     ModuleSizeExceeded( const com::sun::star::uno::Sequence< ::rtl::OUString>& sModules );
35 
36     sal_Bool isAbort() const;
37     sal_Bool isApprove() const;
38 
39     // UNO interface
40     public:
getContinuations()41     virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Reference< com::sun::star::task::XInteractionContinuation > > SAL_CALL getContinuations() throw( ::com::sun::star::uno::RuntimeException ) { return m_lContinuations; }
getRequest()42     com::sun::star::uno::Any SAL_CALL getRequest() throw( com::sun::star::uno::RuntimeException )
43     {
44         return m_aRequest;
45     }
46 
47     // member
48     private:
49     rtl::OUString m_sMods;
50     com::sun::star::uno::Any m_aRequest;
51     com::sun::star::uno::Sequence< com::sun::star::uno::Reference< com::sun::star::task::XInteractionContinuation > > m_lContinuations;
52     com::sun::star::uno::Reference< com::sun::star::task::XInteractionContinuation > m_xAbort;
53     com::sun::star::uno::Reference< com::sun::star::task::XInteractionContinuation> m_xApprove;
54 };
55 
56 #endif
57 
58