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