tdf#130857 qt weld: Implement QtInstanceWidget::get_text_height
[LibreOffice.git] / offapi / com / sun / star / awt / AccessibleStatusBar.idl
blobafb31ddb07b8619d5c83378e3f8f7d3c0f9dd051
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 .
20 module com { module sun { module star { module awt {
22 /** specifies accessibility support for a status bar.
24 @since OOo 1.1.2
26 service AccessibleStatusBar
28 /** This interface gives access to the structural information of a
29 status bar:
31 <ul>
32 <li>Role: The role of a status bar is
33 com::sun::star::accessibility::AccessibleRole::STATUS_BAR.</li>
34 <li>Name: There is no name.</li>
35 <li>Description: There is no description.</li>
36 <li>Children: The children of a status bar are status bar items,
37 whose accessible context supports the service
38 AccessibleStatusBarItem.</li>
39 <li>Parent: The parent is the window that contains the status bar.</li>
40 <li>Relations: There are no relations.</li>
41 <li>States: The states supported by this service are
42 <ul>
43 <li>com::sun::star::accessibility::AccessibleStateType::DEFUNC
44 is set if the object has already been disposed
45 and subsequent calls to this object result in
46 com::sun::star::lang::DisposedException
47 exceptions.</li>
48 <li>com::sun::star::accessibility::AccessibleStateType::ENABLED
49 is set if the object is enabled.</li>
50 <li>com::sun::star::accessibility::AccessibleStateType::SHOWING
51 is set if the object is displayed on the screen.</li>
52 <li>com::sun::star::accessibility::AccessibleStateType::VISIBLE
53 is always set.</li>
54 </ul>
55 </li>
56 </ul>
58 interface ::com::sun::star::accessibility::XAccessibleContext;
60 interface ::com::sun::star::accessibility::XAccessibleEventBroadcaster;
62 interface ::com::sun::star::accessibility::XAccessibleComponent;
64 interface ::com::sun::star::accessibility::XAccessibleExtendedComponent;
68 }; }; }; };
70 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */