Version 5.2.6.1, tag libreoffice-5.2.6.1
[LibreOffice.git] / dbaccess / source / ui / inc / TableWindowAccess.hxx
blobffe7c92fc44ed699a917d6484b04abdc960bf701
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
19 #ifndef INCLUDED_DBACCESS_SOURCE_UI_INC_TABLEWINDOWACCESS_HXX
20 #define INCLUDED_DBACCESS_SOURCE_UI_INC_TABLEWINDOWACCESS_HXX
22 #include <com/sun/star/accessibility/XAccessibleRelationSet.hpp>
23 #include <cppuhelper/implbase2.hxx>
24 #include <toolkit/awt/vclxaccessiblecomponent.hxx>
25 #include <vcl/vclptr.hxx>
27 namespace dbaui
29 typedef ::cppu::ImplHelper2< css::accessibility::XAccessibleRelationSet,
30 css::accessibility::XAccessible
31 > OTableWindowAccess_BASE;
32 class OTableWindow;
33 /** the class OTableWindowAccess represents the accessible object for table windows
34 like they are used in the QueryDesign and the RelationDesign
36 class OTableWindowAccess : public VCLXAccessibleComponent
37 , public OTableWindowAccess_BASE
39 VclPtr<OTableWindow> m_pTable; // the window which I should give accessibility to
41 css::uno::Reference< css::accessibility::XAccessible > getParentChild(sal_Int32 _nIndex);
42 protected:
43 /** this function is called upon disposing the component
45 virtual void SAL_CALL disposing() override;
47 virtual void ProcessWindowEvent( const VclWindowEvent& rVclWindowEvent ) override;
48 public:
49 OTableWindowAccess( OTableWindow* _pTable);
51 // XInterface
52 virtual css::uno::Any SAL_CALL queryInterface( const css::uno::Type& aType ) throw (css::uno::RuntimeException, std::exception) override;
53 virtual void SAL_CALL acquire( ) throw () override
54 { // here inline is allowed because we do not use this class outside this dll
55 VCLXAccessibleComponent::acquire( );
57 virtual void SAL_CALL release( ) throw () override
58 { // here inline is allowed because we do not use this class outside this dll
59 VCLXAccessibleComponent::release( );
62 // XTypeProvider
63 virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes( ) throw (css::uno::RuntimeException, std::exception) override;
65 // XServiceInfo
66 virtual OUString SAL_CALL getImplementationName() throw(css::uno::RuntimeException, std::exception) override;
67 virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() throw(css::uno::RuntimeException, std::exception) override;
69 // XServiceInfo - static methods
70 static css::uno::Sequence< OUString > getSupportedServiceNames_Static() throw( css::uno::RuntimeException );
71 static OUString getImplementationName_Static() throw( css::uno::RuntimeException );
73 // XAccessible
74 virtual css::uno::Reference< css::accessibility::XAccessibleContext > SAL_CALL getAccessibleContext( ) throw (css::uno::RuntimeException, std::exception) override;
76 // XAccessibleContext
77 virtual sal_Int32 SAL_CALL getAccessibleChildCount( ) throw (css::uno::RuntimeException, std::exception) override;
78 virtual css::uno::Reference< css::accessibility::XAccessible > SAL_CALL getAccessibleChild( sal_Int32 i ) throw (css::lang::IndexOutOfBoundsException,css::uno::RuntimeException, std::exception) override;
79 virtual sal_Int32 SAL_CALL getAccessibleIndexInParent( ) throw (css::uno::RuntimeException, std::exception) override;
80 virtual sal_Int16 SAL_CALL getAccessibleRole( ) throw (css::uno::RuntimeException, std::exception) override;
81 virtual OUString SAL_CALL getAccessibleName( ) throw (css::uno::RuntimeException, std::exception) override;
82 virtual css::uno::Reference< css::accessibility::XAccessibleRelationSet > SAL_CALL getAccessibleRelationSet( ) throw (css::uno::RuntimeException, std::exception) override;
84 // XAccessibleComponent
85 virtual css::uno::Reference< css::accessibility::XAccessible > SAL_CALL getAccessibleAtPoint( const css::awt::Point& aPoint ) throw (css::uno::RuntimeException, std::exception) override;
87 // XAccessibleExtendedComponent
88 virtual OUString SAL_CALL getTitledBorderText( ) throw (css::uno::RuntimeException, std::exception) override;
90 // XAccessibleRelationSet
91 virtual sal_Int32 SAL_CALL getRelationCount( ) throw (css::uno::RuntimeException, std::exception) override;
92 virtual css::accessibility::AccessibleRelation SAL_CALL getRelation( sal_Int32 nIndex ) throw (css::lang::IndexOutOfBoundsException, css::uno::RuntimeException, std::exception) override;
93 virtual sal_Bool SAL_CALL containsRelation( sal_Int16 aRelationType ) throw (css::uno::RuntimeException, std::exception) override;
94 virtual css::accessibility::AccessibleRelation SAL_CALL getRelationByType( sal_Int16 aRelationType ) throw (css::uno::RuntimeException, std::exception) override;
97 #endif // INCLUDED_DBACCESS_SOURCE_UI_INC_TABLEWINDOWACCESS_HXX
99 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */