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#define IMG_NUMBER					15
37#define IMG_PERCENT					16
38#define IMG_CURRENCY				17
39#define IMG_DATE					18
40#define IMG_TEXT					19
41
42//===============================================================position=============================================
43
44#define MBOX_WIDTH							28
45#define	TOOLBOX_ITEM_HEIGHT					12
46#define CHECKBOX_HEIGHT						10
47
48#define FT_CATEGORY_X						SECTIONPAGE_MARGIN_HORIZONTAL
49#define FT_CATEGORY_Y						SECTIONPAGE_MARGIN_VERTICAL_TOP
50#define LB_CATEGORY_X						FT_CATEGORY_X
51#define LB_CATEGORY_Y						FT_CATEGORY_Y + TEXT_HEIGHT + TEXT_CONTROL_SPACING_VERTICAL
52
53#define TBX_CATEGORY_X						SECTIONPAGE_MARGIN_HORIZONTAL + 1
54#define TBX_CATEGORY_Y						LB_CATEGORY_Y + MBOX_HEIGHT + CONTROL_SPACING_VERTICAL
55
56#define FT_DECIMALS_X						SECTIONPAGE_MARGIN_HORIZONTAL
57#define FT_DECIMALS_Y						TBX_CATEGORY_Y + TOOLBOX_ITEM_HEIGHT + 4 + CONTROL_SPACING_VERTICAL
58#define LB_DECIMALS_X						FT_CATEGORY_X
59#define LB_DECIMALS_Y						FT_DECIMALS_Y + TEXT_HEIGHT + TEXT_CONTROL_SPACING_VERTICAL
60
61#define FT_LEADZEROES_X						SECTIONPAGE_MARGIN_HORIZONTAL + MBOX_WIDTH*2 + CONTROL_SPACING_HORIZONTAL
62#define FT_LEADZEROES_Y						FT_DECIMALS_Y
63#define LB_LEADZEROES_X						FT_LEADZEROES_X
64#define LB_LEADZEROES_Y						FT_LEADZEROES_Y + TEXT_HEIGHT + TEXT_CONTROL_SPACING_VERTICAL
65
66#define BTN_NEGRED_X						SECTIONPAGE_MARGIN_HORIZONTAL
67#define BTN_NEGRED_Y						LB_LEADZEROES_Y + MBOX_HEIGHT + CONTROL_SPACING_VERTICAL
68
69#define BTN_THOUSAND_X						SECTIONPAGE_MARGIN_HORIZONTAL
70#define BTN_THOUSAND_Y						BTN_NEGRED_Y + CHECKBOX_HEIGHT + CONTROL_SPACING_VERTICAL - 3
71
72#define PROPERTYPAGE_HEIGHT					BTN_THOUSAND_Y + CHECKBOX_HEIGHT + 2
73
74// eof
75