1*cdf0e10cSrcweir/************************************************************************* 2*cdf0e10cSrcweir * 3*cdf0e10cSrcweir * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4*cdf0e10cSrcweir * 5*cdf0e10cSrcweir * Copyright 2000, 2010 Oracle and/or its affiliates. 6*cdf0e10cSrcweir * 7*cdf0e10cSrcweir * OpenOffice.org - a multi-platform office productivity suite 8*cdf0e10cSrcweir * 9*cdf0e10cSrcweir * This file is part of OpenOffice.org. 10*cdf0e10cSrcweir * 11*cdf0e10cSrcweir * OpenOffice.org is free software: you can redistribute it and/or modify 12*cdf0e10cSrcweir * it under the terms of the GNU Lesser General Public License version 3 13*cdf0e10cSrcweir * only, as published by the Free Software Foundation. 14*cdf0e10cSrcweir * 15*cdf0e10cSrcweir * OpenOffice.org is distributed in the hope that it will be useful, 16*cdf0e10cSrcweir * but WITHOUT ANY WARRANTY; without even the implied warranty of 17*cdf0e10cSrcweir * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18*cdf0e10cSrcweir * GNU Lesser General Public License version 3 for more details 19*cdf0e10cSrcweir * (a copy is included in the LICENSE file that accompanied this code). 20*cdf0e10cSrcweir * 21*cdf0e10cSrcweir * You should have received a copy of the GNU Lesser General Public License 22*cdf0e10cSrcweir * version 3 along with OpenOffice.org. If not, see 23*cdf0e10cSrcweir * <http://www.openoffice.org/license.html> 24*cdf0e10cSrcweir * for a copy of the LGPLv3 License. 25*cdf0e10cSrcweir * 26*cdf0e10cSrcweir ************************************************************************/ 27*cdf0e10cSrcweir#ifndef __com_sun_star_sheet_AccessibleSpreadsheet_idl__ 28*cdf0e10cSrcweir#define __com_sun_star_sheet_AccessibleSpreadsheet_idl__ 29*cdf0e10cSrcweir 30*cdf0e10cSrcweir#ifndef __com_sun_star_accessibility_XAccessibleContext_idl__ 31*cdf0e10cSrcweir#include <com/sun/star/accessibility/XAccessibleContext.idl> 32*cdf0e10cSrcweir#endif 33*cdf0e10cSrcweir 34*cdf0e10cSrcweir#ifndef __com_sun_star_accessibility_XAccessibleComponent_idl__ 35*cdf0e10cSrcweir#include <com/sun/star/accessibility/XAccessibleComponent.idl> 36*cdf0e10cSrcweir#endif 37*cdf0e10cSrcweir 38*cdf0e10cSrcweir#ifndef __com_sun_star_accessibility_XAccessibleTable_idl__ 39*cdf0e10cSrcweir#include <com/sun/star/accessibility/XAccessibleTable.idl> 40*cdf0e10cSrcweir#endif 41*cdf0e10cSrcweir 42*cdf0e10cSrcweir#ifndef __com_sun_star_accessibility_XAccessibleSelection_idl__ 43*cdf0e10cSrcweir#include <com/sun/star/accessibility/XAccessibleSelection.idl> 44*cdf0e10cSrcweir#endif 45*cdf0e10cSrcweir 46*cdf0e10cSrcweir#ifndef __com_sun_star_accessibility_XAccessibleEventBroadcaster_idl__ 47*cdf0e10cSrcweir#include <com/sun/star/accessibility/XAccessibleEventBroadcaster.idl> 48*cdf0e10cSrcweir#endif 49*cdf0e10cSrcweir 50*cdf0e10cSrcweir//============================================================================= 51*cdf0e10cSrcweir 52*cdf0e10cSrcweirmodule com { module sun { module star { module sheet { 53*cdf0e10cSrcweir 54*cdf0e10cSrcweir//============================================================================= 55*cdf0e10cSrcweir 56*cdf0e10cSrcweir/** The accessible view of a spreadsheet document 57*cdf0e10cSrcweir 58*cdf0e10cSrcweir @since OOo 1.1.2 59*cdf0e10cSrcweir*/ 60*cdf0e10cSrcweirpublished service AccessibleSpreadsheet 61*cdf0e10cSrcweir{ 62*cdf0e10cSrcweir /** This interface gives access to any object in the currently visible table 63*cdf0e10cSrcweir on the desktop. 64*cdf0e10cSrcweir 65*cdf0e10cSrcweir <ul> 66*cdf0e10cSrcweir <li>The parent returned by <method scope="::com::sun::star::accessibility" 67*cdf0e10cSrcweir >XAccessibleContext::getAccessibleParent</method> 68*cdf0e10cSrcweir is the accessible spreadsheet document view.</li> 69*cdf0e10cSrcweir <li>The children returned by <method scope="::com::sun::star::accessibility" 70*cdf0e10cSrcweir >XAccessibleContext::getAccessibleChild</method> all 71*cdf0e10cSrcweir support the interface XAccessible. Calling 72*cdf0e10cSrcweir <method scope="::com::sun::star::accessibility" 73*cdf0e10cSrcweir >XAccessible::getAccessibleContext</method> for these children 74*cdf0e10cSrcweir returns an object that supports the following service.</li> 75*cdf0e10cSrcweir <ul> 76*cdf0e10cSrcweir <li><type scope="::com::sun::star::sheet">AccessibleCell</type>: 77*cdf0e10cSrcweir A child where calling 78*cdf0e10cSrcweir <method scope="::com::sun::star::accessibility" 79*cdf0e10cSrcweir >XAccessibleContext::getAccessibleChild</method> 80*cdf0e10cSrcweir an object that supports this service is returned for 81*cdf0e10cSrcweir every cell in this table.</li> 82*cdf0e10cSrcweir </ul> 83*cdf0e10cSrcweir <p>The following rules apply to the children order.</p> 84*cdf0e10cSrcweir <ul> 85*cdf0e10cSrcweir <li>All the children are cells. The order of this cells is to 86*cdf0e10cSrcweir the order on the screen. This means that the first cell is the 87*cdf0e10cSrcweir cell in the left top edge of the table and the last one is the 88*cdf0e10cSrcweir cell in the right bottom edge of the table. The second is the 89*cdf0e10cSrcweir cell in the first row and second xolumn and so on.</li> 90*cdf0e10cSrcweir </ul> 91*cdf0e10cSrcweir <li>The description is ???.</li> 92*cdf0e10cSrcweir <li>The name is the given table name.</li> 93*cdf0e10cSrcweir <li>The role is <const scope="::com::sun::star::accessibility" 94*cdf0e10cSrcweir >AccessibleRole::TABLE</const></li> 95*cdf0e10cSrcweir <li>There are relations between the table and the shapes with an anchor 96*cdf0e10cSrcweir on this table (not with an anchor on a cell in this table).</li> 97*cdf0e10cSrcweir <li>The following states are supported: 98*cdf0e10cSrcweir <ul> 99*cdf0e10cSrcweir <li><const scope="::com::sun::star::accessibility" 100*cdf0e10cSrcweir >AccessibleStateType::DEFUNC</const> is always false if the 101*cdf0e10cSrcweir table is not deleted and the document is open, otherwise it 102*cdf0e10cSrcweir is true.</li> 103*cdf0e10cSrcweir <li><const scope="::com::sun::star::accessibility" 104*cdf0e10cSrcweir >AccessibleStateType::EDITABLE</const> is false if the 105*cdf0e10cSrcweir table is protected, otherwise it is true.</li> 106*cdf0e10cSrcweir <li><const scope="::com::sun::star::accessibility" 107*cdf0e10cSrcweir >AccessibleStateType::ENABLED</const> is always true.</li> 108*cdf0e10cSrcweir <li><const scope="::com::sun::star::accessibility" 109*cdf0e10cSrcweir >AccessibleStateType::MULTI_SELECTABLE</const> is always 110*cdf0e10cSrcweir true.</li> 111*cdf0e10cSrcweir <li><const scope="::com::sun::star::accessibility" 112*cdf0e10cSrcweir >AccessibleStateType::OPAQUE</const> is always true.</li> 113*cdf0e10cSrcweir <li><const scope="::com::sun::star::accessibility" 114*cdf0e10cSrcweir >AccessibleStateType::RESIZEABLE</const>is always 115*cdf0e10cSrcweir false.</li> 116*cdf0e10cSrcweir <li><const scope="::com::sun::star::accessibility" 117*cdf0e10cSrcweir >AccessibleStateType::SELECTABLE</const> is always 118*cdf0e10cSrcweir true.</li> 119*cdf0e10cSrcweir <li><const scope="::com::sun::star::accessibility" 120*cdf0e10cSrcweir >AccessibleStateType::SELECTED</const> is true if the 121*cdf0e10cSrcweir complete table (all cells) is selected.</li> 122*cdf0e10cSrcweir <li><const scope="::com::sun::star::accessibility" 123*cdf0e10cSrcweir >AccessibleStateType::SHOWING</const>Is true if the 124*cdf0e10cSrcweir Bounding Box lies in the Bounding Box of the parent. 125*cdf0e10cSrcweir Otherwise it is false.</li> 126*cdf0e10cSrcweir <li><const scope="::com::sun::star::accessibility" 127*cdf0e10cSrcweir >AccessibleStateType::VISIBLE</const>Is always true.</li> 128*cdf0e10cSrcweir </ul> 129*cdf0e10cSrcweir </li> 130*cdf0e10cSrcweir </ul> 131*cdf0e10cSrcweir */ 132*cdf0e10cSrcweir interface ::com::sun::star::accessibility::XAccessibleContext; 133*cdf0e10cSrcweir 134*cdf0e10cSrcweir /** This interface gives access to the visibility of the table. 135*cdf0e10cSrcweir */ 136*cdf0e10cSrcweir interface ::com::sun::star::accessibility::XAccessibleComponent; 137*cdf0e10cSrcweir 138*cdf0e10cSrcweir /** This interface gives access to any cell that is at least partially 139*cdf0e10cSrcweir visible on the screen. So this interface gives access to the same 140*cdf0e10cSrcweir things like the XAccessibleContext interface. Therefor it use more 141*cdf0e10cSrcweir usable methods. Also it gives access to some table specific data. 142*cdf0e10cSrcweir */ 143*cdf0e10cSrcweir interface ::com::sun::star::accessibility::XAccessibleTable; 144*cdf0e10cSrcweir 145*cdf0e10cSrcweir /** This interface is for selecting the cells. 146*cdf0e10cSrcweir */ 147*cdf0e10cSrcweir interface ::com::sun::star::accessibility::XAccessibleSelection; 148*cdf0e10cSrcweir 149*cdf0e10cSrcweir /** This is the interface for listeners */ 150*cdf0e10cSrcweir interface ::com::sun::star::accessibility::XAccessibleEventBroadcaster; 151*cdf0e10cSrcweir}; 152*cdf0e10cSrcweir 153*cdf0e10cSrcweir//============================================================================= 154*cdf0e10cSrcweir 155*cdf0e10cSrcweir}; }; }; }; 156*cdf0e10cSrcweir 157*cdf0e10cSrcweir#endif 158