bump product version to 4.1.6.2
[LibreOffice.git] / offapi / com / sun / star / awt / AccessibleMenuSeparator.idl
blobd8575bb6572e0e932896dee0985b24a7f5f7c1eb
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 #ifndef __com_sun_star_awt_AccessibleMenuSeparator_idl__
21 #define __com_sun_star_awt_AccessibleMenuSeparator_idl__
23 #include <com/sun/star/accessibility/XAccessibleContext.idl>
24 #include <com/sun/star/accessibility/XAccessibleEventBroadcaster.idl>
25 #include <com/sun/star/accessibility/XAccessibleComponent.idl>
26 #include <com/sun/star/accessibility/XAccessibleExtendedComponent.idl>
28 module com { module sun { module star { module awt {
30 /** specifies accessibility support for a menu separator.
32 @since OOo 1.1.2
34 service AccessibleMenuSeparator
36 /** This interface gives access to the structural information of a
37 menu separator:
39 <ul>
40 <li>Role: The role of a menu separator is <const
41 scope="com::sun::star::accessibility"
42 >AccessibleRole::SEPARATOR</const>.</li>
43 <li>Name: There is no name.</li>
44 <li>Description: There is no description.</li>
45 <li>Children: There are no children.</li>
46 <li>Parent: The parent of a menu separator is a menu bar,
47 a pop-up menu or a menu, whose accessible context supports the
48 services <type>AccessibleMenuBar</type>,
49 <type>AccessiblePopupMenu</type> or
50 <type>AccessibleMenu</type>.</li>
51 <li>Relations: There are no relations.</li>
52 <li>States: The states supported by this service are
53 <ul>
54 <li><const scope="com::sun::star::accessibility"
55 >AccessibleStateType::DEFUNC</const>
56 is set if the object has already been disposed
57 and subsequent calls to this object result in
58 <type scope="com::sun::star::lang">DisposedException</type>
59 exceptions.</li>
60 <li><const scope="com::sun::star::accessibility"
61 >AccessibleStateType::ENABLED</const> is set
62 if the object is enabled.</li>
63 <li><const scope="com::sun::star::accessibility"
64 >AccessibleStateType::OPAQUE</const> is always set.</li>
65 <li><const scope="com::sun::star::accessibility"
66 >AccessibleStateType::SELECTABLE</const> is always set.</li>
67 <li><const scope="com::sun::star::accessibility"
68 >AccessibleStateType::SELECTED</const> is set
69 if the object is selected.</li>
70 <li><const scope="com::sun::star::accessibility"
71 >AccessibleStateType::SHOWING</const> is set
72 if the object is displayed on the screen.</li>
73 <li><const scope="com::sun::star::accessibility"
74 >AccessibleStateType::VISIBLE</const> is always set.</li>
75 </ul>
76 </li>
77 </ul>
79 interface ::com::sun::star::accessibility::XAccessibleContext;
81 interface ::com::sun::star::accessibility::XAccessibleEventBroadcaster;
83 interface ::com::sun::star::accessibility::XAccessibleComponent;
85 interface ::com::sun::star::accessibility::XAccessibleExtendedComponent;
89 }; }; }; };
91 #endif
93 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */