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 <accessibility/standard/vclxaccessibletabpagewindow.hxx>
21 : #include <toolkit/helper/convert.hxx>
22 : #include <vcl/tabctrl.hxx>
23 : #include <vcl/tabpage.hxx>
24 :
25 :
26 : using namespace ::com::sun::star;
27 : using namespace ::com::sun::star::uno;
28 : using namespace ::com::sun::star::accessibility;
29 : using namespace ::comphelper;
30 :
31 :
32 :
33 : // class VCLXAccessibleTabPageWindow
34 :
35 :
36 0 : VCLXAccessibleTabPageWindow::VCLXAccessibleTabPageWindow( VCLXWindow* pVCLXWindow )
37 0 : :VCLXAccessibleComponent( pVCLXWindow )
38 : {
39 0 : m_pTabPage = static_cast< TabPage* >( GetWindow() );
40 0 : m_pTabControl = 0;
41 0 : m_nPageId = 0;
42 0 : if ( m_pTabPage )
43 : {
44 0 : Window* pParent = m_pTabPage->GetAccessibleParentWindow();
45 0 : if ( pParent && pParent->GetType() == WINDOW_TABCONTROL )
46 : {
47 0 : m_pTabControl = static_cast< TabControl* >( pParent );
48 0 : if ( m_pTabControl )
49 : {
50 0 : for ( sal_uInt16 i = 0, nCount = m_pTabControl->GetPageCount(); i < nCount; ++i )
51 : {
52 0 : sal_uInt16 nPageId = m_pTabControl->GetPageId( i );
53 0 : if ( m_pTabControl->GetTabPage( nPageId ) == m_pTabPage )
54 0 : m_nPageId = nPageId;
55 : }
56 : }
57 : }
58 : }
59 0 : }
60 :
61 :
62 :
63 0 : VCLXAccessibleTabPageWindow::~VCLXAccessibleTabPageWindow()
64 : {
65 0 : }
66 :
67 :
68 : // OCommonAccessibleComponent
69 :
70 :
71 0 : awt::Rectangle VCLXAccessibleTabPageWindow::implGetBounds() throw (RuntimeException)
72 : {
73 0 : awt::Rectangle aBounds( 0, 0, 0, 0 );
74 :
75 0 : if ( m_pTabControl )
76 : {
77 0 : Rectangle aPageRect = m_pTabControl->GetTabBounds( m_nPageId );
78 0 : if ( m_pTabPage )
79 : {
80 0 : Rectangle aRect = Rectangle( m_pTabPage->GetPosPixel(), m_pTabPage->GetSizePixel() );
81 0 : aRect.Move( -aPageRect.Left(), -aPageRect.Top() );
82 0 : aBounds = AWTRectangle( aRect );
83 : }
84 : }
85 :
86 0 : return aBounds;
87 : }
88 :
89 :
90 : // XComponent
91 :
92 :
93 0 : void VCLXAccessibleTabPageWindow::disposing()
94 : {
95 0 : VCLXAccessibleComponent::disposing();
96 :
97 0 : m_pTabControl = NULL;
98 0 : m_pTabPage = NULL;
99 0 : }
100 :
101 :
102 : // XAccessibleContext
103 :
104 :
105 0 : Reference< XAccessible > VCLXAccessibleTabPageWindow::getAccessibleParent( ) throw (RuntimeException, std::exception)
106 : {
107 0 : OExternalLockGuard aGuard( this );
108 :
109 0 : Reference< XAccessible > xParent;
110 0 : if ( m_pTabControl )
111 : {
112 0 : Reference< XAccessible > xAcc( m_pTabControl->GetAccessible() );
113 0 : if ( xAcc.is() )
114 : {
115 0 : Reference< XAccessibleContext > xCont( xAcc->getAccessibleContext() );
116 0 : if ( xCont.is() )
117 : {
118 0 : sal_uInt16 const nPagePos(m_pTabControl->GetPagePos(m_nPageId));
119 : SAL_WARN_IF(TAB_PAGE_NOTFOUND == nPagePos, "accessibility",
120 : "getAccessibleParent(): no tab page");
121 0 : if (TAB_PAGE_NOTFOUND != nPagePos)
122 : {
123 0 : xParent = xCont->getAccessibleChild(nPagePos);
124 : }
125 0 : }
126 0 : }
127 : }
128 :
129 0 : return xParent;
130 : }
131 :
132 :
133 :
134 0 : sal_Int32 VCLXAccessibleTabPageWindow::getAccessibleIndexInParent( ) throw (RuntimeException, std::exception)
135 : {
136 0 : OExternalLockGuard aGuard( this );
137 :
138 0 : return 0;
139 : }
140 :
141 :
142 :
143 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|