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/vclxaccessiblefixedtext.hxx>
21 :
22 : #include <unotools/accessiblestatesethelper.hxx>
23 : #include <com/sun/star/accessibility/AccessibleStateType.hpp>
24 : #include <vcl/fixed.hxx>
25 :
26 : using namespace ::com::sun::star;
27 : using namespace ::com::sun::star::uno;
28 : using namespace ::com::sun::star::lang;
29 : using namespace ::com::sun::star::beans;
30 : using namespace ::com::sun::star::accessibility;
31 :
32 :
33 :
34 : // VCLXAccessibleFixedText
35 :
36 :
37 0 : VCLXAccessibleFixedText::VCLXAccessibleFixedText( VCLXWindow* pVCLWindow )
38 0 : :VCLXAccessibleTextComponent( pVCLWindow )
39 : {
40 0 : }
41 :
42 :
43 :
44 0 : VCLXAccessibleFixedText::~VCLXAccessibleFixedText()
45 : {
46 0 : }
47 :
48 :
49 :
50 0 : void VCLXAccessibleFixedText::FillAccessibleStateSet( utl::AccessibleStateSetHelper& rStateSet )
51 : {
52 0 : VCLXAccessibleTextComponent::FillAccessibleStateSet( rStateSet );
53 :
54 0 : if ( GetWindow() && GetWindow()->GetStyle() & WB_WORDBREAK )
55 0 : rStateSet.AddState( AccessibleStateType::MULTI_LINE );
56 0 : }
57 :
58 :
59 :
60 0 : void VCLXAccessibleFixedText::implGetLineBoundary( i18n::Boundary& rBoundary, sal_Int32 nIndex )
61 : {
62 : // TODO
63 0 : OCommonAccessibleText::implGetLineBoundary( rBoundary, nIndex );
64 0 : }
65 :
66 :
67 : // XServiceInfo
68 :
69 :
70 0 : OUString VCLXAccessibleFixedText::getImplementationName() throw (RuntimeException, std::exception)
71 : {
72 0 : return OUString( "com.sun.star.comp.toolkit.AccessibleFixedText" );
73 : }
74 :
75 :
76 :
77 0 : Sequence< OUString > VCLXAccessibleFixedText::getSupportedServiceNames() throw (RuntimeException, std::exception)
78 : {
79 0 : Sequence< OUString > aNames(1);
80 0 : aNames[0] = "com.sun.star.awt.AccessibleFixedText";
81 0 : return aNames;
82 : }
83 :
84 :
85 :
86 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|