1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements.  See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership.  The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance
9 * with the License.  You may obtain a copy of the License at
10 *
11 *   http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing,
14 * software distributed under the License is distributed on an
15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 * KIND, either express or implied.  See the License for the
17 * specific language governing permissions and limitations
18 * under the License.
19 *
20 *************************************************************/
21
22
23
24#ifndef DBAUI_ADVANCEDSETTINGS_HRC
25#define DBAUI_ADVANCEDSETTINGS_HRC
26
27#define ADVANCED_CHECKBOX_OPTIONS    15
28#define ADVANCED_LISTBOX_OPTIONS      1
29
30#define ADVANCED_PAGE_X		200
31#define ADVANCED_PAGE_Y \
32    /* top space */     START_Y + \
33    /* label */         FIXEDTEXT_HEIGHT + RELATED_CONTROLS + \
34    /* check boxes */   ( ADVANCED_CHECKBOX_OPTIONS * ( CHECKBOX_HEIGHT + RELATED_CONTROLS ) ) + \
35    /* list boxes */    ( ADVANCED_LISTBOX_OPTIONS * ( LISTBOX_HEIGHT + RELATED_CONTROLS ) ) + \
36    /* bottom space */  START_Y
37
38
39#define STR_GENERATED_VALUE		1
40#define STR_DS_BEHAVIOUR		2
41
42#define FL_SEPARATORAUTO		1
43#define FL_DATAHANDLING			2
44
45#define CB_SUPPRESVERSIONCL		1
46#define CB_SQL92CHECK			2
47#define CB_RETRIEVE_AUTO		3
48#define CB_APPENDTABLEALIAS		4
49#define CB_IGNOREDRIVER_PRIV    5
50#define CB_PARAMETERNAMESUBST	6
51#define CB_ENABLEOUTERJOIN		7
52#define CB_SCHEMA				8
53#define CB_CATALOG				9
54#define CB_IGNOREINDEXAPPENDIX	10
55#define CB_DOSLINEENDS		   	11
56#define CB_AS_BEFORE_CORR_NAME  12
57#define CB_CHECK_REQUIRED       13
58#define CB_IGNORECURRENCY       14
59#define CB_ESCAPE_DATETIME      15
60#define CB_PRIMARY_KEY_SUPPORT  16
61#define CB_RESPECTRESULTSETTYPE 17
62
63#define ET_AUTOINCREMENTVALUE   1
64#define ET_RETRIEVE_AUTO	    2
65
66#define FT_AUTOINCREMENTVALUE	1
67#define FT_RETRIEVE_AUTO		2
68#define FT_BOOLEANCOMPARISON	3
69#define FT_MAXROWSCAN			4
70
71#define LB_BOOLEANCOMPARISON	1
72#define NF_MAXROWSCAN			1
73
74#endif // DBAUI_ADVANCEDSETTINGS_HRC
75