1/************************************************************** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one 4 * or more contributor license agreements. See the NOTICE file 5 * distributed with this work for additional information 6 * regarding copyright ownership. The ASF licenses this file 7 * to you under the Apache License, Version 2.0 (the 8 * "License"); you may not use this file except in compliance 9 * with the License. You may obtain a copy of the License at 10 * 11 * http://www.apache.org/licenses/LICENSE-2.0 12 * 13 * Unless required by applicable law or agreed to in writing, 14 * software distributed under the License is distributed on an 15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 * KIND, either express or implied. See the License for the 17 * specific language governing permissions and limitations 18 * under the License. 19 * 20 *************************************************************/ 21 22 23 24#ifndef __com_sun_star_awt_AccessibleMenuSeparator_idl__ 25#define __com_sun_star_awt_AccessibleMenuSeparator_idl__ 26 27#ifndef __com_sun_star_accessibility_XAccessibleContext_idl__ 28#include <com/sun/star/accessibility/XAccessibleContext.idl> 29#endif 30#ifndef __com_sun_star_accessibility_XAccessibleEventBroadcaster_idl__ 31#include <com/sun/star/accessibility/XAccessibleEventBroadcaster.idl> 32#endif 33#ifndef __com_sun_star_accessibility_XAccessibleComponent_idl__ 34#include <com/sun/star/accessibility/XAccessibleComponent.idl> 35#endif 36#ifndef __com_sun_star_accessibility_XAccessibleExtendedComponent_idl__ 37#include <com/sun/star/accessibility/XAccessibleExtendedComponent.idl> 38#endif 39 40module com { module sun { module star { module awt { 41 42/** specifies accessibility support for a menu separator. 43 44 @since OpenOffice 1.1.2 45 */ 46published service AccessibleMenuSeparator 47{ 48 /** This interface gives access to the structural information of a 49 menu separator: 50 51 <ul> 52 <li>Role: The role of a menu separator is <const 53 scope="com::sun::star::accessibility" 54 >AccessibleRole::SEPARATOR</const>.</li> 55 <li>Name: There is no name.</li> 56 <li>Description: There is no description.</li> 57 <li>Children: There are no children.</li> 58 <li>Parent: The parent of a menu separator is a menu bar, 59 a popup menu or a menu, whose accessible context supports the 60 services <type>AccessibleMenuBar</type>, 61 <type>AccessiblePopupMenu</type> or 62 <type>AccessibleMenu</type>.</li> 63 <li>Relations: There are no relations.</li> 64 <li>States: The states supported by this service are 65 <ul> 66 <li><const scope="com::sun::star::accessibility" 67 >AccessibleStateType::DEFUNC</const> 68 is set if the object has already been disposed 69 and subsequent calls to this object result in 70 <type scope="com::sun::star::lang">DisposedException</type> 71 exceptions.</li> 72 <li><const scope="com::sun::star::accessibility" 73 >AccessibleStateType::ENABLED</const> is set 74 if the object is enabled.</li> 75 <li><const scope="com::sun::star::accessibility" 76 >AccessibleStateType::OPAQUE</const> is always set.</li> 77 <li><const scope="com::sun::star::accessibility" 78 >AccessibleStateType::SELECTABLE</const> is always set.</li> 79 <li><const scope="com::sun::star::accessibility" 80 >AccessibleStateType::SELECTED</const> is set 81 if the object is selected.</li> 82 <li><const scope="com::sun::star::accessibility" 83 >AccessibleStateType::SHOWING</const> is set 84 if the object is displayed on the screen.</li> 85 <li><const scope="com::sun::star::accessibility" 86 >AccessibleStateType::VISIBLE</const> is always set.</li> 87 </ul> 88 </li> 89 </ul> 90 */ 91 interface ::com::sun::star::accessibility::XAccessibleContext; 92 93 interface ::com::sun::star::accessibility::XAccessibleEventBroadcaster; 94 95 interface ::com::sun::star::accessibility::XAccessibleComponent; 96 97 interface ::com::sun::star::accessibility::XAccessibleExtendedComponent; 98 99}; 100 101}; }; }; }; 102 103#endif 104