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