Get the style color and number just once
[LibreOffice.git] / offapi / com / sun / star / awt / AccessibleTabControl.idl
blobf77f2c3ded912846605bf9706bc67a2d81ae4783
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 tab control.
24 @since OOo 1.1.2
26 service AccessibleTabControl
28 /** This interface gives access to the structural information of a
29 tab control:
31 <ul>
32 <li>Role: The role of a tab control is
33 com::sun::star::accessibility::AccessibleRole::PAGE_TAB_LIST.</li>
34 <li>Name: There is no name.</li>
35 <li>Description: The description of a tab control is its localized
36 help text.</li>
37 <li>Children: The children of a tab control are tab pages,
38 whose accessible context supports the service
39 AccessibleTabPage.</li>
40 <li>Parent: The parent is the window that contains the
41 tab control.</li>
42 <li>Relations: There are no relations.</li>
43 <li>States: The states supported by this service are
44 <ul>
45 <li>com::sun::star::accessibility::AccessibleStateType::DEFUNC
46 is set if the object has already been disposed
47 and subsequent calls to this object result in
48 com::sun::star::lang::DisposedException
49 exceptions.</li>
50 <li>com::sun::star::accessibility::AccessibleStateType::ENABLED
51 is set if the object is enabled.</li>
52 <li>com::sun::star::accessibility::AccessibleStateType::FOCUSABLE
53 is always set.</li>
54 <li>com::sun::star::accessibility::AccessibleStateType::FOCUSED
55 is set if the object currently has the keyboard focus.</li>
56 <li>com::sun::star::accessibility::AccessibleStateType::SHOWING
57 is set if the object is displayed on the screen.</li>
58 <li>com::sun::star::accessibility::AccessibleStateType::VISIBLE
59 is always set.</li>
60 </ul>
61 </li>
62 </ul>
64 interface ::com::sun::star::accessibility::XAccessibleContext;
66 interface ::com::sun::star::accessibility::XAccessibleEventBroadcaster;
68 interface ::com::sun::star::accessibility::XAccessibleComponent;
70 interface ::com::sun::star::accessibility::XAccessibleExtendedComponent;
72 /** This interface gives access to the selectable children of a
73 tab control.
75 interface ::com::sun::star::accessibility::XAccessibleSelection;
79 }; }; }; };
81 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */