18dcb2a10SAndre Fischer/************************************************************** 28dcb2a10SAndre Fischer * 38dcb2a10SAndre Fischer * Licensed to the Apache Software Foundation (ASF) under one 48dcb2a10SAndre Fischer * or more contributor license agreements. See the NOTICE file 58dcb2a10SAndre Fischer * distributed with this work for additional information 68dcb2a10SAndre Fischer * regarding copyright ownership. The ASF licenses this file 78dcb2a10SAndre Fischer * to you under the Apache License, Version 2.0 (the 88dcb2a10SAndre Fischer * "License"); you may not use this file except in compliance 98dcb2a10SAndre Fischer * with the License. You may obtain a copy of the License at 108dcb2a10SAndre Fischer * 118dcb2a10SAndre Fischer * http://www.apache.org/licenses/LICENSE-2.0 128dcb2a10SAndre Fischer * 138dcb2a10SAndre Fischer * Unless required by applicable law or agreed to in writing, 148dcb2a10SAndre Fischer * software distributed under the License is distributed on an 158dcb2a10SAndre Fischer * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 168dcb2a10SAndre Fischer * KIND, either express or implied. See the License for the 178dcb2a10SAndre Fischer * specific language governing permissions and limitations 188dcb2a10SAndre Fischer * under the License. 198dcb2a10SAndre Fischer * 208dcb2a10SAndre Fischer *************************************************************/ 218dcb2a10SAndre Fischer 228dcb2a10SAndre Fischer// RID_SIDEBAR_LINE_PANEL-------------------------------------------------------------- 238dcb2a10SAndre Fischer#define CUSTOM_X POPUPPANEL_MARGIN_LARGE + OFFSET_X 248dcb2a10SAndre Fischer#define CUSTOM_Y POPUPPANEL_MARGIN_SMALL + OFFSET_Y + 12 * 9 + POPUPPANEL_MARGIN_SMALL * 2 + TEXT_HEIGHT 258dcb2a10SAndre Fischer#define CUSTOM_W 74 268dcb2a10SAndre Fischer#define CUSTOM_H POPUPPANEL_MARGIN_LARGE * 2 + TEXT_HEIGHT + 12 + TEXT_CONTROL_SPACING_VERTICAL 278dcb2a10SAndre Fischer 288dcb2a10SAndre Fischer#define FT_COLOR 1 298dcb2a10SAndre Fischer#define TB_COLOR 2 308dcb2a10SAndre Fischer#define FT_WIDTH 3 318dcb2a10SAndre Fischer#define TB_WIDTH 4 328dcb2a10SAndre Fischer#define FT_STYLE 5 338dcb2a10SAndre Fischer#define TB_STYLE 6 348dcb2a10SAndre Fischer#define FT_ARROW 7 358dcb2a10SAndre Fischer#define FT_TRANSPARENT 8 368dcb2a10SAndre Fischer#define MF_TRANSPARENT 9 378dcb2a10SAndre Fischer#define LB_START 10 388dcb2a10SAndre Fischer#define LB_END 11 398dcb2a10SAndre Fischer#define TBI_COLOR 12 408dcb2a10SAndre Fischer#define TBI_WIDTH 13 418dcb2a10SAndre Fischer#define TBI_STYLE 14 428dcb2a10SAndre Fischer#define STR_QH_TB_WIDTH 15 438dcb2a10SAndre Fischer#define STR_QH_TB_COLOR 16 448dcb2a10SAndre Fischer#define STR_QH_TB_STYLE 17 458dcb2a10SAndre Fischer 468dcb2a10SAndre Fischer#define FT_EDGESTYLE 18 478dcb2a10SAndre Fischer#define LB_EDGESTYLE 19 488dcb2a10SAndre Fischer#define FT_CAPSTYLE 20 498dcb2a10SAndre Fischer#define LB_CAPSTYLE 21 508dcb2a10SAndre Fischer 518dcb2a10SAndre Fischer#define IMG_COLOR 23 528dcb2a10SAndre Fischer#define IMG_COLOR_NO 24 538dcb2a10SAndre Fischer#define IMG_LINE1_ICON 25 548dcb2a10SAndre Fischer#define IMG_LINE2_ICON 26 558dcb2a10SAndre Fischer#define IMG_LINE3_ICON 27 568dcb2a10SAndre Fischer#define IMG_LINE4_ICON 28 578dcb2a10SAndre Fischer#define IMG_LINE5_ICON 29 588dcb2a10SAndre Fischer#define IMG_LINE6_ICON 30 598dcb2a10SAndre Fischer#define IMG_LINE7_ICON 31 608dcb2a10SAndre Fischer#define IMG_LINE8_ICON 32 618dcb2a10SAndre Fischer#define IMG_LINE9_ICON 33 628dcb2a10SAndre Fischer#define IMG_LINE10_ICON 34 638dcb2a10SAndre Fischer#define IMG_LINE11_ICON 35 648dcb2a10SAndre Fischer#define IMG_NONE_ICON 36 658dcb2a10SAndre Fischer 668dcb2a10SAndre Fischer#define IMG_WIDTH1_ICON 41 678dcb2a10SAndre Fischer#define IMG_WIDTH2_ICON 42 688dcb2a10SAndre Fischer#define IMG_WIDTH3_ICON 43 698dcb2a10SAndre Fischer#define IMG_WIDTH4_ICON 44 708dcb2a10SAndre Fischer#define IMG_WIDTH5_ICON 45 718dcb2a10SAndre Fischer#define IMG_WIDTH6_ICON 46 728dcb2a10SAndre Fischer#define IMG_WIDTH7_ICON 47 738dcb2a10SAndre Fischer#define IMG_WIDTH8_ICON 48 748dcb2a10SAndre Fischer 758dcb2a10SAndre Fischer#define IMG_LINE1_ICON_H 51 768dcb2a10SAndre Fischer#define IMG_LINE2_ICON_H 52 778dcb2a10SAndre Fischer#define IMG_LINE3_ICON_H 53 788dcb2a10SAndre Fischer#define IMG_LINE4_ICON_H 54 798dcb2a10SAndre Fischer#define IMG_LINE5_ICON_H 55 808dcb2a10SAndre Fischer#define IMG_LINE6_ICON_H 56 818dcb2a10SAndre Fischer#define IMG_LINE7_ICON_H 57 828dcb2a10SAndre Fischer#define IMG_LINE8_ICON_H 58 838dcb2a10SAndre Fischer#define IMG_LINE9_ICON_H 59 848dcb2a10SAndre Fischer#define IMG_LINE10_ICON_H 60 858dcb2a10SAndre Fischer#define IMG_LINE11_ICON_H 50 868dcb2a10SAndre Fischer 878dcb2a10SAndre Fischer#define IMG_WIDTH1_ICON_H 61 888dcb2a10SAndre Fischer#define IMG_WIDTH2_ICON_H 62 898dcb2a10SAndre Fischer#define IMG_WIDTH3_ICON_H 63 908dcb2a10SAndre Fischer#define IMG_WIDTH4_ICON_H 64 918dcb2a10SAndre Fischer#define IMG_WIDTH5_ICON_H 65 928dcb2a10SAndre Fischer#define IMG_WIDTH6_ICON_H 66 938dcb2a10SAndre Fischer#define IMG_WIDTH7_ICON_H 67 948dcb2a10SAndre Fischer#define IMG_WIDTH8_ICON_H 68 958dcb2a10SAndre Fischer 968dcb2a10SAndre Fischer//color popup page 978dcb2a10SAndre Fischer#define VS_COLOR 1 988dcb2a10SAndre Fischer#define STR_AUTOMATICE 2 998dcb2a10SAndre Fischer 1008dcb2a10SAndre Fischer//style popup page 1018dcb2a10SAndre Fischer#define VS_STYLE 1 1028dcb2a10SAndre Fischer#define PB_OPTIONS 2 1038dcb2a10SAndre Fischer 1048dcb2a10SAndre Fischer#define IMG_LINE1 5 1058dcb2a10SAndre Fischer#define IMG_LINE1_S 6 1068dcb2a10SAndre Fischer#define IMG_LINE2 7 1078dcb2a10SAndre Fischer#define IMG_LINE2_S 8 1088dcb2a10SAndre Fischer#define IMG_LINE3 9 1098dcb2a10SAndre Fischer#define IMG_LINE3_S 10 1108dcb2a10SAndre Fischer#define IMG_LINE4 11 1118dcb2a10SAndre Fischer#define IMG_LINE4_S 12 1128dcb2a10SAndre Fischer#define IMG_LINE5 13 1138dcb2a10SAndre Fischer#define IMG_LINE5_S 14 1148dcb2a10SAndre Fischer#define IMG_LINE6 15 1158dcb2a10SAndre Fischer#define IMG_LINE6_S 16 1168dcb2a10SAndre Fischer#define IMG_LINE7 17 1178dcb2a10SAndre Fischer#define IMG_LINE7_S 18 1188dcb2a10SAndre Fischer#define IMG_LINE8 19 1198dcb2a10SAndre Fischer#define IMG_LINE8_S 20 1208dcb2a10SAndre Fischer#define IMG_LINE9 21 1218dcb2a10SAndre Fischer#define IMG_LINE9_S 22 1228dcb2a10SAndre Fischer#define IMG_LINE10 23 1238dcb2a10SAndre Fischer#define IMG_LINE10_S 24 1248dcb2a10SAndre Fischer#define IMG_LINE11 25 1258dcb2a10SAndre Fischer#define IMG_LINE11_S 26 1268dcb2a10SAndre Fischer 1278dcb2a10SAndre Fischer// #define STR_STYLE_NONE_TIP 30 1288dcb2a10SAndre Fischer#define STR_STYLE_NONE 31 1298dcb2a10SAndre Fischer#define STR_STYLE_LINE1 32 1308dcb2a10SAndre Fischer#define STR_STYLE_LINE2 33 1318dcb2a10SAndre Fischer#define STR_STYLE_LINE3 34 1328dcb2a10SAndre Fischer#define STR_STYLE_LINE4 35 1338dcb2a10SAndre Fischer#define STR_STYLE_LINE5 36 1348dcb2a10SAndre Fischer#define STR_STYLE_LINE6 37 1358dcb2a10SAndre Fischer#define STR_STYLE_LINE7 38 1368dcb2a10SAndre Fischer#define STR_STYLE_LINE8 39 1378dcb2a10SAndre Fischer#define STR_STYLE_LINE9 40 1388dcb2a10SAndre Fischer#define STR_STYLE_LINE10 41 1398dcb2a10SAndre Fischer#define STR_STYLE_LINE11 42 1408dcb2a10SAndre Fischer 1418dcb2a10SAndre Fischer#define IMG_LINE1_H 43 1428dcb2a10SAndre Fischer#define IMG_LINE2_H 44 1438dcb2a10SAndre Fischer#define IMG_LINE3_H 45 1448dcb2a10SAndre Fischer#define IMG_LINE4_H 46 1458dcb2a10SAndre Fischer#define IMG_LINE5_H 47 1468dcb2a10SAndre Fischer#define IMG_LINE6_H 48 1478dcb2a10SAndre Fischer#define IMG_LINE7_H 49 1488dcb2a10SAndre Fischer#define IMG_LINE8_H 50 1498dcb2a10SAndre Fischer#define IMG_LINE9_H 51 1508dcb2a10SAndre Fischer#define IMG_LINE10_H 52 1518dcb2a10SAndre Fischer#define IMG_LINE11_H 53 1528dcb2a10SAndre Fischer 1538dcb2a10SAndre Fischer//width popup page 1548dcb2a10SAndre Fischer#define VS_WIDTH 1 1558dcb2a10SAndre Fischer#define MF_WIDTH 2 1568dcb2a10SAndre Fischer#define FT_CUSTOME 3 1578dcb2a10SAndre Fischer#define FT_LINE_WIDTH 4 1588dcb2a10SAndre Fischer#define IMG_WIDTH_CUSTOM 5 1598dcb2a10SAndre Fischer#define IMG_WIDTH_CUSTOM_GRAY 6 1608dcb2a10SAndre Fischer#define CT_BORDER 7 1618dcb2a10SAndre Fischer#define STR_WIDTH_LAST_CUSTOM 8 1628dcb2a10SAndre Fischer#define STR_PT 9 163*4e8031e0SArmin Le Grand 164*4e8031e0SArmin Le Grand// eof 165