Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
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/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
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 .
18 : */
19 :
20 : #ifndef INCLUDED_SVX_SOURCE_INC_FMSCRIPTINGENV_HXX
21 : #define INCLUDED_SVX_SOURCE_INC_FMSCRIPTINGENV_HXX
22 :
23 : #include <com/sun/star/script/XEventAttacherManager.hpp>
24 : #include <rtl/ref.hxx>
25 : #include <salhelper/simplereferenceobject.hxx>
26 :
27 : class FmFormModel;
28 :
29 : namespace svxform
30 : {
31 :
32 :
33 :
34 : //= IFormScriptingEnvironment
35 :
36 : /** describes the interface implemented by a component which handles scripting requirements
37 : in a form/control environment.
38 : */
39 3827 : class SAL_NO_VTABLE IFormScriptingEnvironment : public ::salhelper::SimpleReferenceObject
40 : {
41 : public:
42 : /** registers an XEventAttacherManager whose events should be monitored and handled
43 :
44 : @param _rxManager
45 : the XEventAttacherManager to monitor. Must not be <NULL/>.
46 :
47 : @throws ::com::sun::star::lang::IllegalArgumentException
48 : if <arg>_rxManager</arg> is <NULL/>
49 : @throws ::com::sun::star::lang::DisposedException
50 : if the instance is already disposed
51 : @throws ::com::sun::star::uno::RuntimeException
52 : if attaching as script listener to the manager fails with a RuntimeException itself
53 : */
54 : virtual void registerEventAttacherManager(
55 : const ::com::sun::star::uno::Reference< ::com::sun::star::script::XEventAttacherManager >& _rxManager ) = 0;
56 :
57 : /** registers an XEventAttacherManager whose events should not be monitored and handled anymore
58 :
59 : @param _rxManager
60 : the XEventAttacherManager which was previously registered. Must not ne <NULL/>.
61 :
62 : @throws ::com::sun::star::lang::IllegalArgumentException
63 : if <arg>_rxManager</arg> is <NULL/>
64 : @throws ::com::sun::star::lang::DisposedException
65 : if the instance is already disposed
66 : @throws ::com::sun::star::uno::RuntimeException
67 : if removing as script listener from the manager fails with a RuntimeException itself
68 : */
69 : virtual void revokeEventAttacherManager(
70 : const ::com::sun::star::uno::Reference< ::com::sun::star::script::XEventAttacherManager >& _rxManager ) = 0;
71 :
72 : /** disposes the scripting environment instance
73 : */
74 : virtual void dispose() = 0;
75 :
76 : virtual ~IFormScriptingEnvironment();
77 : };
78 : typedef ::rtl::Reference< IFormScriptingEnvironment > PFormScriptingEnvironment;
79 :
80 :
81 : /** creates a default component implementing the IFormScriptingEnvironment interface
82 : */
83 : PFormScriptingEnvironment createDefaultFormScriptingEnvironment( FmFormModel& _rFormModel );
84 :
85 :
86 : }
87 :
88 :
89 : #endif // INCLUDED_SVX_SOURCE_INC_FMSCRIPTINGENV_HXX
90 :
91 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|