Branch libreoffice-5-0-4
[LibreOffice.git] / accessibility / source / standard / vclxaccessibledropdowncombobox.cxx
blob66831d6a8f3a2d86dc23de0c4f71ce815357f61c
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()
60 bool VCLXAccessibleDropDownComboBox::IsValid() const
62 return GetWindow().get() != NULL;
65 void VCLXAccessibleDropDownComboBox::ProcessWindowEvent (const VclWindowEvent& rVclWindowEvent)
67 switch ( rVclWindowEvent.GetId() )
69 case VCLEVENT_DROPDOWN_OPEN:
70 case VCLEVENT_DROPDOWN_CLOSE:
72 break;
75 default:
76 VCLXAccessibleBox::ProcessWindowEvent( rVclWindowEvent );
83 // XServiceInfo
85 OUString VCLXAccessibleDropDownComboBox::getImplementationName()
86 throw (RuntimeException, std::exception)
88 return OUString( "com.sun.star.comp.toolkit.AccessibleDropDownComboBox" );
94 Sequence< OUString > VCLXAccessibleDropDownComboBox::getSupportedServiceNames()
95 throw (RuntimeException, std::exception)
97 Sequence< OUString > aNames = VCLXAccessibleBox::getSupportedServiceNames();
98 sal_Int32 nLength = aNames.getLength();
99 aNames.realloc( nLength + 1 );
100 aNames[nLength] = "com.sun.star.accessibility.AccessibleDropDownComboBox";
101 return aNames;
104 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */