/************************************************************************* * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 * only, as published by the Free Software Foundation. * * OpenOffice.org is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License version 3 for more details * (a copy is included in the LICENSE file that accompanied this code). * * You should have received a copy of the GNU Lesser General Public License * version 3 along with OpenOffice.org. If not, see * * for a copy of the LGPLv3 License. * ************************************************************************/ #ifndef ACCESSIBILITY_STANDARD_VCLXACCESSIBLEBOX_HXX #define ACCESSIBILITY_STANDARD_VCLXACCESSIBLEBOX_HXX #include #include #ifndef _COM_SUN_STAR_ACCESSIBILITY_STANDARD_ACCESSIBLEROLE_HPP_ #include #endif #include #ifndef _CPPUHELPER_IMPLBASE2_HXX #include #endif typedef ::cppu::ImplHelper2< ::com::sun::star::accessibility::XAccessible, ::com::sun::star::accessibility::XAccessibleAction > VCLXAccessibleBox_BASE; /** Base class for list- and combo boxes. This class manages the box' children. The classed derived from this one have only to implement the IsValid method and return the corrent implementation name. */ class VCLXAccessibleBox : public VCLXAccessibleComponent, public VCLXAccessibleBox_BASE { public: enum BoxType {COMBOBOX, LISTBOX}; /** The constructor is initialized with the box type whitch may be either COMBOBOX or LISTBOX and a flag indicating whether the box is a drop down box. */ VCLXAccessibleBox (VCLXWindow* pVCLXindow, BoxType aType, bool bIsDropDownBox); // XTypeProvider DECLARE_XTYPEPROVIDER() // XInterface DECLARE_XINTERFACE() // XAccessible virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleContext > SAL_CALL getAccessibleContext( ) throw (::com::sun::star::uno::RuntimeException); // XAccessibleContext /** Each object has one or two children: an optional text field and the actual list. The text field is not provided for non drop down list boxes. */ sal_Int32 SAL_CALL getAccessibleChildCount (void) throw (::com::sun::star::uno::RuntimeException); /** For drop down list boxes the text field is a not editable VCLXAccessibleTextField, for combo boxes it is an editable VLCAccessibleEdit. */ ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible> SAL_CALL getAccessibleChild (sal_Int32 i) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException); /** The role is always AccessibleRole::COMBO_BOX. */ sal_Int16 SAL_CALL getAccessibleRole (void) throw (::com::sun::star::uno::RuntimeException); sal_Int32 SAL_CALL getAccessibleIndexInParent (void) throw (::com::sun::star::uno::RuntimeException); // XAccessibleAction /** There is one action for drop down boxes and none for others. */ virtual sal_Int32 SAL_CALL getAccessibleActionCount (void) throw (::com::sun::star::uno::RuntimeException); /** The action for drop down boxes lets the user toggle the visibility of the popup menu. */ virtual sal_Bool SAL_CALL doAccessibleAction (sal_Int32 nIndex) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException); /** The returned string is assoicated with resource RID_STR_ACC_ACTION_TOGGLEPOPUP. */ virtual ::rtl::OUString SAL_CALL getAccessibleActionDescription (sal_Int32 nIndex) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException); /** No keybinding returned so far. */ virtual ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleKeyBinding > SAL_CALL getAccessibleActionKeyBinding( sal_Int32 nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException); // XComponent /** This method is called from the implementation helper during an XComponent::dispose() call. */ virtual void SAL_CALL disposing (void); protected: /** Specifies whether the box is a combo box or a list box. List boxes have multi selection. */ BoxType m_aBoxType; /// Specifies whether the box is a drop down box and thus has an action. bool m_bIsDropDownBox; /// The child that represents the text field if there is one. ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible> m_xText; /// The child that contains the items of this box. ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible> m_xList; /** This flag specifies whether an object has a text field as child regardless of whether that child being currently instantiated or not. */ bool m_bHasTextChild; /** This flag specifies whether an object has a list as child regardless of whether that child being currently instantiated or not. This flag is always true in the current implementation because the list child is just another wrapper arround this object and thus has the same life time. */ bool m_bHasListChild; virtual ~VCLXAccessibleBox (void); /** Returns when the object is valid. */ virtual bool IsValid (void) const = 0; virtual void ProcessWindowChildEvent (const VclWindowEvent& rVclWindowEvent); virtual void ProcessWindowEvent (const VclWindowEvent& rVclWindowEvent); private: /// Index in parent. This is settable from the outside. sal_Int32 m_nIndexInParent; }; #endif