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 0 : VCLXAccessibleDropDownComboBox::VCLXAccessibleDropDownComboBox (VCLXWindow* pVCLWindow)
49 0 : : VCLXAccessibleBox (pVCLWindow, VCLXAccessibleBox::COMBOBOX, true)
50 : {
51 0 : }
52 :
53 :
54 :
55 :
56 0 : VCLXAccessibleDropDownComboBox::~VCLXAccessibleDropDownComboBox (void)
57 : {
58 0 : }
59 :
60 :
61 :
62 0 : bool VCLXAccessibleDropDownComboBox::IsValid (void) const
63 : {
64 0 : return static_cast<ComboBox*>(GetWindow()) != NULL;
65 :
66 : }
67 :
68 :
69 :
70 :
71 0 : void VCLXAccessibleDropDownComboBox::ProcessWindowEvent (const VclWindowEvent& rVclWindowEvent)
72 : {
73 0 : switch ( rVclWindowEvent.GetId() )
74 : {
75 : case VCLEVENT_DROPDOWN_OPEN:
76 : case VCLEVENT_DROPDOWN_CLOSE:
77 : {
78 0 : break;
79 : }
80 :
81 : default:
82 0 : VCLXAccessibleBox::ProcessWindowEvent( rVclWindowEvent );
83 : }
84 0 : }
85 :
86 :
87 :
88 :
89 : //===== XServiceInfo ========================================================
90 :
91 0 : OUString VCLXAccessibleDropDownComboBox::getImplementationName()
92 : throw (RuntimeException, std::exception)
93 : {
94 0 : return OUString( "com.sun.star.comp.toolkit.AccessibleDropDownComboBox" );
95 : }
96 :
97 :
98 :
99 :
100 0 : Sequence< OUString > VCLXAccessibleDropDownComboBox::getSupportedServiceNames (void)
101 : throw (RuntimeException, std::exception)
102 : {
103 0 : Sequence< OUString > aNames = VCLXAccessibleBox::getSupportedServiceNames();
104 0 : sal_Int32 nLength = aNames.getLength();
105 0 : aNames.realloc( nLength + 1 );
106 0 : aNames[nLength] = "com.sun.star.accessibility.AccessibleDropDownComboBox";
107 0 : return aNames;
108 : }
109 :
110 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|