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/extended/AccessibleBrowseBoxCheckBoxCell.hxx>
21 : #include <com/sun/star/accessibility/AccessibleEventId.hpp>
22 : #include <svtools/accessibletableprovider.hxx>
23 :
24 : namespace accessibility
25 : {
26 : using namespace com::sun::star::accessibility;
27 : using namespace com::sun::star::uno;
28 : using namespace com::sun::star::accessibility::AccessibleEventId;
29 : using namespace ::svt;
30 :
31 0 : AccessibleCheckBoxCell::AccessibleCheckBoxCell(const Reference<XAccessible >& _rxParent,
32 : IAccessibleTableProvider& _rBrowseBox,
33 : const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XWindow >& _xFocusWindow,
34 : sal_Int32 _nRowPos,
35 : sal_uInt16 _nColPos
36 : ,const TriState& _eState,
37 : sal_Bool _bIsTriState)
38 : :AccessibleBrowseBoxCell(_rxParent, _rBrowseBox, _xFocusWindow, _nRowPos, _nColPos, BBTYPE_CHECKBOXCELL)
39 : ,m_eState(_eState)
40 0 : ,m_bIsTriState(_bIsTriState)
41 : {
42 0 : }
43 0 : IMPLEMENT_FORWARD_XINTERFACE2( AccessibleCheckBoxCell, AccessibleBrowseBoxCell, AccessibleCheckBoxCell_BASE )
44 :
45 0 : IMPLEMENT_FORWARD_XTYPEPROVIDER2( AccessibleCheckBoxCell, AccessibleBrowseBoxCell, AccessibleCheckBoxCell_BASE )
46 :
47 0 : Reference< XAccessibleContext > SAL_CALL AccessibleCheckBoxCell::getAccessibleContext( ) throw (RuntimeException, std::exception)
48 : {
49 0 : ensureIsAlive();
50 0 : return this;
51 : }
52 :
53 0 : ::utl::AccessibleStateSetHelper* AccessibleCheckBoxCell::implCreateStateSetHelper()
54 : {
55 : ::utl::AccessibleStateSetHelper* pStateSetHelper =
56 0 : AccessibleBrowseBoxCell::implCreateStateSetHelper();
57 0 : if( isAlive() )
58 : {
59 : mpBrowseBox->FillAccessibleStateSetForCell(
60 0 : *pStateSetHelper, getRowPos(), static_cast< sal_uInt16 >( getColumnPos() ) );
61 0 : if ( m_eState == TRISTATE_TRUE )
62 0 : pStateSetHelper->AddState( AccessibleStateType::CHECKED );
63 : }
64 0 : return pStateSetHelper;
65 : }
66 :
67 : // XAccessibleValue
68 :
69 0 : Any SAL_CALL AccessibleCheckBoxCell::getCurrentValue( ) throw (RuntimeException, std::exception)
70 : {
71 0 : ::osl::MutexGuard aGuard( getOslMutex() );
72 :
73 0 : sal_Int32 nValue = 0;
74 0 : switch( m_eState )
75 : {
76 : case TRISTATE_FALSE:
77 0 : nValue = 0;
78 0 : break;
79 : case TRISTATE_TRUE:
80 0 : nValue = 1;
81 0 : break;
82 : case TRISTATE_INDET:
83 0 : nValue = 2;
84 0 : break;
85 : }
86 0 : return makeAny(nValue);
87 : }
88 :
89 0 : sal_Bool SAL_CALL AccessibleCheckBoxCell::setCurrentValue( const Any& ) throw (RuntimeException, std::exception)
90 : {
91 0 : return sal_False;
92 : }
93 :
94 0 : Any SAL_CALL AccessibleCheckBoxCell::getMaximumValue( ) throw (RuntimeException, std::exception)
95 : {
96 0 : ::osl::MutexGuard aGuard( getOslMutex() );
97 :
98 0 : Any aValue;
99 :
100 0 : if ( m_bIsTriState )
101 0 : aValue <<= (sal_Int32) 2;
102 : else
103 0 : aValue <<= (sal_Int32) 1;
104 :
105 0 : return aValue;
106 : }
107 :
108 0 : Any SAL_CALL AccessibleCheckBoxCell::getMinimumValue( ) throw (RuntimeException, std::exception)
109 : {
110 0 : Any aValue;
111 0 : aValue <<= (sal_Int32) 0;
112 :
113 0 : return aValue;
114 : }
115 :
116 : // XAccessibleContext
117 0 : sal_Int32 SAL_CALL AccessibleCheckBoxCell::getAccessibleChildCount( ) throw (::com::sun::star::uno::RuntimeException, std::exception)
118 : {
119 0 : return 0;
120 : }
121 :
122 0 : ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > SAL_CALL AccessibleCheckBoxCell::getAccessibleChild( sal_Int32 ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException, std::exception)
123 : {
124 0 : throw ::com::sun::star::lang::IndexOutOfBoundsException();
125 : }
126 :
127 0 : OUString SAL_CALL AccessibleCheckBoxCell::getImplementationName() throw ( ::com::sun::star::uno::RuntimeException, std::exception )
128 : {
129 0 : return OUString( "com.sun.star.comp.svtools.TableCheckBoxCell" );
130 : }
131 :
132 0 : sal_Int32 SAL_CALL AccessibleCheckBoxCell::getAccessibleIndexInParent()
133 : throw ( ::com::sun::star::uno::RuntimeException, std::exception )
134 : {
135 0 : ::osl::MutexGuard aGuard( getOslMutex() );
136 :
137 0 : return ( getRowPos() * mpBrowseBox->GetColumnCount() ) + getColumnPos();
138 : }
139 :
140 0 : void AccessibleCheckBoxCell::SetChecked( sal_Bool _bChecked )
141 : {
142 0 : m_eState = _bChecked ? TRISTATE_TRUE : TRISTATE_FALSE;
143 0 : Any aOldValue, aNewValue;
144 0 : if ( _bChecked )
145 0 : aNewValue <<= AccessibleStateType::CHECKED;
146 : else
147 0 : aOldValue <<= AccessibleStateType::CHECKED;
148 0 : commitEvent( AccessibleEventId::STATE_CHANGED, aNewValue, aOldValue );
149 0 : }
150 : }
151 :
152 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|