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 : #ifndef INCLUDED_ACCESSIBILITY_INC_ACCESSIBILITY_HELPER_ICOMBOLISTBOXHELPER_HXX
20 : #define INCLUDED_ACCESSIBILITY_INC_ACCESSIBILITY_HELPER_ICOMBOLISTBOXHELPER_HXX
21 :
22 : #include <com/sun/star/uno/Reference.hxx>
23 :
24 : #include <rtl/ustring.hxx>
25 : #include <tools/wintypes.hxx>
26 :
27 : namespace com { namespace sun { namespace star { namespace datatransfer { namespace clipboard {
28 : class XClipboard;
29 : } } } } }
30 :
31 : class Point;
32 : class Rectangle;
33 : namespace vcl { class Window; }
34 : namespace accessibility
35 : {
36 10 : class IComboListBoxHelper
37 : {
38 : public:
39 : virtual ~IComboListBoxHelper() = 0;
40 :
41 : virtual OUString GetEntry( sal_Int32 nPos ) const = 0;
42 : virtual Rectangle GetDropDownPosSizePixel( ) const = 0;
43 : virtual Rectangle GetBoundingRectangle( sal_uInt16 nItem ) const = 0;
44 : virtual Rectangle GetWindowExtentsRelative( vcl::Window* pRelativeWindow ) = 0;
45 : virtual bool IsActive() const = 0;
46 : virtual bool IsEnabled() const = 0;
47 : virtual bool IsEntryVisible( sal_Int32 nPos ) const = 0;
48 : virtual sal_uInt16 GetDisplayLineCount() const = 0;
49 : virtual void GetMaxVisColumnsAndLines( sal_uInt16& rnCols, sal_uInt16& rnLines ) const = 0;
50 : virtual WinBits GetStyle() const = 0;
51 : virtual bool IsMultiSelectionEnabled() const = 0;
52 : virtual sal_Int32 GetTopEntry() const = 0;
53 : virtual bool IsEntryPosSelected( sal_Int32 nPos ) const = 0;
54 : virtual sal_Int32 GetEntryCount() const = 0;
55 : virtual void Select() = 0;
56 : virtual void SelectEntryPos( sal_Int32 nPos, bool bSelect = true ) = 0;
57 : virtual sal_Int32 GetSelectEntryCount() const = 0;
58 : virtual void SetNoSelection() = 0;
59 : virtual sal_Int32 GetSelectEntryPos( sal_Int32 nSelIndex = 0 ) const = 0;
60 : virtual bool IsInDropDown() const = 0;
61 : virtual Rectangle GetEntryCharacterBounds( const sal_Int32 _nEntryPos, const sal_Int32 _nCharacterIndex ) const = 0;
62 : virtual long GetIndexForPoint( const Point& rPoint, sal_Int32 & nPos ) const = 0;
63 : virtual ::com::sun::star::uno::Reference< ::com::sun::star::datatransfer::clipboard::XClipboard >
64 : GetClipboard() = 0;
65 : };
66 : }
67 : #endif // INCLUDED_ACCESSIBILITY_INC_ACCESSIBILITY_HELPER_ICOMBOLISTBOXHELPER_HXX
68 :
69 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
70 :
|