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 <accfrmobj.hxx>
21 :
22 : #include <accmap.hxx>
23 : #include <acccontext.hxx>
24 :
25 : #include <viewsh.hxx>
26 : #include <rootfrm.hxx>
27 : #include <flyfrm.hxx>
28 : #include <pagefrm.hxx>
29 : #include <cellfrm.hxx>
30 : #include <swtable.hxx>
31 : #include <dflyobj.hxx>
32 : #include <frmfmt.hxx>
33 : #include <fmtanchr.hxx>
34 : #include <dcontact.hxx>
35 :
36 : #include <pam.hxx>
37 :
38 : #include <vcl/window.hxx>
39 :
40 : namespace sw { namespace access {
41 :
42 0 : SwAccessibleChild::SwAccessibleChild()
43 : : mpFrm( 0 )
44 : , mpDrawObj( 0 )
45 0 : , mpWindow( 0 )
46 0 : {}
47 :
48 0 : SwAccessibleChild::SwAccessibleChild( const SdrObject* pDrawObj )
49 : : mpFrm( 0 )
50 : , mpDrawObj( 0 )
51 0 : , mpWindow( 0 )
52 : {
53 0 : Init( pDrawObj );
54 0 : }
55 :
56 0 : SwAccessibleChild::SwAccessibleChild( const SwFrm* pFrm )
57 : : mpFrm( 0 )
58 : , mpDrawObj( 0 )
59 0 : , mpWindow( 0 )
60 : {
61 0 : Init( pFrm );
62 0 : }
63 :
64 0 : SwAccessibleChild::SwAccessibleChild( Window* pWindow )
65 : : mpFrm( 0 )
66 : , mpDrawObj( 0 )
67 0 : , mpWindow( 0 )
68 : {
69 0 : Init( pWindow );
70 0 : }
71 :
72 0 : SwAccessibleChild::SwAccessibleChild( const SwFrm* pFrm,
73 : const SdrObject* pDrawObj,
74 : Window* pWindow )
75 : : mpFrm( 0 )
76 : , mpDrawObj( 0 )
77 0 : , mpWindow( 0 )
78 : {
79 0 : if ( pFrm )
80 : {
81 0 : Init( pFrm );
82 : }
83 0 : else if ( pDrawObj )
84 : {
85 0 : Init( pDrawObj );
86 : }
87 0 : else if ( pWindow )
88 : {
89 0 : Init( pWindow );
90 : }
91 : OSL_ENSURE( (!pFrm || pFrm == mpFrm) &&
92 : (!pDrawObj || pDrawObj == mpDrawObj) &&
93 : (!pWindow || pWindow == mpWindow),
94 : "invalid frame/object/window combination" );
95 :
96 0 : }
97 :
98 0 : void SwAccessibleChild::Init( const SdrObject* pDrawObj )
99 : {
100 0 : mpDrawObj = pDrawObj;
101 0 : mpFrm = mpDrawObj && mpDrawObj->ISA(SwVirtFlyDrawObj)
102 0 : ? static_cast < const SwVirtFlyDrawObj * >( mpDrawObj )->GetFlyFrm()
103 0 : : 0;
104 0 : mpWindow = 0;
105 0 : }
106 :
107 0 : void SwAccessibleChild::Init( const SwFrm* pFrm )
108 : {
109 0 : mpFrm = pFrm;
110 0 : mpDrawObj = mpFrm && mpFrm->IsFlyFrm()
111 0 : ? static_cast < const SwFlyFrm * >( mpFrm )->GetVirtDrawObj()
112 0 : : 0;
113 0 : mpWindow = 0;
114 0 : }
115 :
116 0 : void SwAccessibleChild::Init( Window* pWindow )
117 : {
118 0 : mpWindow = pWindow;
119 0 : mpFrm = 0;
120 0 : mpDrawObj = 0;
121 0 : }
122 :
123 0 : bool SwAccessibleChild::IsAccessible( sal_Bool bPagePreview ) const
124 : {
125 0 : bool bRet( false );
126 :
127 0 : if ( mpFrm )
128 : {
129 0 : bRet = mpFrm->IsAccessibleFrm() &&
130 0 : ( !mpFrm->IsCellFrm() ||
131 0 : static_cast<const SwCellFrm *>( mpFrm )->GetTabBox()->GetSttNd() != 0 ) &&
132 0 : !mpFrm->IsInCoveredCell() &&
133 0 : ( bPagePreview ||
134 0 : !mpFrm->IsPageFrm() );
135 : }
136 0 : else if ( mpDrawObj )
137 : {
138 0 : bRet = true;
139 : }
140 0 : else if ( mpWindow )
141 : {
142 0 : bRet = true;
143 : }
144 :
145 0 : return bRet;
146 : }
147 :
148 0 : bool SwAccessibleChild::IsBoundAsChar() const
149 : {
150 0 : bool bRet( false );
151 :
152 0 : if ( mpFrm )
153 : {
154 0 : bRet = mpFrm->IsFlyFrm() &&
155 0 : static_cast< const SwFlyFrm *>(mpFrm)->IsFlyInCntFrm();
156 : }
157 0 : else if ( mpDrawObj )
158 : {
159 0 : const SwFrmFmt* mpFrmFmt = ::FindFrmFmt( mpDrawObj );
160 : bRet = mpFrmFmt
161 0 : ? (FLY_AS_CHAR == mpFrmFmt->GetAnchor().GetAnchorId())
162 0 : : false;
163 : }
164 0 : else if ( mpWindow )
165 : {
166 0 : bRet = false;
167 : }
168 :
169 0 : return bRet;
170 : }
171 :
172 0 : SwAccessibleChild::SwAccessibleChild( const SwAccessibleChild& r )
173 : : mpFrm( r.mpFrm )
174 : , mpDrawObj( r.mpDrawObj )
175 0 : , mpWindow( r.mpWindow )
176 0 : {}
177 :
178 0 : SwAccessibleChild& SwAccessibleChild::operator=( const SwAccessibleChild& r )
179 : {
180 0 : mpDrawObj = r.mpDrawObj;
181 0 : mpFrm = r.mpFrm;
182 0 : mpWindow = r.mpWindow;
183 :
184 0 : return *this;
185 : }
186 :
187 0 : SwAccessibleChild& SwAccessibleChild::operator=( const SdrObject* pDrawObj )
188 : {
189 0 : Init( pDrawObj );
190 0 : return *this;
191 : }
192 :
193 0 : SwAccessibleChild& SwAccessibleChild::operator=( const SwFrm* pFrm )
194 : {
195 0 : Init( pFrm );
196 0 : return *this;
197 : }
198 :
199 0 : SwAccessibleChild& SwAccessibleChild::operator=( Window* pWindow )
200 : {
201 0 : Init( pWindow );
202 0 : return *this;
203 : }
204 :
205 0 : bool SwAccessibleChild::operator==( const SwAccessibleChild& r ) const
206 : {
207 0 : return mpFrm == r.mpFrm &&
208 0 : mpDrawObj == r.mpDrawObj &&
209 0 : mpWindow == r.mpWindow;
210 : }
211 :
212 0 : bool SwAccessibleChild::IsValid() const
213 : {
214 0 : return mpFrm != 0 ||
215 0 : mpDrawObj != 0 ||
216 0 : mpWindow != 0;
217 : }
218 :
219 0 : const SdrObject* SwAccessibleChild::GetDrawObject() const
220 : {
221 0 : return mpDrawObj;
222 : }
223 :
224 0 : const SwFrm *SwAccessibleChild::GetSwFrm() const
225 : {
226 0 : return mpFrm;
227 : }
228 :
229 0 : Window* SwAccessibleChild::GetWindow() const
230 : {
231 0 : return mpWindow;
232 : }
233 :
234 0 : bool SwAccessibleChild::IsVisibleChildrenOnly() const
235 : {
236 0 : bool bRet( false );
237 :
238 0 : if ( !mpFrm )
239 : {
240 0 : bRet = true;
241 : }
242 : else
243 : {
244 0 : bRet = mpFrm->IsRootFrm() ||
245 0 : !( mpFrm->IsTabFrm() ||
246 0 : mpFrm->IsInTab() ||
247 0 : ( IsBoundAsChar() &&
248 0 : static_cast<const SwFlyFrm*>(mpFrm)->GetAnchorFrm()->IsInTab() ) );
249 : }
250 :
251 0 : return bRet;
252 : }
253 :
254 0 : SwRect SwAccessibleChild::GetBox( const SwAccessibleMap& rAccMap ) const
255 : {
256 0 : SwRect aBox;
257 :
258 0 : if ( mpFrm )
259 : {
260 0 : if ( mpFrm->IsPageFrm() &&
261 0 : static_cast< const SwPageFrm * >( mpFrm )->IsEmptyPage() )
262 : {
263 0 : aBox = SwRect( mpFrm->Frm().Left(), mpFrm->Frm().Top()-1, 1, 1 );
264 : }
265 0 : else if ( mpFrm->IsTabFrm() )
266 : {
267 0 : aBox = SwRect( mpFrm->Frm() );
268 0 : aBox.Intersection( mpFrm->GetUpper()->Frm() );
269 : }
270 : else
271 : {
272 0 : aBox = mpFrm->Frm();
273 : }
274 : }
275 0 : else if( mpDrawObj )
276 : {
277 0 : aBox = SwRect( mpDrawObj->GetCurrentBoundRect() );
278 : }
279 0 : else if ( mpWindow )
280 : {
281 0 : aBox = SwRect( rAccMap.GetShell()->GetWin()->PixelToLogic(
282 0 : Rectangle( mpWindow->GetPosPixel(),
283 0 : mpWindow->GetSizePixel() ) ) );
284 : }
285 :
286 0 : return aBox;
287 : }
288 :
289 0 : SwRect SwAccessibleChild::GetBounds( const SwAccessibleMap& rAccMap ) const
290 : {
291 0 : SwRect aBound;
292 :
293 0 : if( mpFrm )
294 : {
295 0 : if( mpFrm->IsPageFrm() &&
296 0 : static_cast< const SwPageFrm * >( mpFrm )->IsEmptyPage() )
297 : {
298 0 : aBound = SwRect( mpFrm->Frm().Left(), mpFrm->Frm().Top()-1, 0, 0 );
299 : }
300 : else
301 0 : aBound = mpFrm->PaintArea();
302 : }
303 0 : else if( mpDrawObj )
304 : {
305 0 : aBound = GetBox( rAccMap );
306 : }
307 0 : else if ( mpWindow )
308 : {
309 0 : aBound = GetBox( rAccMap );
310 : }
311 :
312 0 : return aBound;
313 : }
314 :
315 0 : bool SwAccessibleChild::AlwaysIncludeAsChild() const
316 : {
317 0 : bool bAlwaysIncludedAsChild( false );
318 :
319 0 : if ( mpWindow )
320 : {
321 0 : bAlwaysIncludedAsChild = true;
322 : }
323 :
324 0 : return bAlwaysIncludedAsChild;
325 : }
326 :
327 0 : const SwFrm* SwAccessibleChild::GetParent( const sal_Bool bInPagePreview ) const
328 : {
329 0 : const SwFrm* pParent( 0 );
330 :
331 0 : if ( mpFrm )
332 : {
333 0 : if( mpFrm->IsFlyFrm() )
334 : {
335 0 : const SwFlyFrm* pFly = static_cast< const SwFlyFrm *>( mpFrm );
336 0 : if( pFly->IsFlyInCntFrm() )
337 : {
338 : // For FLY_AS_CHAR the parent is the anchor
339 0 : pParent = pFly->GetAnchorFrm();
340 : OSL_ENSURE( SwAccessibleChild( pParent ).IsAccessible( bInPagePreview ),
341 : "parent is not accessible" );
342 : }
343 : else
344 : {
345 : // In any other case the parent is the root frm
346 : // (in page preview, the page frame)
347 0 : if( bInPagePreview )
348 0 : pParent = pFly->FindPageFrm();
349 : else
350 0 : pParent = pFly->getRootFrm();
351 : }
352 : }
353 : else
354 : {
355 0 : SwAccessibleChild aUpper( mpFrm->GetUpper() );
356 0 : while( aUpper.GetSwFrm() && !aUpper.IsAccessible(bInPagePreview) )
357 : {
358 0 : aUpper = aUpper.GetSwFrm()->GetUpper();
359 : }
360 0 : pParent = aUpper.GetSwFrm();
361 : }
362 : }
363 0 : else if( mpDrawObj )
364 : {
365 : const SwDrawContact *pContact =
366 0 : static_cast< const SwDrawContact* >( GetUserCall( mpDrawObj ) );
367 : OSL_ENSURE( pContact, "sdr contact is missing" );
368 0 : if( pContact )
369 : {
370 0 : const SwFrmFmt *pFrmFmt = pContact->GetFmt();
371 : OSL_ENSURE( pFrmFmt, "frame format is missing" );
372 0 : if( pFrmFmt && FLY_AS_CHAR == pFrmFmt->GetAnchor().GetAnchorId() )
373 : {
374 : // For FLY_AS_CHAR the parent is the anchor
375 0 : pParent = pContact->GetAnchorFrm();
376 : OSL_ENSURE( SwAccessibleChild( pParent ).IsAccessible( bInPagePreview ),
377 : "parent is not accessible" );
378 :
379 : }
380 : else
381 : {
382 : // In any other case the parent is the root frm
383 0 : if( bInPagePreview )
384 0 : pParent = pContact->GetAnchorFrm()->FindPageFrm();
385 : else
386 0 : pParent = pContact->GetAnchorFrm()->getRootFrm();
387 : }
388 : }
389 : }
390 0 : else if ( mpWindow )
391 : {
392 : css::uno::Reference < css::accessibility::XAccessible > xAcc =
393 0 : mpWindow->GetAccessible();
394 0 : if ( xAcc.is() )
395 : {
396 : css::uno::Reference < css::accessibility::XAccessibleContext > xAccContext =
397 0 : xAcc->getAccessibleContext();
398 0 : if ( xAccContext.is() )
399 : {
400 : css::uno::Reference < css::accessibility::XAccessible > xAccParent =
401 0 : xAccContext->getAccessibleParent();
402 0 : if ( xAccParent.is() )
403 : {
404 : SwAccessibleContext* pAccParentImpl =
405 0 : dynamic_cast< SwAccessibleContext *>( xAccParent.get() );
406 0 : if ( pAccParentImpl )
407 : {
408 0 : pParent = pAccParentImpl->GetFrm();
409 : }
410 0 : }
411 0 : }
412 0 : }
413 : }
414 :
415 0 : return pParent;
416 : }
417 :
418 : } } // eof of namespace sw::access
419 :
420 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|