158e893aeSArmin Le Grand/************************************************************** 258e893aeSArmin Le Grand * 358e893aeSArmin Le Grand * Licensed to the Apache Software Foundation (ASF) under one 458e893aeSArmin Le Grand * or more contributor license agreements. See the NOTICE file 558e893aeSArmin Le Grand * distributed with this work for additional information 658e893aeSArmin Le Grand * regarding copyright ownership. The ASF licenses this file 758e893aeSArmin Le Grand * to you under the Apache License, Version 2.0 (the 858e893aeSArmin Le Grand * "License"); you may not use this file except in compliance 958e893aeSArmin Le Grand * with the License. You may obtain a copy of the License at 1058e893aeSArmin Le Grand * 1158e893aeSArmin Le Grand * http://www.apache.org/licenses/LICENSE-2.0 1258e893aeSArmin Le Grand * 1358e893aeSArmin Le Grand * Unless required by applicable law or agreed to in writing, 1458e893aeSArmin Le Grand * software distributed under the License is distributed on an 1558e893aeSArmin Le Grand * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 1658e893aeSArmin Le Grand * KIND, either express or implied. See the License for the 1758e893aeSArmin Le Grand * specific language governing permissions and limitations 1858e893aeSArmin Le Grand * under the License. 1958e893aeSArmin Le Grand * 2058e893aeSArmin Le Grand *************************************************************/ 2158e893aeSArmin Le Grand 2258e893aeSArmin Le Grand// RID_SIDEBAR_LINE_PANEL-------------------------------------------------------------- 2358e893aeSArmin Le Grand#define CUSTOM_X POPUPPANEL_MARGIN_LARGE + OFFSET_X 2458e893aeSArmin Le Grand#define CUSTOM_Y POPUPPANEL_MARGIN_SMALL + OFFSET_Y + 12 * 9 + POPUPPANEL_MARGIN_SMALL * 2 + TEXT_HEIGHT 2558e893aeSArmin Le Grand#define CUSTOM_W 74 2658e893aeSArmin Le Grand#define CUSTOM_H POPUPPANEL_MARGIN_LARGE * 2 + TEXT_HEIGHT + 12 + TEXT_CONTROL_SPACING_VERTICAL 2758e893aeSArmin Le Grand 28d5370dc8SArmin Le Grand#define FT_COLOR 1 29d5370dc8SArmin Le Grand#define TB_COLOR 2 30d5370dc8SArmin Le Grand#define FT_WIDTH 3 31d5370dc8SArmin Le Grand#define TB_WIDTH 4 32d5370dc8SArmin Le Grand#define FT_STYLE 5 33d5370dc8SArmin Le Grand#define TB_STYLE 6 34d5370dc8SArmin Le Grand#define FT_ARROW 7 35d5370dc8SArmin Le Grand#define FT_TRANSPARENT 8 36d5370dc8SArmin Le Grand#define MF_TRANSPARENT 9 37d5370dc8SArmin Le Grand#define LB_START 10 38d5370dc8SArmin Le Grand#define LB_END 11 39d5370dc8SArmin Le Grand#define TBI_COLOR 12 40d5370dc8SArmin Le Grand#define TBI_WIDTH 13 41d5370dc8SArmin Le Grand#define TBI_STYLE 14 42d5370dc8SArmin Le Grand#define STR_QH_TB_WIDTH 15 43d5370dc8SArmin Le Grand#define STR_QH_TB_COLOR 16 44d5370dc8SArmin Le Grand#define STR_QH_TB_STYLE 17 4558e893aeSArmin Le Grand 46d5370dc8SArmin Le Grand#define FT_EDGESTYLE 18 47d5370dc8SArmin Le Grand#define LB_EDGESTYLE 19 48d5370dc8SArmin Le Grand#define FT_CAPSTYLE 20 49d5370dc8SArmin Le Grand#define LB_CAPSTYLE 21 5058e893aeSArmin Le Grand 51d5370dc8SArmin Le Grand#define IMG_COLOR 23 52d5370dc8SArmin Le Grand#define IMG_COLOR_NO 24 53d5370dc8SArmin Le Grand#define IMG_LINE1_ICON 25 54d5370dc8SArmin Le Grand#define IMG_LINE2_ICON 26 55d5370dc8SArmin Le Grand#define IMG_LINE3_ICON 27 56d5370dc8SArmin Le Grand#define IMG_LINE4_ICON 28 57d5370dc8SArmin Le Grand#define IMG_LINE5_ICON 29 58d5370dc8SArmin Le Grand#define IMG_LINE6_ICON 30 59d5370dc8SArmin Le Grand#define IMG_LINE7_ICON 31 60d5370dc8SArmin Le Grand#define IMG_LINE8_ICON 32 61d5370dc8SArmin Le Grand#define IMG_LINE9_ICON 33 62d5370dc8SArmin Le Grand#define IMG_LINE10_ICON 34 63d5370dc8SArmin Le Grand#define IMG_LINE11_ICON 35 64d5370dc8SArmin Le Grand#define IMG_NONE_ICON 36 6558e893aeSArmin Le Grand 66d5370dc8SArmin Le Grand#define IMG_WIDTH1_ICON 41 67d5370dc8SArmin Le Grand#define IMG_WIDTH2_ICON 42 68d5370dc8SArmin Le Grand#define IMG_WIDTH3_ICON 43 69d5370dc8SArmin Le Grand#define IMG_WIDTH4_ICON 44 70d5370dc8SArmin Le Grand#define IMG_WIDTH5_ICON 45 71d5370dc8SArmin Le Grand#define IMG_WIDTH6_ICON 46 72d5370dc8SArmin Le Grand#define IMG_WIDTH7_ICON 47 73d5370dc8SArmin Le Grand#define IMG_WIDTH8_ICON 48 7458e893aeSArmin Le Grand 75d5370dc8SArmin Le Grand#define IMG_LINE1_ICON_H 51 76d5370dc8SArmin Le Grand#define IMG_LINE2_ICON_H 52 77d5370dc8SArmin Le Grand#define IMG_LINE3_ICON_H 53 78d5370dc8SArmin Le Grand#define IMG_LINE4_ICON_H 54 79d5370dc8SArmin Le Grand#define IMG_LINE5_ICON_H 55 80d5370dc8SArmin Le Grand#define IMG_LINE6_ICON_H 56 81d5370dc8SArmin Le Grand#define IMG_LINE7_ICON_H 57 82d5370dc8SArmin Le Grand#define IMG_LINE8_ICON_H 58 83d5370dc8SArmin Le Grand#define IMG_LINE9_ICON_H 59 84d5370dc8SArmin Le Grand#define IMG_LINE10_ICON_H 60 85d5370dc8SArmin Le Grand#define IMG_LINE11_ICON_H 50 86d5370dc8SArmin Le Grand 87d5370dc8SArmin Le Grand#define IMG_WIDTH1_ICON_H 61 88d5370dc8SArmin Le Grand#define IMG_WIDTH2_ICON_H 62 89d5370dc8SArmin Le Grand#define IMG_WIDTH3_ICON_H 63 90d5370dc8SArmin Le Grand#define IMG_WIDTH4_ICON_H 64 91d5370dc8SArmin Le Grand#define IMG_WIDTH5_ICON_H 65 92d5370dc8SArmin Le Grand#define IMG_WIDTH6_ICON_H 66 93d5370dc8SArmin Le Grand#define IMG_WIDTH7_ICON_H 67 94d5370dc8SArmin Le Grand#define IMG_WIDTH8_ICON_H 68 9558e893aeSArmin Le Grand 9658e893aeSArmin Le Grand//color popup page 9758e893aeSArmin Le Grand#define VS_COLOR 1 9858e893aeSArmin Le Grand#define STR_AUTOMATICE 2 9958e893aeSArmin Le Grand 10058e893aeSArmin Le Grand//style popup page 10158e893aeSArmin Le Grand#define VS_STYLE 1 10258e893aeSArmin Le Grand#define PB_OPTIONS 2 10358e893aeSArmin Le Grand 10458e893aeSArmin Le Grand#define IMG_LINE1 5 10558e893aeSArmin Le Grand#define IMG_LINE1_S 6 10658e893aeSArmin Le Grand#define IMG_LINE2 7 10758e893aeSArmin Le Grand#define IMG_LINE2_S 8 10858e893aeSArmin Le Grand#define IMG_LINE3 9 10958e893aeSArmin Le Grand#define IMG_LINE3_S 10 11058e893aeSArmin Le Grand#define IMG_LINE4 11 11158e893aeSArmin Le Grand#define IMG_LINE4_S 12 11258e893aeSArmin Le Grand#define IMG_LINE5 13 11358e893aeSArmin Le Grand#define IMG_LINE5_S 14 11458e893aeSArmin Le Grand#define IMG_LINE6 15 11558e893aeSArmin Le Grand#define IMG_LINE6_S 16 11658e893aeSArmin Le Grand#define IMG_LINE7 17 11758e893aeSArmin Le Grand#define IMG_LINE7_S 18 11858e893aeSArmin Le Grand#define IMG_LINE8 19 11958e893aeSArmin Le Grand#define IMG_LINE8_S 20 12058e893aeSArmin Le Grand#define IMG_LINE9 21 12158e893aeSArmin Le Grand#define IMG_LINE9_S 22 12258e893aeSArmin Le Grand#define IMG_LINE10 23 12358e893aeSArmin Le Grand#define IMG_LINE10_S 24 12458e893aeSArmin Le Grand#define IMG_LINE11 25 12558e893aeSArmin Le Grand#define IMG_LINE11_S 26 12658e893aeSArmin Le Grand 12758e893aeSArmin Le Grand// #define STR_STYLE_NONE_TIP 30 12858e893aeSArmin Le Grand#define STR_STYLE_NONE 31 12958e893aeSArmin Le Grand#define STR_STYLE_LINE1 32 13058e893aeSArmin Le Grand#define STR_STYLE_LINE2 33 13158e893aeSArmin Le Grand#define STR_STYLE_LINE3 34 13258e893aeSArmin Le Grand#define STR_STYLE_LINE4 35 13358e893aeSArmin Le Grand#define STR_STYLE_LINE5 36 13458e893aeSArmin Le Grand#define STR_STYLE_LINE6 37 13558e893aeSArmin Le Grand#define STR_STYLE_LINE7 38 13658e893aeSArmin Le Grand#define STR_STYLE_LINE8 39 13758e893aeSArmin Le Grand#define STR_STYLE_LINE9 40 13858e893aeSArmin Le Grand#define STR_STYLE_LINE10 41 13958e893aeSArmin Le Grand#define STR_STYLE_LINE11 42 14058e893aeSArmin Le Grand 14158e893aeSArmin Le Grand#define IMG_LINE1_H 43 14258e893aeSArmin Le Grand#define IMG_LINE2_H 44 14358e893aeSArmin Le Grand#define IMG_LINE3_H 45 14458e893aeSArmin Le Grand#define IMG_LINE4_H 46 14558e893aeSArmin Le Grand#define IMG_LINE5_H 47 14658e893aeSArmin Le Grand#define IMG_LINE6_H 48 14758e893aeSArmin Le Grand#define IMG_LINE7_H 49 14858e893aeSArmin Le Grand#define IMG_LINE8_H 50 14958e893aeSArmin Le Grand#define IMG_LINE9_H 51 15058e893aeSArmin Le Grand#define IMG_LINE10_H 52 15158e893aeSArmin Le Grand#define IMG_LINE11_H 53 15258e893aeSArmin Le Grand 15358e893aeSArmin Le Grand//width popup page 15458e893aeSArmin Le Grand#define VS_WIDTH 1 15558e893aeSArmin Le Grand#define MF_WIDTH 2 15658e893aeSArmin Le Grand#define FT_CUSTOME 3 15758e893aeSArmin Le Grand#define FT_LINE_WIDTH 4 15858e893aeSArmin Le Grand#define IMG_WIDTH_CUSTOM 5 15958e893aeSArmin Le Grand#define IMG_WIDTH_CUSTOM_GRAY 6 16058e893aeSArmin Le Grand#define CT_BORDER 7 16158e893aeSArmin Le Grand#define STR_WIDTH_LAST_CUSTOM 8 16258e893aeSArmin Le Grand#define STR_PT 9 163*4e8031e0SArmin Le Grand 164*4e8031e0SArmin Le Grand// eof 165