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 28*6a606da0SAndre Fischer#define TOOLBOX_WIDTH 50 29*6a606da0SAndre Fischer#define TOOLBOX_HEIGHT 14 30*6a606da0SAndre Fischer#define LISTBOX_HEIGHT 99 31*6a606da0SAndre Fischer 328dcb2a10SAndre Fischer#define FT_COLOR 1 338dcb2a10SAndre Fischer#define TB_COLOR 2 348dcb2a10SAndre Fischer#define FT_WIDTH 3 358dcb2a10SAndre Fischer#define TB_WIDTH 4 368dcb2a10SAndre Fischer#define FT_STYLE 5 3797e8a929SArmin Le Grand#define LB_STYLE 6 388dcb2a10SAndre Fischer#define FT_ARROW 7 398dcb2a10SAndre Fischer#define FT_TRANSPARENT 8 408dcb2a10SAndre Fischer#define MF_TRANSPARENT 9 418dcb2a10SAndre Fischer#define LB_START 10 428dcb2a10SAndre Fischer#define LB_END 11 438dcb2a10SAndre Fischer#define TBI_COLOR 12 448dcb2a10SAndre Fischer#define TBI_WIDTH 13 458dcb2a10SAndre Fischer#define TBI_STYLE 14 468dcb2a10SAndre Fischer#define STR_QH_TB_WIDTH 15 478dcb2a10SAndre Fischer#define STR_QH_TB_COLOR 16 488dcb2a10SAndre Fischer 498dcb2a10SAndre Fischer#define FT_EDGESTYLE 18 508dcb2a10SAndre Fischer#define LB_EDGESTYLE 19 518dcb2a10SAndre Fischer#define FT_CAPSTYLE 20 528dcb2a10SAndre Fischer#define LB_CAPSTYLE 21 538dcb2a10SAndre Fischer 548dcb2a10SAndre Fischer#define IMG_COLOR 23 558dcb2a10SAndre Fischer#define IMG_COLOR_NO 24 568dcb2a10SAndre Fischer#define IMG_NONE_ICON 36 578dcb2a10SAndre Fischer 588dcb2a10SAndre Fischer#define IMG_WIDTH1_ICON 41 598dcb2a10SAndre Fischer#define IMG_WIDTH2_ICON 42 608dcb2a10SAndre Fischer#define IMG_WIDTH3_ICON 43 618dcb2a10SAndre Fischer#define IMG_WIDTH4_ICON 44 628dcb2a10SAndre Fischer#define IMG_WIDTH5_ICON 45 638dcb2a10SAndre Fischer#define IMG_WIDTH6_ICON 46 648dcb2a10SAndre Fischer#define IMG_WIDTH7_ICON 47 658dcb2a10SAndre Fischer#define IMG_WIDTH8_ICON 48 668dcb2a10SAndre Fischer 678dcb2a10SAndre Fischer#define IMG_WIDTH1_ICON_H 61 688dcb2a10SAndre Fischer#define IMG_WIDTH2_ICON_H 62 698dcb2a10SAndre Fischer#define IMG_WIDTH3_ICON_H 63 708dcb2a10SAndre Fischer#define IMG_WIDTH4_ICON_H 64 718dcb2a10SAndre Fischer#define IMG_WIDTH5_ICON_H 65 728dcb2a10SAndre Fischer#define IMG_WIDTH6_ICON_H 66 738dcb2a10SAndre Fischer#define IMG_WIDTH7_ICON_H 67 748dcb2a10SAndre Fischer#define IMG_WIDTH8_ICON_H 68 758dcb2a10SAndre Fischer 768dcb2a10SAndre Fischer//color popup page 778dcb2a10SAndre Fischer#define VS_COLOR 1 788dcb2a10SAndre Fischer 798dcb2a10SAndre Fischer//style popup page 808dcb2a10SAndre Fischer#define VS_STYLE 1 818dcb2a10SAndre Fischer#define PB_OPTIONS 2 828dcb2a10SAndre Fischer 838dcb2a10SAndre Fischer//width popup page 848dcb2a10SAndre Fischer#define VS_WIDTH 1 858dcb2a10SAndre Fischer#define MF_WIDTH 2 868dcb2a10SAndre Fischer#define FT_CUSTOME 3 878dcb2a10SAndre Fischer#define FT_LINE_WIDTH 4 888dcb2a10SAndre Fischer#define IMG_WIDTH_CUSTOM 5 898dcb2a10SAndre Fischer#define IMG_WIDTH_CUSTOM_GRAY 6 908dcb2a10SAndre Fischer#define CT_BORDER 7 918dcb2a10SAndre Fischer#define STR_WIDTH_LAST_CUSTOM 8 928dcb2a10SAndre Fischer#define STR_PT 9 934e8031e0SArmin Le Grand 944e8031e0SArmin Le Grand// eof 95