fix baseline build (old cairo) - 'cairo_rectangle_int_t' does not name a type
[LibreOffice.git] / dbaccess / source / ui / inc / dsitems.hxx
blob2c54cd5f4c761d281d4392499f02f4b1104f31f8
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 .
20 #ifndef INCLUDED_DBACCESS_SOURCE_UI_INC_DSITEMS_HXX
21 #define INCLUDED_DBACCESS_SOURCE_UI_INC_DSITEMS_HXX
23 typedef sal_Int32 ItemID;
25 // item ids for the data source administration dialog
27 #define DSID_NAME 1 // name of a data source, SfxStringItem
28 #define DSID_ORIGINALNAME 2 // original name, internal, SfxStringItem
29 #define DSID_CONNECTURL 3 // connection URL, SfxStringItem
30 #define DSID_TABLEFILTER 4 // table filter, OStringListItem
31 #define DSID_TYPECOLLECTION 5 // collection of data source types, ODsnTypeCollection
32 #define DSID_INVALID_SELECTION 6 // is the selection (thus the set data) invalid?, SfxBoolItem
33 #define DSID_READONLY 7 // is the selection (thus the set data) readonly?, SfxBoolItem
34 #define DSID_USER 8 // the user name used for logon, SfxStringItem
35 #define DSID_PASSWORD 9 // the password used for logon, SfxStringItem
36 #define DSID_ADDITIONALOPTIONS 10 // additional options used for connecting, SfxStringItem
37 #define DSID_CHARSET 11 // character set to use, SfxStringItem by now
38 #define DSID_PASSWORDREQUIRED 12 // is the password required to connect?, SfxBoolItem
39 #define DSID_SHOWDELETEDROWS 13 // show deleted rows?, SfxBoolItem
40 #define DSID_ALLOWLONGTABLENAMES 14 // allow tables names longer than 8.3?, SfxBoolItem
41 #define DSID_JDBCDRIVERCLASS 15 // JDBC driver class, SfxStringItem
42 #define DSID_FIELDDELIMITER 16 // field delimiter, SfxUInt16Item
43 #define DSID_TEXTDELIMITER 17 // text delimiter, SfxUInt16Item
44 #define DSID_DECIMALDELIMITER 18 // decimal delimiter, SfxUInt16Item
45 #define DSID_THOUSANDSDELIMITER 19 // thousands delimiter, SfxUInt16Item
46 #define DSID_TEXTFILEEXTENSION 20 // extension for text files, SfxStringItem
47 #define DSID_TEXTFILEHEADER 21 // the text file contains a header?, SfxBoolItem
48 #define DSID_PARAMETERNAMESUBST 22
49 #define DSID_CONN_PORTNUMBER 23
50 #define DSID_SUPPRESSVERSIONCL 24 // meta data: sal_True if the data source described by the set is to-be-deleted
51 #define DSID_DATASOURCE_UNO 25 // meta data: OPropertySetItem, the data source the set represents
52 #define DSID_CONN_SHUTSERVICE 26
53 #define DSID_CONN_DATAINC 27
54 #define DSID_CONN_CACHESIZE 28
55 #define DSID_CONN_CTRLUSER 29
56 #define DSID_CONN_CTRLPWD 30
57 #define DSID_USECATALOG 31 // should the driver use the catalog name when the database is filebased
58 #define DSID_CONN_HOSTNAME 32
59 #define DSID_CONN_LDAP_BASEDN 33
60 #define DSID_CONN_LDAP_PORTNUMBER 34
61 #define DSID_CONN_LDAP_ROWCOUNT 35
62 #define DSID_SQL92CHECK 36
63 #define DSID_AUTOINCREMENTVALUE 37
64 #define DSID_AUTORETRIEVEVALUE 38
65 #define DSID_AUTORETRIEVEENABLED 39
66 #define DSID_APPEND_TABLE_ALIAS 40
67 #define DSID_MYSQL_PORTNUMBER 41
68 #define DSID_IGNOREDRIVER_PRIV 42
69 #define DSID_BOOLEANCOMPARISON 43
70 #define DSID_ORACLE_PORTNUMBER 44
71 #define DSID_ENABLEOUTERJOIN 45
72 #define DSID_CATALOG 46
73 #define DSID_SCHEMA 47
74 #define DSID_INDEXAPPENDIX 48
75 #define DSID_CONN_LDAP_USESSL 49
76 #define DSID_DOCUMENT_URL 50
77 #define DSID_DOSLINEENDS 51
78 #define DSID_DATABASENAME 52
79 #define DSID_AS_BEFORE_CORRNAME 53
80 #define DSID_CHECK_REQUIRED_FIELDS 54
81 #define DSID_IGNORECURRENCY 55
82 #define DSID_CONN_SOCKET 56
83 #define DSID_ESCAPE_DATETIME 57
84 #define DSID_NAMED_PIPE 58
85 #define DSID_PRIMARY_KEY_SUPPORT 59
86 #define DSID_MAX_ROW_SCAN 60
87 #define DSID_RESPECTRESULTSETTYPE 61
88 // don't forget to adjust DSID_LAST_ITEM_ID below!
90 // item range. Adjust this if you introduce new items above
92 #define DSID_FIRST_ITEM_ID DSID_NAME
93 #define DSID_LAST_ITEM_ID DSID_RESPECTRESULTSETTYPE
95 #endif // INCLUDED_DBACCESS_SOURCE_UI_INC_DSITEMS_HXX
97 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */