Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
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/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
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 .
18 : */
19 :
20 : #include <SidebarWinAcc.hxx>
21 :
22 : #include <SidebarWin.hxx>
23 : #include <viewsh.hxx>
24 : #include <accmap.hxx>
25 : #include <toolkit/awt/vclxaccessiblecomponent.hxx>
26 :
27 : #include <com/sun/star/accessibility/AccessibleRole.hpp>
28 :
29 : namespace sw { namespace sidebarwindows {
30 :
31 : // =============================================================================
32 : // declaration and implementation of accessible context for <SidebarWinAccessible> instance
33 : // =============================================================================
34 : class SidebarWinAccessibleContext : public VCLXAccessibleComponent
35 : {
36 : public:
37 0 : explicit SidebarWinAccessibleContext( SwSidebarWin& rSidebarWin,
38 : ViewShell& rViewShell,
39 : const SwFrm* pAnchorFrm )
40 : : VCLXAccessibleComponent( rSidebarWin.GetWindowPeer() )
41 : , mrViewShell( rViewShell )
42 : , mpAnchorFrm( pAnchorFrm )
43 0 : , maMutex()
44 : {
45 0 : rSidebarWin.SetAccessibleRole( css::accessibility::AccessibleRole::COMMENT );
46 0 : }
47 :
48 0 : virtual ~SidebarWinAccessibleContext()
49 0 : {}
50 :
51 0 : void ChangeAnchor( const SwFrm* pAnchorFrm )
52 : {
53 0 : osl::MutexGuard aGuard(maMutex);
54 :
55 0 : mpAnchorFrm = pAnchorFrm;
56 0 : }
57 :
58 : virtual css::uno::Reference< css::accessibility::XAccessible > SAL_CALL
59 0 : getAccessibleParent() throw (css::uno::RuntimeException)
60 : {
61 0 : osl::MutexGuard aGuard(maMutex);
62 :
63 0 : css::uno::Reference< css::accessibility::XAccessible > xAccParent;
64 :
65 0 : if ( mpAnchorFrm &&
66 0 : mrViewShell.GetAccessibleMap() )
67 : {
68 0 : xAccParent = mrViewShell.GetAccessibleMap()->GetContext( mpAnchorFrm, sal_False );
69 : }
70 :
71 0 : return xAccParent;
72 : }
73 :
74 0 : virtual sal_Int32 SAL_CALL getAccessibleIndexInParent() throw (css::uno::RuntimeException)
75 : {
76 0 : osl::MutexGuard aGuard(maMutex);
77 :
78 0 : sal_Int32 nIndex( -1 );
79 :
80 0 : if ( mpAnchorFrm && GetWindow() &&
81 0 : mrViewShell.GetAccessibleMap() )
82 : {
83 : nIndex = mrViewShell.GetAccessibleMap()->GetChildIndex( *mpAnchorFrm,
84 0 : *GetWindow() );
85 : }
86 :
87 0 : return nIndex;
88 : }
89 :
90 : private:
91 : ViewShell& mrViewShell;
92 : const SwFrm* mpAnchorFrm;
93 :
94 : ::osl::Mutex maMutex;
95 : };
96 :
97 : // =============================================================================
98 : // implementaion of accessible for <SwSidebarWin> instance
99 : // =============================================================================
100 0 : SidebarWinAccessible::SidebarWinAccessible( SwSidebarWin& rSidebarWin,
101 : ViewShell& rViewShell,
102 : const SwSidebarItem& rSidebarItem )
103 : : VCLXWindow()
104 : , mrSidebarWin( rSidebarWin )
105 : , mrViewShell( rViewShell )
106 : , mpAnchorFrm( rSidebarItem.maLayoutInfo.mpAnchorFrm )
107 0 : , bAccContextCreated( false )
108 : {
109 0 : SetWindow( &mrSidebarWin );
110 0 : }
111 :
112 0 : SidebarWinAccessible::~SidebarWinAccessible()
113 : {
114 0 : }
115 :
116 0 : void SidebarWinAccessible::ChangeSidebarItem( const SwSidebarItem& rSidebarItem )
117 : {
118 0 : if ( bAccContextCreated )
119 : {
120 : css::uno::Reference< css::accessibility::XAccessibleContext > xAcc
121 0 : = getAccessibleContext();
122 0 : if ( xAcc.is() )
123 : {
124 : SidebarWinAccessibleContext* pAccContext =
125 0 : dynamic_cast<SidebarWinAccessibleContext*>(xAcc.get());
126 0 : if ( pAccContext )
127 : {
128 0 : pAccContext->ChangeAnchor( rSidebarItem.maLayoutInfo.mpAnchorFrm );
129 : }
130 0 : }
131 : }
132 0 : }
133 :
134 0 : css::uno::Reference< css::accessibility::XAccessibleContext > SidebarWinAccessible::CreateAccessibleContext()
135 : {
136 : SidebarWinAccessibleContext* pAccContext =
137 : new SidebarWinAccessibleContext( mrSidebarWin,
138 : mrViewShell,
139 0 : mpAnchorFrm );
140 0 : css::uno::Reference< css::accessibility::XAccessibleContext > xAcc( pAccContext );
141 0 : bAccContextCreated = true;
142 0 : return xAcc;
143 : }
144 :
145 : } } // end of namespace sw::sidebarwindows
146 :
147 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|