tdf#130857 qt weld: Implement QtInstanceWidget::get_text_height
[LibreOffice.git] / offapi / com / sun / star / frame / LayoutManagerEvents.idl
blob2bc785fcfa4ed84109a190a24e62285ec66056db
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 frame {
23 /** provides information about layout manager events
25 <p>Events are provided <strong>only</strong> for notification
26 purposes only.</p>
28 @see com::sun::star::frame::LayoutManager
29 @see com::sun::star::frame::XLayoutManagerEventBroadcaster
31 @since OOo 2.0
33 constants LayoutManagerEvents
35 /** specifies that the layout manager processed a lock call, which
36 prevents it from doing layouts.
38 <p>
39 This event sends the current lock count as additional
40 information.
41 </p>
43 const short LOCK = 0;
45 /** specifies that the layout manager processed an unlock call, which
46 admit layouts when the lock count is zero.
48 <p>
49 This event sends the current lock count as additional
50 information.
51 </p>
53 const short UNLOCK = 1;
55 /** specifies that the layout manager refreshed the layout of
56 the frame.
58 <p>
59 This event sends no additional information.
60 </p>
62 const short LAYOUT = 2;
64 /** specifies that the layout manager container frame window
65 becomes visible.
67 <p>
68 This event sends no additional information.
69 </p>
71 const short VISIBLE = 3;
73 /** specifies that the layout manager container frame window
74 becomes invisible.
76 <p>
77 This event sends no additional information.
78 </p>
80 const short INVISIBLE = 4;
82 /** A merged menu bar has been set at the layout manager.
84 <p>
85 This event sends no additional information.
86 </p>
88 const short MERGEDMENUBAR = 5;
90 /** specifies that a certain user interface element has been made
91 visible
93 <p>
94 This event sends the resource url of the newly visible user
95 interface element.
96 </p>
98 const short UIELEMENT_VISIBLE = 6;
100 /** specifies that a certain user interface element has been made
101 invisible
104 This event sends the resource url of the invisible user
105 interface element.
106 </p>
108 const short UIELEMENT_INVISIBLE = 7;
111 }; }; }; };
113 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */