blob: d49537cfdab2f72f795f3ea159827d727e9a9820 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
|
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
*
* This file is part of OpenOffice.org.
*
* OpenOffice.org is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3
* only, as published by the Free Software Foundation.
*
* OpenOffice.org is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License version 3 for more details
* (a copy is included in the LICENSE file that accompanied this code).
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with OpenOffice.org. If not, see
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
*
************************************************************************/
#ifndef _DBAUI_DBADMIN_HRC_
#define _DBAUI_DBADMIN_HRC_
//========================================================================
// control ids
#define FT_DATATYPE 1
#define FT_DATASOURCETYPE_PRE 2
#define FT_USERNAME 3
#define FT_PASSWORD 4
#define FT_OPTIONS 5
// FREE
#define FT_JDBCDRIVERCLASS 7
#define FT_SPECIAL_MESSAGE 8
#define FT_FILTER_EXPLANATION 9
#define FT_HOSTNAME 10
#define FT_BASEDN 11
#define FT_PORTNUMBER 12
#define FT_LDAPROWCOUNT 13
#define FT_DATASOURCETYPE_POST 14
#define FT_GENERALHEADERTEXT 15
#define FT_GENERALHELPTEXT 16
#define FT_DATATYPEAPPENDIX 17
#define FT_DATASOURCEHEADER 18
#define FT_DOCLISTLABEL 19
#define LB_DATATYPE 1
// FREE
#define LB_DOCUMENTLIST 3
#define ET_USERNAME 1
#define ET_PASSWORD 2
#define ET_OPTIONS 3
#define ET_JDBCDRIVERCLASS 4
#define ET_HOSTNAME 5
#define ET_BASEDN 6
#define PB_INDICIES 1
#define BTN_PASSWORD_OK 2
#define BTN_PASSWORD_CANCEL 3
#define BTN_PASSWORD_HELP 4
#define PB_TESTDRIVERCLASS 5
#define PB_OPENDOCUMENT 6
#define CB_PASSWORD_REQUIRED 1
#define CB_SHOWDELETEDROWS 2
#define CB_USESSL 3
#define CB_USECATALOG 4
#define FL_SEPARATOR2 1
#define CTL_TABLESUBSCRIPTION 1
#define TLB_ACTIONS 1
#define NF_PORTNUMBER 1
#define NF_LDAPROWCOUNT 2
#define RB_CREATEDBDATABASE 1
#define RB_GETEXISTINGDATABASE 2
#define RB_OPENEXISTINGDOC 3
//========================================================================
// string ids (usually relative to other resources, that's why not necessarily unique)
#define STR_PAGETITLE_GENERAL 1
#define STR_PAGETITLE_CONNECTION 2
#define STR_PAGETITLE_ADVANCED 3
#define STR_NO_WILDCARDS 4
#define STR_MYSQLENTRY 5
#define STR_PARENTTITLE 6
#define STR_COULDNOTLOAD_ODBCLIB 7
#define STR_UNSUPPORTED_DATASOURCE_TYPE 8
#define STR_MYSQL_CONFIG_NEXT_PAGE 9
#define STR_JDBC_DEFAULT_URL 10
//========================================================================
// menu item ids
#define MID_NEW_DATASOURCE 1
#define MID_DELETE_DATASOURCE 2
#define MID_RESTORE_DATASOURCE 3
#endif // _DBAUI_DBADMIN_HRC_
|