Version 5.2.6.1, tag libreoffice-5.2.6.1
[LibreOffice.git] / dbaccess / source / ui / inc / ConnectionLineAccess.hxx
blobaba4a567a741d864ac376555037338e6b12a6b3a
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_CONNECTIONLINEACCESS_HXX
20 #define INCLUDED_DBACCESS_SOURCE_UI_INC_CONNECTIONLINEACCESS_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 > OConnectionLineAccess_BASE;
32 class OTableConnection;
33 /** the class OConnectionLineAccess represents the accessible object for the connection between two table windows
34 like they are used in the QueryDesign and the RelationDesign
36 class OConnectionLineAccess : public VCLXAccessibleComponent
37 , public OConnectionLineAccess_BASE
39 VclPtr<const OTableConnection> m_pLine; // the window which I should give accessibility to
40 protected:
41 /** this function is called upon disposing the component
43 virtual void SAL_CALL disposing() override;
45 public:
46 OConnectionLineAccess(OTableConnection* _pLine);
48 // XInterface
49 virtual css::uno::Any SAL_CALL queryInterface( const css::uno::Type& aType ) throw (css::uno::RuntimeException, std::exception) override;
50 virtual void SAL_CALL acquire( ) throw () override
51 { // here inline is allowed because we do not use this class outside this dll
52 VCLXAccessibleComponent::acquire( );
54 virtual void SAL_CALL release( ) throw () override
55 { // here inline is allowed because we do not use this class outside this dll
56 VCLXAccessibleComponent::release( );
59 // XTypeProvider
60 virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes( ) throw (css::uno::RuntimeException, std::exception) override;
62 // XServiceInfo - static methods
63 static OUString getImplementationName_Static() throw( css::uno::RuntimeException );
64 // XServiceInfo
65 virtual OUString SAL_CALL getImplementationName() throw(css::uno::RuntimeException, std::exception) override;
67 // XAccessible
68 virtual css::uno::Reference< css::accessibility::XAccessibleContext > SAL_CALL getAccessibleContext( ) throw (css::uno::RuntimeException, std::exception) override;
70 // XAccessibleContext
71 virtual sal_Int32 SAL_CALL getAccessibleChildCount( ) throw (css::uno::RuntimeException, std::exception) override;
72 virtual css::uno::Reference< css::accessibility::XAccessible > SAL_CALL getAccessibleChild( sal_Int32 i ) throw (css::uno::RuntimeException, std::exception) override;
73 virtual sal_Int32 SAL_CALL getAccessibleIndexInParent( ) throw (css::uno::RuntimeException, std::exception) override;
74 virtual sal_Int16 SAL_CALL getAccessibleRole( ) throw (css::uno::RuntimeException, std::exception) override;
75 virtual OUString SAL_CALL getAccessibleDescription( ) throw (css::uno::RuntimeException, std::exception) override;
76 virtual css::uno::Reference< css::accessibility::XAccessibleRelationSet > SAL_CALL getAccessibleRelationSet( ) throw (css::uno::RuntimeException, std::exception) override;
78 // XAccessibleComponent
79 virtual css::uno::Reference< css::accessibility::XAccessible > SAL_CALL getAccessibleAtPoint( const css::awt::Point& aPoint ) throw (css::uno::RuntimeException, std::exception) override;
80 virtual css::awt::Rectangle SAL_CALL getBounds( ) throw (css::uno::RuntimeException, std::exception) override;
81 virtual css::awt::Point SAL_CALL getLocation( ) throw (css::uno::RuntimeException, std::exception) override;
82 virtual css::awt::Point SAL_CALL getLocationOnScreen( ) throw (css::uno::RuntimeException, std::exception) override;
83 virtual css::awt::Size SAL_CALL getSize( ) throw (css::uno::RuntimeException, std::exception) override;
85 // XAccessibleRelationSet
86 virtual sal_Int32 SAL_CALL getRelationCount( ) throw (css::uno::RuntimeException, std::exception) override;
87 virtual css::accessibility::AccessibleRelation SAL_CALL getRelation( sal_Int32 nIndex ) throw (css::lang::IndexOutOfBoundsException, css::uno::RuntimeException, std::exception) override;
88 virtual sal_Bool SAL_CALL containsRelation( sal_Int16 aRelationType ) throw (css::uno::RuntimeException, std::exception) override;
89 virtual css::accessibility::AccessibleRelation SAL_CALL getRelationByType( sal_Int16 aRelationType ) throw (css::uno::RuntimeException, std::exception) override;
92 #endif // INCLUDED_DBACCESS_SOURCE_UI_INC_CONNECTIONLINEACCESS_HXX
94 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */