1d1766043SAndrew Rist/************************************************************** 2cdf0e10cSrcweir * 3d1766043SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 4d1766043SAndrew Rist * or more contributor license agreements. See the NOTICE file 5d1766043SAndrew Rist * distributed with this work for additional information 6d1766043SAndrew Rist * regarding copyright ownership. The ASF licenses this file 7d1766043SAndrew Rist * to you under the Apache License, Version 2.0 (the 8d1766043SAndrew Rist * "License"); you may not use this file except in compliance 9d1766043SAndrew Rist * with the License. You may obtain a copy of the License at 10cdf0e10cSrcweir * 11d1766043SAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12cdf0e10cSrcweir * 13d1766043SAndrew Rist * Unless required by applicable law or agreed to in writing, 14d1766043SAndrew Rist * software distributed under the License is distributed on an 15d1766043SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16d1766043SAndrew Rist * KIND, either express or implied. See the License for the 17d1766043SAndrew Rist * specific language governing permissions and limitations 18d1766043SAndrew Rist * under the License. 19cdf0e10cSrcweir * 20d1766043SAndrew Rist *************************************************************/ 21d1766043SAndrew Rist 22d1766043SAndrew Rist 23cdf0e10cSrcweir#ifndef __com_sun_star_sheet_AccessiblePageHeaderFooterAreasView_idl__ 24cdf0e10cSrcweir#define __com_sun_star_sheet_AccessiblePageHeaderFooterAreasView_idl__ 25cdf0e10cSrcweir 26cdf0e10cSrcweir#ifndef __com_sun_star_accessibility_XAccessibleContext_idl__ 27cdf0e10cSrcweir#include <com/sun/star/accessibility/XAccessibleContext.idl> 28cdf0e10cSrcweir#endif 29cdf0e10cSrcweir 30cdf0e10cSrcweir#ifndef __com_sun_star_accessibility_XAccessibleComponent_idl__ 31cdf0e10cSrcweir#include <com/sun/star/accessibility/XAccessibleComponent.idl> 32cdf0e10cSrcweir#endif 33cdf0e10cSrcweir 34cdf0e10cSrcweir#ifndef __com_sun_star_accessibility_XAccessibleEventBroadcaster_idl__ 35cdf0e10cSrcweir#include <com/sun/star/accessibility/XAccessibleEventBroadcaster.idl> 36cdf0e10cSrcweir#endif 37cdf0e10cSrcweir 38cdf0e10cSrcweir//============================================================================= 39cdf0e10cSrcweir 40cdf0e10cSrcweirmodule com { module sun { module star { module sheet { 41cdf0e10cSrcweir 42cdf0e10cSrcweir//============================================================================= 43cdf0e10cSrcweir 44cdf0e10cSrcweir/** The accessible view of the Header/Footer in a spreadsheet page preview 45cdf0e10cSrcweir 46*fbef625eSJürgen Schmidt @since OpenOffice 1.1.2 47cdf0e10cSrcweir 48cdf0e10cSrcweir */ 49cdf0e10cSrcweirpublished service AccessiblePageHeaderFooterAreasView 50cdf0e10cSrcweir{ 51cdf0e10cSrcweir /** This interface gives access to the three Header/Footer areas in the 52cdf0e10cSrcweir page preview. 53cdf0e10cSrcweir 54cdf0e10cSrcweir <ul> 55cdf0e10cSrcweir <li>The parent returned by <method scope="::com::sun::star::accessibility" 56cdf0e10cSrcweir >XAccessibleContext::getAccessibleParent</method> 57cdf0e10cSrcweir is the accessible spreadsheet page preview.</li> 58cdf0e10cSrcweir <li>The children returned by 59cdf0e10cSrcweir <method scope="::com::sun::star::accessibility" 60cdf0e10cSrcweir >XAccessibleContext::getAccessibleChild</method> all 61cdf0e10cSrcweir support the interface 62cdf0e10cSrcweir <type scope="::com::sun::star::accessibility">XAccessible</type. 63cdf0e10cSrcweir Calling 64cdf0e10cSrcweir <method scope="::com::sun::star::accessibility" 65cdf0e10cSrcweir >XAccessible::getAccessibleContext</method> for these children 66cdf0e10cSrcweir returns an object that supports one of the following services.</li> 67cdf0e10cSrcweir <ul> 68cdf0e10cSrcweir <li><type scope="::com::sun::star::text">AccessibleHeaderFooterView</type>: 69cdf0e10cSrcweir A child where calling <method scope="::com::sun::star::text" 70cdf0e10cSrcweir >XAccessibleContext::getAccessibleChild</method> 71cdf0e10cSrcweir an object that supports this service is returned for 72cdf0e10cSrcweir every header and footer that is at least partially visible.</li> 73cdf0e10cSrcweir </ul> 74cdf0e10cSrcweir <p>The following rules apply to the children order.</p> 75cdf0e10cSrcweir <ul> 76cdf0e10cSrcweir <li>The first is the left area, than the centre area and the last 77cdf0e10cSrcweir is the right area.</li> 78cdf0e10cSrcweir </ul> 79cdf0e10cSrcweir <li>The description is ???.</li> 80cdf0e10cSrcweir <li>The name is Header or Footer respectively.</li> 81cdf0e10cSrcweir <li>The role is <const scope="::com::sun::star::accessibility" 82cdf0e10cSrcweir >AccessibleRole::HEADER</const> or 83cdf0e10cSrcweir <const scope="::com::sun::star::accessibility" 84cdf0e10cSrcweir >AccessibleRole::FOOTER</const>.</li> 85cdf0e10cSrcweir <li>There are no relations.</li> 86cdf0e10cSrcweir <li>The following states are supported: 87cdf0e10cSrcweir <ul> 88cdf0e10cSrcweir <li><const scope="::com::sun::star::accessibility" 89cdf0e10cSrcweir >AccessibleStateType::DEFUNC</const> is always false until 90cdf0e10cSrcweir the preview is closed.</li> 91cdf0e10cSrcweir <li><const scope="::com::sun::star::accessibility" 92cdf0e10cSrcweir >AccessibleStateType::EDITABLE</const> is always false, 93cdf0e10cSrcweir because the document is not editable in the page preview. 94cdf0e10cSrcweir So it is left out of the list.</li> 95cdf0e10cSrcweir <li><const scope="::com::sun::star::accessibility" 96cdf0e10cSrcweir >AccessibleStateType::ENABLED</const> is always true.</li> 97cdf0e10cSrcweir <li><const scope="::com::sun::star::accessibility" 98cdf0e10cSrcweir >AccessibleStateType::MULTILINE</const> makes no sense on 99cdf0e10cSrcweir a document and so it is left out of the list.</li> 100cdf0e10cSrcweir <li><const scope="::com::sun::star::accessibility" 101cdf0e10cSrcweir >AccessibleStateType::MULTISELECTABLE</const> is always 102cdf0e10cSrcweir false, because in a page preview a selection is not 103cdf0e10cSrcweir possible. So it is left out of the list.</li> 104cdf0e10cSrcweir <li><const scope="::com::sun::star::accessibility" 105cdf0e10cSrcweir >AccessibleStateType::OPAQUE</const> is always true.</li> 106cdf0e10cSrcweir <li><const scope="::com::sun::star::accessibility" 107cdf0e10cSrcweir >AccessibleStateType::RESIZEABLE</const> is always false, 108cdf0e10cSrcweir because you can resize the window of the page preview, but 109cdf0e10cSrcweir not the page preview itself. So it is left out of the 110cdf0e10cSrcweir list.</li> 111cdf0e10cSrcweir <li><const scope="::com::sun::star::accessibility" 112cdf0e10cSrcweir >AccessibleStateType::SELECTABLE</const> is always false, 113cdf0e10cSrcweir because in the page preview is no selection possible. So it 114cdf0e10cSrcweir is left out of the list.</li> 115cdf0e10cSrcweir <li><const scope="::com::sun::star::accessibility" 116cdf0e10cSrcweir >AccessibleStateType::SELECTED</const> is always false, 117cdf0e10cSrcweir because in the page preview is no selection possible. So it 118cdf0e10cSrcweir is left out of the list.</li> 119cdf0e10cSrcweir <li><const scope="::com::sun::star::accessibility" 120cdf0e10cSrcweir >AccessibleStateType::SHOWING</const>Is true if the 121cdf0e10cSrcweir Bounding Box lies in the Bounding Box of the parent. 122cdf0e10cSrcweir Otherwise it is false.</li> 123cdf0e10cSrcweir <li><const scope="::com::sun::star::accessibility" 124cdf0e10cSrcweir >AccessibleStateType::VISIBLE</const>Is always true.</li> 125cdf0e10cSrcweir </ul> 126cdf0e10cSrcweir </li> 127cdf0e10cSrcweir </ul> 128cdf0e10cSrcweir 129cdf0e10cSrcweir */ 130cdf0e10cSrcweir interface ::com::sun::star::accessibility::XAccessibleContext; 131cdf0e10cSrcweir 132cdf0e10cSrcweir /** This interface gives access to the visibility of the document. 133cdf0e10cSrcweir */ 134cdf0e10cSrcweir interface ::com::sun::star::accessibility::XAccessibleComponent; 135cdf0e10cSrcweir 136cdf0e10cSrcweir /** This is the interface for listeners */ 137cdf0e10cSrcweir interface ::com::sun::star::accessibility::XAccessibleEventBroadcaster; 138cdf0e10cSrcweir}; 139cdf0e10cSrcweir 140cdf0e10cSrcweir//============================================================================= 141cdf0e10cSrcweir 142cdf0e10cSrcweir}; }; }; }; 143cdf0e10cSrcweir 144cdf0e10cSrcweir#endif 145