update credits
[LibreOffice.git] / accessibility / source / standard / vclxaccessibledropdowncombobox.cxx
blob63e4241e7597dc4d8e1f2363638f81f3f0964314
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
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>
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>
34 #include <toolkit/awt/vclxwindow.hxx>
35 #include <toolkit/helper/convert.hxx>
37 #include <comphelper/sequence.hxx>
38 #include <cppuhelper/typeprovider.hxx>
39 #include <unotools/accessiblestatesethelper.hxx>
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;
48 VCLXAccessibleDropDownComboBox::VCLXAccessibleDropDownComboBox (VCLXWindow* pVCLWindow)
49 : VCLXAccessibleBox (pVCLWindow, VCLXAccessibleBox::COMBOBOX, true)
56 VCLXAccessibleDropDownComboBox::~VCLXAccessibleDropDownComboBox (void)
62 bool VCLXAccessibleDropDownComboBox::IsValid (void) const
64 return static_cast<ComboBox*>(GetWindow()) != NULL;
71 void VCLXAccessibleDropDownComboBox::ProcessWindowEvent (const VclWindowEvent& rVclWindowEvent)
73 switch ( rVclWindowEvent.GetId() )
75 case VCLEVENT_DROPDOWN_OPEN:
76 case VCLEVENT_DROPDOWN_CLOSE:
78 break;
81 default:
82 VCLXAccessibleBox::ProcessWindowEvent( rVclWindowEvent );
89 //===== XServiceInfo ========================================================
91 OUString VCLXAccessibleDropDownComboBox::getImplementationName()
92 throw (RuntimeException)
94 return OUString( "com.sun.star.comp.toolkit.AccessibleDropDownComboBox" );
100 Sequence< OUString > VCLXAccessibleDropDownComboBox::getSupportedServiceNames (void)
101 throw (RuntimeException)
103 Sequence< OUString > aNames = VCLXAccessibleBox::getSupportedServiceNames();
104 sal_Int32 nLength = aNames.getLength();
105 aNames.realloc( nLength + 1 );
106 aNames[nLength] = "com.sun.star.accessibility.AccessibleDropDownComboBox";
107 return aNames;
110 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */