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#define FT_CATEGORY					1
23#define LB_CATEGORY					2
24#define FT_DECIMALS					3
25#define ED_DECIMALS					4
26#define FT_LEADZEROES				5
27#define ED_LEADZEROES				6
28#define BTN_NEGRED					7
29#define BTN_THOUSAND				8
30#define TBX_CATEGORY				9
31#define ID_NUMBER					10
32#define ID_PERCENT					11
33#define ID_CURRENCY 				12
34#define ID_DATE						13
35#define ID_TEXT						14
36
37//===============================================================position=============================================
38
39#define MBOX_WIDTH							28
40#define	LOCAL_TOOLBOX_ITEM_HEIGHT					12
41#define CHECKBOX_HEIGHT						10
42
43#define FT_CATEGORY_X						SECTIONPAGE_MARGIN_HORIZONTAL
44#define FT_CATEGORY_Y						SECTIONPAGE_MARGIN_VERTICAL_TOP
45#define LB_CATEGORY_X						FT_CATEGORY_X
46#define LB_CATEGORY_Y						FT_CATEGORY_Y + TEXT_HEIGHT + TEXT_CONTROL_SPACING_VERTICAL
47
48#define TBX_CATEGORY_X						SECTIONPAGE_MARGIN_HORIZONTAL + 1
49#define TBX_CATEGORY_Y						LB_CATEGORY_Y + MBOX_HEIGHT + CONTROL_SPACING_VERTICAL
50
51#define FT_DECIMALS_X						SECTIONPAGE_MARGIN_HORIZONTAL
52#define FT_DECIMALS_Y						TBX_CATEGORY_Y + LOCAL_TOOLBOX_ITEM_HEIGHT + 4 + CONTROL_SPACING_VERTICAL
53#define LB_DECIMALS_X						FT_CATEGORY_X
54#define LB_DECIMALS_Y						FT_DECIMALS_Y + TEXT_HEIGHT + TEXT_CONTROL_SPACING_VERTICAL
55
56#define FT_LEADZEROES_X						SECTIONPAGE_MARGIN_HORIZONTAL + MBOX_WIDTH*2 + CONTROL_SPACING_HORIZONTAL
57#define FT_LEADZEROES_Y						FT_DECIMALS_Y
58#define LB_LEADZEROES_X						FT_LEADZEROES_X
59#define LB_LEADZEROES_Y						FT_LEADZEROES_Y + TEXT_HEIGHT + TEXT_CONTROL_SPACING_VERTICAL
60
61#define BTN_NEGRED_X						SECTIONPAGE_MARGIN_HORIZONTAL
62#define BTN_NEGRED_Y						LB_LEADZEROES_Y + MBOX_HEIGHT + CONTROL_SPACING_VERTICAL
63
64#define BTN_THOUSAND_X						SECTIONPAGE_MARGIN_HORIZONTAL
65#define BTN_THOUSAND_Y						BTN_NEGRED_Y + CHECKBOX_HEIGHT + CONTROL_SPACING_VERTICAL - 3
66
67#define PROPERTYPAGE_HEIGHT					BTN_THOUSAND_Y + CHECKBOX_HEIGHT + 2
68
69// eof
70