1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 .
21 module com
{ module sun
{ module star
{ module ui
{ module dialogs
{
23 /** <p>These constants are used to specify extended controls of a FilePicker dialog.
24 A FilePicker service may be initialized so that it has additional controls
25 extending the set of common controls a FilePicker usually supports.</p>
27 @see com::sun::star::ui::dialogs::FilePicker
28 @see com::sun::star::ui::dialogs::XFilePickerControlAccess
29 @see com::sun::star::ui::dialogs::CommonFilePickerElementIds
32 published constants ExtendedFilePickerElementIds
34 const short CHECKBOX_AUTOEXTENSION
= 100;
35 const short CHECKBOX_PASSWORD
= 101;
36 const short CHECKBOX_FILTEROPTIONS
= 102;
37 const short CHECKBOX_READONLY
= 103;
38 const short CHECKBOX_LINK
= 104;
39 const short CHECKBOX_PREVIEW
= 105;
40 const short PUSHBUTTON_PLAY
= 106;
41 const short LISTBOX_VERSION
= 107;
42 const short LISTBOX_TEMPLATE
= 108;
43 const short LISTBOX_IMAGE_TEMPLATE
= 109;
44 const short CHECKBOX_SELECTION
= 110;
45 const short LISTBOX_VERSION_LABEL
= 207;
46 const short LISTBOX_TEMPLATE_LABEL
= 208;
47 const short LISTBOX_IMAGE_TEMPLATE_LABEL
= 209;
48 const short LISTBOX_FILTER_SELECTOR
= 210;
49 /** @since LibreOffice 6.0 */ const short CHECKBOX_GPGENCRYPTION
= 211;
50 /** @since LibreOffice 6.1 */ const short LISTBOX_IMAGE_ANCHOR
= 212;
51 /** @since LibreOffice 6.1 */ const short LISTBOX_IMAGE_ANCHOR_LABEL
= 213;
52 /** @since LibreOffice 25.2 */ const short CHECKBOX_GPGSIGN
= 214;
58 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */