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/vclxaccessibledropdowncombobox.hxx>
21 : #include <accessibility/standard/vclxaccessiblecombobox.hxx>
22 : #include <accessibility/standard/vclxaccessibletextfield.hxx>
23 : #include <accessibility/standard/vclxaccessiblelist.hxx>
24 : #include <accessibility/helper/accresmgr.hxx>
25 : #include <accessibility/helper/accessiblestrings.hrc>
26 :
27 : #include <com/sun/star/accessibility/AccessibleEventId.hpp>
28 : #include <com/sun/star/accessibility/AccessibleRole.hpp>
29 : #include <com/sun/star/accessibility/AccessibleStateType.hpp>
30 : #include <vcl/svapp.hxx>
31 : #include <vcl/combobox.hxx>
32 : #include <vcl/unohelp.hxx>
33 :
34 : #include <toolkit/awt/vclxwindow.hxx>
35 : #include <toolkit/helper/convert.hxx>
36 :
37 : #include <comphelper/sequence.hxx>
38 : #include <cppuhelper/typeprovider.hxx>
39 : #include <unotools/accessiblestatesethelper.hxx>
40 :
41 :
42 : using namespace ::com::sun::star;
43 : using namespace ::com::sun::star::lang;
44 : using namespace ::com::sun::star::uno;
45 : using namespace ::com::sun::star::accessibility;
46 :
47 :
48 5 : VCLXAccessibleDropDownComboBox::VCLXAccessibleDropDownComboBox (VCLXWindow* pVCLWindow)
49 5 : : VCLXAccessibleBox (pVCLWindow, VCLXAccessibleBox::COMBOBOX, true)
50 : {
51 5 : }
52 :
53 :
54 :
55 :
56 0 : VCLXAccessibleDropDownComboBox::~VCLXAccessibleDropDownComboBox()
57 : {
58 0 : }
59 :
60 52 : bool VCLXAccessibleDropDownComboBox::IsValid() const
61 : {
62 52 : return GetWindow().get() != NULL;
63 : }
64 :
65 27 : void VCLXAccessibleDropDownComboBox::ProcessWindowEvent (const VclWindowEvent& rVclWindowEvent)
66 : {
67 27 : switch ( rVclWindowEvent.GetId() )
68 : {
69 : case VCLEVENT_DROPDOWN_OPEN:
70 : case VCLEVENT_DROPDOWN_CLOSE:
71 : {
72 3 : break;
73 : }
74 :
75 : default:
76 24 : VCLXAccessibleBox::ProcessWindowEvent( rVclWindowEvent );
77 : }
78 27 : }
79 :
80 :
81 :
82 :
83 : // XServiceInfo
84 :
85 4 : OUString VCLXAccessibleDropDownComboBox::getImplementationName()
86 : throw (RuntimeException, std::exception)
87 : {
88 4 : return OUString( "com.sun.star.comp.toolkit.AccessibleDropDownComboBox" );
89 : }
90 :
91 :
92 :
93 :
94 0 : Sequence< OUString > VCLXAccessibleDropDownComboBox::getSupportedServiceNames()
95 : throw (RuntimeException, std::exception)
96 : {
97 0 : Sequence< OUString > aNames = VCLXAccessibleBox::getSupportedServiceNames();
98 0 : sal_Int32 nLength = aNames.getLength();
99 0 : aNames.realloc( nLength + 1 );
100 0 : aNames[nLength] = "com.sun.star.accessibility.AccessibleDropDownComboBox";
101 0 : return aNames;
102 36 : }
103 :
104 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|