/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ #pragma once #include #include #include #include #include #include #include namespace com::sun::star { namespace accessibility { class XAccessible; class XAccessibleContext; } namespace awt { class XWindow; } } namespace vcl { class IAccessibleBrowseBox; } namespace vcl { class IAccessibleTabListBox; } namespace vcl { class IAccessibleTableProvider; } namespace vcl { class Window; } class CheckBox; class ComboBox; class Edit; class FixedHyperlink; class FixedText; class FormattedField; class HeaderBar; class ListBox; class PushButton; class RadioButton; class ScrollBar; class SvHeaderTabListBox; class SvtIconChoiceCtrl; class ToolBox; class SvTreeListBox; class TextEngine; class TextView; namespace vcl { namespace table { class IAccessibleTable; class IAccessibleTableControl; } } class VCL_DLLPUBLIC AccessibleFactory { public: AccessibleFactory() = delete; static css::uno::Reference createAccessibleContext(PushButton* pButton); static css::uno::Reference createAccessibleContext(CheckBox* pCheckBox); static css::uno::Reference createAccessibleContext(RadioButton* pRadioButton); static css::uno::Reference createAccessibleContext(ListBox* pListBox); static css::uno::Reference createAccessibleContext(FixedText* pFixedText); static css::uno::Reference createAccessibleContext(FixedHyperlink* pFixedHyperlink); static css::uno::Reference createAccessibleContext(ScrollBar* pScrollBar); static css::uno::Reference createAccessibleContext(Edit* pEdit); static css::uno::Reference createAccessibleContext(ComboBox* pComboBox); static css::uno::Reference createAccessibleContext(ToolBox* pToolBox); static css::uno::Reference createAccessibleContext(HeaderBar* pHeaderBar); static css::uno::Reference createAccessibleContext(FormattedField* pFormattedField); static css::uno::Reference createAccessibleContext(vcl::Window* pWindow); static vcl::IAccessibleTabListBox* createAccessibleTabListBox(const css::uno::Reference& rxParent, SvHeaderTabListBox& rBox); static rtl::Reference createAccessibleBrowseBox(const css::uno::Reference& _rxParent, vcl::IAccessibleTableProvider& _rBrowseBox); static rtl::Reference createAccessibleTableControl( const css::uno::Reference& _rxParent, vcl::table::IAccessibleTable& _rTable); static css::uno::Reference createAccessibleIconChoiceCtrl( SvtIconChoiceCtrl& _rIconCtrl, const css::uno::Reference& _xParent); static css::uno::Reference createAccessibleTextWindowContext(vcl::Window* pWindow, TextEngine& rEngine, TextView& rView); static css::uno::Reference createAccessibleTreeListBox( SvTreeListBox& _rListBox, const css::uno::Reference& _xParent); static css::uno::Reference createAccessibleIconView(SvTreeListBox& _rListBox, const css::uno::Reference& _xParent); static css::uno::Reference createAccessibleBrowseBoxHeaderBar( const css::uno::Reference& rxParent, vcl::IAccessibleTableProvider& _rOwningTable, AccessibleBrowseBoxObjType _eObjType); static css::uno::Reference createAccessibleBrowseBoxTableCell( const css::uno::Reference& _rxParent, vcl::IAccessibleTableProvider& _rBrowseBox, sal_Int32 _nRowId, sal_uInt16 _nColId, sal_Int32 _nOffset); static css::uno::Reference createAccessibleBrowseBoxHeaderCell( sal_Int32 _nColumnRowId, const css::uno::Reference& rxParent, vcl::IAccessibleTableProvider& _rBrowseBox, AccessibleBrowseBoxObjType _eObjType); static css::uno::Reference createAccessibleCheckBoxCell( const css::uno::Reference& _rxParent, vcl::IAccessibleTableProvider& _rBrowseBox, sal_Int32 _nRowPos, sal_uInt16 _nColPos, const TriState& _eState, bool _bIsTriState); static css::uno::Reference createEditBrowseBoxTableCellAccess( const css::uno::Reference& _rxParent, const css::uno::Reference& _rxControlAccessible, const css::uno::Reference& _rxFocusWindow, vcl::IAccessibleTableProvider& _rBrowseBox, sal_Int32 _nRowPos, sal_uInt16 _nColPos); }; /* vim:set shiftwidth=4 softtabstop=4 expandtab: */