tdf#164420 Fix unselected Check/Radio buttons not following themes in GTK
[LibreOffice.git] / oovbaapi / ooo / vba / msforms / XComboBox.idl
blob6f9ad816953cb4b6ff6417d5e89a6efd70321c4b
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 .
22 module ooo { module vba { module msforms {
26 interface XComboBox
28 [attribute] any Value;
29 [attribute] any ListIndex;
30 [attribute, readonly] long ListCount;
31 [attribute] string Text;
32 [attribute] long Style;
33 [attribute] long DropButtonStyle;
34 [attribute] long DragBehavior;
35 [attribute] long EnterFieldBehavior;
36 [attribute] long ListStyle;
37 [attribute] long TextAlign;
38 [attribute] long BackColor;
39 [attribute] boolean AutoSize;
40 [attribute] boolean Locked;
41 [attribute, readonly] long TextLength;
42 [attribute, readonly] XNewFont Font;
43 [attribute] string LinkedCell;
45 void AddItem( [in] any pvargItem, [in] any pvargIndex );
46 void removeItem( [in] any index );
47 void Clear();
48 any List( [in] any pvargIndex, [in] any pvarColumn );
53 }; }; };
56 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */