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
34 #define CB_SHOWLIST 27
35 #define CB_SORTLIST 28
37 #define FT_SOURCEHINT 30
38 #define RB_VALIDITY_REF 88
40 /* Position indexes for "Allow" list box.
41 They do not map directly to ScValidationMode and can safely be modified to
42 change the order of the list box entries. */
43 #define SC_VALIDDLG_ALLOW_ANY 0
44 #define SC_VALIDDLG_ALLOW_WHOLE 1
45 #define SC_VALIDDLG_ALLOW_DECIMAL 2
46 #define SC_VALIDDLG_ALLOW_DATE 3
47 #define SC_VALIDDLG_ALLOW_TIME 4
48 #define SC_VALIDDLG_ALLOW_RANGE 5
49 #define SC_VALIDDLG_ALLOW_LIST 6
50 #define SC_VALIDDLG_ALLOW_TEXTLEN 7
52 /* Position indexes for "Data" list box.
53 They do not map directly to ScConditionMode and can safely be modified to
54 change the order of the list box entries. */
55 #define SC_VALIDDLG_DATA_EQUAL 0
56 #define SC_VALIDDLG_DATA_LESS 1
57 #define SC_VALIDDLG_DATA_GREATER 2
58 #define SC_VALIDDLG_DATA_EQLESS 3
59 #define SC_VALIDDLG_DATA_EQGREATER 4
60 #define SC_VALIDDLG_DATA_NOTEQUAL 5
61 #define SC_VALIDDLG_DATA_VALIDRANGE 6
62 #define SC_VALIDDLG_DATA_INVALIDRANGE 7
64 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */