tdf#130857 qt weld: Implement QtInstanceWidget::get_text_height
[LibreOffice.git] / offapi / com / sun / star / form / XDatabaseParameterBroadcaster2.idl
blob4f0665acf30e15f42b0e8c01d3d42fe56da9de4f
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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 .
21 module com { module sun { module star { module form {
24 /** provides the possibility of receiving an event for configuration of parameters.
26 <p>Note that this interface provides exactly the same functionality as the
27 XDatabaseParameterBroadcaster interface. It exists purely for compatibility
28 with the com::sun::star::script::XEventAttacher::attachSingleEventListener():
29 It expects the methods for adding and removing listeners to follow a certain naming scheme,
30 respective to the name of the listener which is being added/removed.</p>
32 @see XDatabaseParameterBroadcaster
33 @see com::sun::star::script::XEventAttacher
35 interface XDatabaseParameterBroadcaster2: XDatabaseParameterBroadcaster
37 /** registers an XDatabaseParameterListener
39 <p>This method behaves exactly as the XDatabaseParameterBroadcaster::addParameterListener()
40 method inherited from the base interface.</p>
42 void addDatabaseParameterListener( [in] com::sun::star::form::XDatabaseParameterListener aListener );
45 /** revokes an XDatabaseParameterListener
47 <p>This method behaves exactly as the XDatabaseParameterBroadcaster::removeParameterListener()
48 method inherited from the base interface.</p>
50 void removeDatabaseParameterListener( [in] com::sun::star::form::XDatabaseParameterListener aListener );
55 }; }; }; };
57 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */