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 "AccessibleEditObject.hxx"
21 : #include "scitems.hxx"
22 : #include <editeng/eeitem.hxx>
23 : #include "AccessibleText.hxx"
24 : #include "editsrc.hxx"
25 : #include "scmod.hxx"
26 : #include "inputhdl.hxx"
27 :
28 : #include <unotools/accessiblestatesethelper.hxx>
29 : #include <com/sun/star/accessibility/AccessibleRole.hpp>
30 : #include <com/sun/star/accessibility/AccessibleStateType.hpp>
31 : #include <comphelper/servicehelper.hxx>
32 : #include <svx/AccessibleTextHelper.hxx>
33 : #include <editeng/editview.hxx>
34 : #include <editeng/editeng.hxx>
35 : #include <svx/svdmodel.hxx>
36 : #include <vcl/svapp.hxx>
37 :
38 : using namespace ::com::sun::star;
39 : using namespace ::com::sun::star::accessibility;
40 :
41 : //===== internal ============================================================
42 :
43 0 : ScAccessibleEditObject::ScAccessibleEditObject(
44 : const uno::Reference<XAccessible>& rxParent,
45 : EditView* pEditView, Window* pWin, const rtl::OUString& rName,
46 : const rtl::OUString& rDescription, EditObjectType eObjectType)
47 : :
48 : ScAccessibleContextBase(rxParent, AccessibleRole::TEXT_FRAME),
49 : mpTextHelper(NULL),
50 : mpEditView(pEditView),
51 : mpWindow(pWin),
52 : meObjectType(eObjectType),
53 0 : mbHasFocus(false)
54 : {
55 0 : CreateTextHelper();
56 0 : SetName(rName);
57 0 : SetDescription(rDescription);
58 0 : }
59 :
60 0 : ScAccessibleEditObject::~ScAccessibleEditObject()
61 : {
62 0 : if (!ScAccessibleContextBase::IsDefunc() && !rBHelper.bInDispose)
63 : {
64 : // increment refcount to prevent double call off dtor
65 0 : osl_atomic_increment( &m_refCount );
66 : // call dispose to inform object wich have a weak reference to this object
67 0 : dispose();
68 : }
69 0 : }
70 :
71 0 : void SAL_CALL ScAccessibleEditObject::disposing()
72 : {
73 0 : SolarMutexGuard aGuard;
74 0 : if (mpTextHelper)
75 0 : DELETEZ(mpTextHelper);
76 :
77 0 : ScAccessibleContextBase::disposing();
78 0 : }
79 :
80 0 : void ScAccessibleEditObject::LostFocus()
81 : {
82 0 : mbHasFocus = false;
83 0 : if (mpTextHelper)
84 0 : mpTextHelper->SetFocus(false);
85 0 : CommitFocusLost();
86 0 : }
87 :
88 0 : void ScAccessibleEditObject::GotFocus()
89 : {
90 0 : mbHasFocus = sal_True;
91 0 : CommitFocusGained();
92 0 : if (mpTextHelper)
93 0 : mpTextHelper->SetFocus(sal_True);
94 0 : }
95 :
96 : //===== XAccessibleComponent ============================================
97 :
98 0 : uno::Reference< XAccessible > SAL_CALL ScAccessibleEditObject::getAccessibleAtPoint(
99 : const awt::Point& rPoint )
100 : throw (uno::RuntimeException)
101 : {
102 0 : uno::Reference<XAccessible> xRet;
103 0 : if (containsPoint(rPoint))
104 : {
105 0 : SolarMutexGuard aGuard;
106 0 : IsObjectValid();
107 :
108 0 : if(!mpTextHelper)
109 0 : CreateTextHelper();
110 :
111 0 : xRet = mpTextHelper->GetAt(rPoint);
112 : }
113 :
114 0 : return xRet;
115 : }
116 :
117 0 : Rectangle ScAccessibleEditObject::GetBoundingBoxOnScreen(void) const
118 : throw (uno::RuntimeException)
119 : {
120 0 : Rectangle aScreenBounds;
121 :
122 0 : if ( mpWindow )
123 : {
124 0 : if ( meObjectType == CellInEditMode )
125 : {
126 0 : if ( mpEditView && mpEditView->GetEditEngine() )
127 : {
128 0 : MapMode aMapMode( mpEditView->GetEditEngine()->GetRefMapMode() );
129 0 : aScreenBounds = mpWindow->LogicToPixel( mpEditView->GetOutputArea(), aMapMode );
130 0 : Point aCellLoc = aScreenBounds.TopLeft();
131 0 : Rectangle aWindowRect = mpWindow->GetWindowExtentsRelative( NULL );
132 0 : Point aWindowLoc = aWindowRect.TopLeft();
133 0 : Point aPos( aCellLoc.getX() + aWindowLoc.getX(), aCellLoc.getY() + aWindowLoc.getY() );
134 0 : aScreenBounds.SetPos( aPos );
135 : }
136 : }
137 : else
138 : {
139 0 : aScreenBounds = mpWindow->GetWindowExtentsRelative( NULL );
140 : }
141 : }
142 :
143 0 : return aScreenBounds;
144 : }
145 :
146 0 : Rectangle ScAccessibleEditObject::GetBoundingBox(void) const
147 : throw (uno::RuntimeException)
148 : {
149 0 : Rectangle aBounds( GetBoundingBoxOnScreen() );
150 :
151 0 : if ( mpWindow )
152 : {
153 0 : uno::Reference< XAccessible > xThis( mpWindow->GetAccessible() );
154 0 : if ( xThis.is() )
155 : {
156 0 : uno::Reference< XAccessibleContext > xContext( xThis->getAccessibleContext() );
157 0 : if ( xContext.is() )
158 : {
159 0 : uno::Reference< XAccessible > xParent( xContext->getAccessibleParent() );
160 0 : if ( xParent.is() )
161 : {
162 0 : uno::Reference< XAccessibleComponent > xParentComponent( xParent->getAccessibleContext(), uno::UNO_QUERY );
163 0 : if ( xParentComponent.is() )
164 : {
165 0 : Point aScreenLoc = aBounds.TopLeft();
166 0 : awt::Point aParentScreenLoc = xParentComponent->getLocationOnScreen();
167 0 : Point aPos( aScreenLoc.getX() - aParentScreenLoc.X, aScreenLoc.getY() - aParentScreenLoc.Y );
168 0 : aBounds.SetPos( aPos );
169 0 : }
170 0 : }
171 0 : }
172 0 : }
173 : }
174 :
175 0 : return aBounds;
176 : }
177 :
178 : //===== XAccessibleContext ==============================================
179 :
180 : sal_Int32 SAL_CALL
181 0 : ScAccessibleEditObject::getAccessibleChildCount(void)
182 : throw (uno::RuntimeException)
183 : {
184 0 : SolarMutexGuard aGuard;
185 0 : IsObjectValid();
186 0 : if (!mpTextHelper)
187 0 : CreateTextHelper();
188 0 : return mpTextHelper->GetChildCount();
189 : }
190 :
191 : uno::Reference< XAccessible > SAL_CALL
192 0 : ScAccessibleEditObject::getAccessibleChild(sal_Int32 nIndex)
193 : throw (uno::RuntimeException,
194 : lang::IndexOutOfBoundsException)
195 : {
196 0 : SolarMutexGuard aGuard;
197 0 : IsObjectValid();
198 0 : if (!mpTextHelper)
199 0 : CreateTextHelper();
200 0 : return mpTextHelper->GetChild(nIndex);
201 : }
202 :
203 : uno::Reference<XAccessibleStateSet> SAL_CALL
204 0 : ScAccessibleEditObject::getAccessibleStateSet(void)
205 : throw (uno::RuntimeException)
206 : {
207 0 : SolarMutexGuard aGuard;
208 0 : uno::Reference<XAccessibleStateSet> xParentStates;
209 0 : if (getAccessibleParent().is())
210 : {
211 0 : uno::Reference<XAccessibleContext> xParentContext = getAccessibleParent()->getAccessibleContext();
212 0 : xParentStates = xParentContext->getAccessibleStateSet();
213 : }
214 0 : utl::AccessibleStateSetHelper* pStateSet = new utl::AccessibleStateSetHelper();
215 0 : if (IsDefunc(xParentStates))
216 0 : pStateSet->AddState(AccessibleStateType::DEFUNC);
217 : else
218 : {
219 : // all states are const, because this object exists only in one state
220 0 : pStateSet->AddState(AccessibleStateType::EDITABLE);
221 0 : pStateSet->AddState(AccessibleStateType::ENABLED);
222 0 : pStateSet->AddState(AccessibleStateType::SENSITIVE);
223 0 : pStateSet->AddState(AccessibleStateType::MULTI_LINE);
224 0 : pStateSet->AddState(AccessibleStateType::MULTI_SELECTABLE);
225 0 : pStateSet->AddState(AccessibleStateType::SHOWING);
226 0 : pStateSet->AddState(AccessibleStateType::VISIBLE);
227 : }
228 0 : return pStateSet;
229 : }
230 :
231 : ::rtl::OUString SAL_CALL
232 0 : ScAccessibleEditObject::createAccessibleDescription(void)
233 : throw (uno::RuntimeException)
234 : {
235 : // OSL_FAIL("Should never be called, because is set in the constructor.")
236 0 : return rtl::OUString();
237 : }
238 :
239 : ::rtl::OUString SAL_CALL
240 0 : ScAccessibleEditObject::createAccessibleName(void)
241 : throw (uno::RuntimeException)
242 : {
243 : OSL_FAIL("Should never be called, because is set in the constructor.");
244 0 : return rtl::OUString();
245 : }
246 :
247 : ///===== XAccessibleEventBroadcaster =====================================
248 :
249 : void SAL_CALL
250 0 : ScAccessibleEditObject::addAccessibleEventListener(const uno::Reference<XAccessibleEventListener>& xListener)
251 : throw (uno::RuntimeException)
252 : {
253 0 : if (!mpTextHelper)
254 0 : CreateTextHelper();
255 :
256 0 : mpTextHelper->AddEventListener(xListener);
257 :
258 0 : ScAccessibleContextBase::addAccessibleEventListener(xListener);
259 0 : }
260 :
261 : void SAL_CALL
262 0 : ScAccessibleEditObject::removeAccessibleEventListener(const uno::Reference<XAccessibleEventListener>& xListener)
263 : throw (uno::RuntimeException)
264 : {
265 0 : if (!mpTextHelper)
266 0 : CreateTextHelper();
267 :
268 0 : mpTextHelper->RemoveEventListener(xListener);
269 :
270 0 : ScAccessibleContextBase::removeAccessibleEventListener(xListener);
271 0 : }
272 :
273 : //===== XServiceInfo ====================================================
274 :
275 0 : ::rtl::OUString SAL_CALL ScAccessibleEditObject::getImplementationName(void)
276 : throw (uno::RuntimeException)
277 : {
278 0 : return rtl::OUString(RTL_CONSTASCII_USTRINGPARAM ("ScAccessibleEditObject"));
279 : }
280 :
281 : //===== XTypeProvider =======================================================
282 :
283 : namespace
284 : {
285 : class theScAccessibleEditObjectImplementationId : public rtl::Static< UnoTunnelIdInit, theScAccessibleEditObjectImplementationId > {};
286 : }
287 :
288 : uno::Sequence<sal_Int8> SAL_CALL
289 0 : ScAccessibleEditObject::getImplementationId(void)
290 : throw (uno::RuntimeException)
291 : {
292 0 : return theScAccessibleEditObjectImplementationId::get().getSeq();
293 : }
294 :
295 : //==== internal =========================================================
296 :
297 0 : sal_Bool ScAccessibleEditObject::IsDefunc(
298 : const uno::Reference<XAccessibleStateSet>& rxParentStates)
299 : {
300 0 : return ScAccessibleContextBase::IsDefunc() || !getAccessibleParent().is() ||
301 0 : (rxParentStates.is() && rxParentStates->contains(AccessibleStateType::DEFUNC));
302 : }
303 :
304 0 : void ScAccessibleEditObject::CreateTextHelper()
305 : {
306 0 : if (!mpTextHelper)
307 : {
308 : SAL_WNODEPRECATED_DECLARATIONS_PUSH
309 0 : ::std::auto_ptr < ScAccessibleTextData > pAccessibleTextData;
310 : SAL_WNODEPRECATED_DECLARATIONS_POP
311 0 : if (meObjectType == CellInEditMode || meObjectType == EditControl)
312 : {
313 : pAccessibleTextData.reset
314 0 : (new ScAccessibleEditObjectTextData(mpEditView, mpWindow));
315 : }
316 : else
317 : {
318 : pAccessibleTextData.reset
319 0 : (new ScAccessibleEditLineTextData(NULL, mpWindow));
320 : }
321 :
322 : SAL_WNODEPRECATED_DECLARATIONS_PUSH
323 0 : ::std::auto_ptr< SvxEditSource > pEditSource (new ScAccessibilityEditSource(pAccessibleTextData));
324 : SAL_WNODEPRECATED_DECLARATIONS_POP
325 0 : mpTextHelper = new ::accessibility::AccessibleTextHelper(pEditSource );
326 0 : mpTextHelper->SetEventSource(this);
327 0 : mpTextHelper->SetFocus(mbHasFocus);
328 :
329 : // #i54814# activate cell in edit mode
330 0 : if( meObjectType == CellInEditMode )
331 : {
332 : // do not activate cell object, if top edit line is active
333 0 : const ScInputHandler* pInputHdl = SC_MOD()->GetInputHdl();
334 0 : if( pInputHdl && !pInputHdl->IsTopMode() )
335 : {
336 0 : SdrHint aHint( HINT_BEGEDIT );
337 0 : mpTextHelper->GetEditSource().GetBroadcaster().Broadcast( aHint );
338 : }
339 0 : }
340 : }
341 15 : }
342 :
343 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|