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 .
19 #define TP_VALIDATION_VALUES 696
20 #define TP_VALIDATION_INPUTHELP 697
21 #define TP_VALIDATION_ERROR 698
22 #define TAB_DLG_VALIDATION 699
26 #define TSB_ALLOW_BLANKS 3
39 #define FT_INPUTHELP 14
40 #define EDT_INPUTHELP 15
49 #define CB_SHOWLIST 27
50 #define CB_SORTLIST 28
52 #define FT_SOURCEHINT 30
53 #define RB_VALIDITY_REF 88
55 /* Position indexes for "Allow" list box.
56 They do not map directly to ScValidationMode and can safely be modified to
57 change the order of the list box entries. */
58 #define SC_VALIDDLG_ALLOW_ANY 0
59 #define SC_VALIDDLG_ALLOW_WHOLE 1
60 #define SC_VALIDDLG_ALLOW_DECIMAL 2
61 #define SC_VALIDDLG_ALLOW_DATE 3
62 #define SC_VALIDDLG_ALLOW_TIME 4
63 #define SC_VALIDDLG_ALLOW_RANGE 5
64 #define SC_VALIDDLG_ALLOW_LIST 6
65 #define SC_VALIDDLG_ALLOW_TEXTLEN 7
67 /* Position indexes for "Data" list box.
68 They do not map directly to ScConditionMode and can safely be modified to
69 change the order of the list box entries. */
70 #define SC_VALIDDLG_DATA_EQUAL 0
71 #define SC_VALIDDLG_DATA_LESS 1
72 #define SC_VALIDDLG_DATA_GREATER 2
73 #define SC_VALIDDLG_DATA_EQLESS 3
74 #define SC_VALIDDLG_DATA_EQGREATER 4
75 #define SC_VALIDDLG_DATA_NOTEQUAL 5
76 #define SC_VALIDDLG_DATA_VALIDRANGE 6
77 #define SC_VALIDDLG_DATA_INVALIDRANGE 7
79 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */