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#include "LinePropertyPanel.hrc" 238dcb2a10SAndre Fischer#include <sfx2/sidebar/propertypanel.hrc> 248dcb2a10SAndre Fischer#include <svx/dialogs.hrc> 258dcb2a10SAndre Fischer#include "helpid.hrc" 268dcb2a10SAndre Fischer 278dcb2a10SAndre Fischer#define TOOLBOX_WIDTH 50 288dcb2a10SAndre Fischer#define TOOLBOX_HEIGHT 14 298dcb2a10SAndre Fischer 308dcb2a10SAndre FischerControl RID_SIDEBAR_LINE_PANEL 318dcb2a10SAndre Fischer{ 328dcb2a10SAndre Fischer OutputSize = TRUE; 338dcb2a10SAndre Fischer DialogControl = TRUE; 348dcb2a10SAndre Fischer Border = FALSE; 358dcb2a10SAndre Fischer Text = "Line"; 368dcb2a10SAndre Fischer 378dcb2a10SAndre Fischer Size = MAP_APPFONT( 388dcb2a10SAndre Fischer PROPERTYPAGE_WIDTH, 398dcb2a10SAndre Fischer SECTIONPAGE_MARGIN_VERTICAL_TOP + TEXT_HEIGHT*4 + TEXT_CONTROL_SPACING_VERTICAL*4 + TOOLBOX_HEIGHT*3 + CONTROL_SPACING_VERTICAL*3 + CBOX_HEIGHT + SECTIONPAGE_MARGIN_VERTICAL_BOT ); 408dcb2a10SAndre Fischer HelpID = HID_PROPERTYPANEL_LINE_SECTION ; 418dcb2a10SAndre Fischer 428dcb2a10SAndre Fischer FixedText FT_WIDTH 438dcb2a10SAndre Fischer { 448dcb2a10SAndre Fischer Pos = MAP_APPFONT( SECTIONPAGE_MARGIN_HORIZONTAL , SECTIONPAGE_MARGIN_VERTICAL_TOP ) ; 458dcb2a10SAndre Fischer Size = MAP_APPFONT (TOOLBOX_WIDTH , TEXT_HEIGHT ) ; 468dcb2a10SAndre Fischer Text [ en-US ] = "~Width:" ; 478dcb2a10SAndre Fischer }; 488dcb2a10SAndre Fischer ToolBox TB_WIDTH 498dcb2a10SAndre Fischer { 508dcb2a10SAndre Fischer SVLook = TRUE ; 518dcb2a10SAndre Fischer Pos = MAP_APPFONT (SECTIONPAGE_MARGIN_HORIZONTAL, SECTIONPAGE_MARGIN_VERTICAL_TOP + TEXT_HEIGHT + TEXT_CONTROL_SPACING_VERTICAL) ; 528dcb2a10SAndre Fischer Size = MAP_APPFONT (TOOLBOX_WIDTH ,TOOLBOX_HEIGHT ) ; 538dcb2a10SAndre Fischer TabStop = TRUE ; 548dcb2a10SAndre Fischer HelpID = HID_PPROPERTYPANEL_LINE_TBX_WIDTH ; 558dcb2a10SAndre Fischer Text = "Width"; 568dcb2a10SAndre Fischer ItemList = 578dcb2a10SAndre Fischer { 588dcb2a10SAndre Fischer ToolBoxItem 598dcb2a10SAndre Fischer { 608dcb2a10SAndre Fischer Identifier = TBI_WIDTH ; 618dcb2a10SAndre Fischer DropDown = TRUE ; 628dcb2a10SAndre Fischer Text [ en-US ] = "Width" ; 638dcb2a10SAndre Fischer HelpID = HID_PPROPERTYPANEL_LINE_TBI_WIDTH; 648dcb2a10SAndre Fischer }; 658dcb2a10SAndre Fischer }; 668dcb2a10SAndre Fischer }; 678dcb2a10SAndre Fischer String STR_QH_TB_WIDTH 688dcb2a10SAndre Fischer { 698dcb2a10SAndre Fischer Text [ en-US ] = "Select the width of the line."; 708dcb2a10SAndre Fischer }; 718dcb2a10SAndre Fischer 728dcb2a10SAndre Fischer FixedText FT_COLOR 738dcb2a10SAndre Fischer { 748dcb2a10SAndre Fischer Pos = MAP_APPFONT ( SECTIONPAGE_MARGIN_HORIZONTAL + TOOLBOX_WIDTH + 3, SECTIONPAGE_MARGIN_VERTICAL_TOP ) ; 758dcb2a10SAndre Fischer Size = MAP_APPFONT (TOOLBOX_WIDTH , TEXT_HEIGHT ) ; 768dcb2a10SAndre Fischer Text [ en-US ] = "~Color:" ; 778dcb2a10SAndre Fischer }; 788dcb2a10SAndre Fischer ToolBox TB_COLOR 798dcb2a10SAndre Fischer { 808dcb2a10SAndre Fischer SVLook = TRUE ; 818dcb2a10SAndre Fischer Pos = MAP_APPFONT (SECTIONPAGE_MARGIN_HORIZONTAL + TOOLBOX_WIDTH + 4, SECTIONPAGE_MARGIN_VERTICAL_TOP + TEXT_HEIGHT + TEXT_CONTROL_SPACING_VERTICAL) ; 828dcb2a10SAndre Fischer Size = MAP_APPFONT (TOOLBOX_WIDTH ,TOOLBOX_HEIGHT ) ; 838dcb2a10SAndre Fischer TabStop = TRUE ; 848dcb2a10SAndre Fischer HelpID = HID_PPROPERTYPANEL_LINE_TBX_COLOR; 858dcb2a10SAndre Fischer Text = "Color"; 868dcb2a10SAndre Fischer ItemList = 878dcb2a10SAndre Fischer { 888dcb2a10SAndre Fischer ToolBoxItem 898dcb2a10SAndre Fischer { 908dcb2a10SAndre Fischer Identifier = TBI_COLOR ; 918dcb2a10SAndre Fischer DropDown = TRUE ; 928dcb2a10SAndre Fischer Text [ en-US ] = "Color" ; 938dcb2a10SAndre Fischer HelpID = HID_PPROPERTYPANEL_LINE_TBI_COLOR; 948dcb2a10SAndre Fischer }; 958dcb2a10SAndre Fischer }; 968dcb2a10SAndre Fischer }; 978dcb2a10SAndre Fischer String STR_QH_TB_COLOR 988dcb2a10SAndre Fischer { 998dcb2a10SAndre Fischer Text [ en-US ] = "Select the color of the line."; 1008dcb2a10SAndre Fischer }; 1018dcb2a10SAndre Fischer 1028dcb2a10SAndre Fischer FixedText FT_STYLE 1038dcb2a10SAndre Fischer { 1048dcb2a10SAndre Fischer Pos = MAP_APPFONT ( SECTIONPAGE_MARGIN_HORIZONTAL , SECTIONPAGE_MARGIN_VERTICAL_TOP + TEXT_HEIGHT + TEXT_CONTROL_SPACING_VERTICAL + TOOLBOX_HEIGHT + CONTROL_SPACING_VERTICAL) ; 1058dcb2a10SAndre Fischer Size = MAP_APPFONT (TOOLBOX_WIDTH , TEXT_HEIGHT ) ; 1068dcb2a10SAndre Fischer Text [ en-US ] = "~Style:" ; 1078dcb2a10SAndre Fischer }; 1088dcb2a10SAndre Fischer ToolBox TB_STYLE 1098dcb2a10SAndre Fischer { 1108dcb2a10SAndre Fischer SVLook = TRUE ; 1118dcb2a10SAndre Fischer Pos = MAP_APPFONT (SECTIONPAGE_MARGIN_HORIZONTAL, SECTIONPAGE_MARGIN_VERTICAL_TOP + TEXT_HEIGHT*2 + TEXT_CONTROL_SPACING_VERTICAL*2 + TOOLBOX_HEIGHT + CONTROL_SPACING_VERTICAL) ; 1128dcb2a10SAndre Fischer Size = MAP_APPFONT (TOOLBOX_WIDTH ,TOOLBOX_HEIGHT ) ; 1138dcb2a10SAndre Fischer TabStop = TRUE ; 1148dcb2a10SAndre Fischer HelpID = HID_PPROPERTYPANEL_LINE_TBX_STYLE; 1158dcb2a10SAndre Fischer Text = "Style"; 1168dcb2a10SAndre Fischer ItemList = 1178dcb2a10SAndre Fischer { 1188dcb2a10SAndre Fischer ToolBoxItem 1198dcb2a10SAndre Fischer { 1208dcb2a10SAndre Fischer Identifier = TBI_STYLE ; 1218dcb2a10SAndre Fischer DropDown = TRUE ; 1228dcb2a10SAndre Fischer Text [ en-US ] = "Style" ; 1238dcb2a10SAndre Fischer HelpID = HID_PPROPERTYPANEL_LINE_TBI_STYLE; 1248dcb2a10SAndre Fischer }; 1258dcb2a10SAndre Fischer }; 1268dcb2a10SAndre Fischer }; 1278dcb2a10SAndre Fischer String STR_QH_TB_STYLE 1288dcb2a10SAndre Fischer { 1298dcb2a10SAndre Fischer Text [ en-US ] = "Select the style of the line."; 1308dcb2a10SAndre Fischer }; 1318dcb2a10SAndre Fischer 1328dcb2a10SAndre Fischer FixedText FT_TRANSPARENT 1338dcb2a10SAndre Fischer { 1348dcb2a10SAndre Fischer Pos = MAP_APPFONT ( SECTIONPAGE_MARGIN_HORIZONTAL + TOOLBOX_WIDTH + 3 , SECTIONPAGE_MARGIN_VERTICAL_TOP + TEXT_HEIGHT + TEXT_CONTROL_SPACING_VERTICAL + TOOLBOX_HEIGHT + CONTROL_SPACING_VERTICAL) ; 1358dcb2a10SAndre Fischer Size = MAP_APPFONT (TOOLBOX_WIDTH , TEXT_HEIGHT ) ; 1368dcb2a10SAndre Fischer Text [ en-US ] = "~Transparency:" ; 1378dcb2a10SAndre Fischer }; 1388dcb2a10SAndre Fischer MetricField MF_TRANSPARENT 1398dcb2a10SAndre Fischer { 1408dcb2a10SAndre Fischer Border = TRUE ; 1418dcb2a10SAndre Fischer HelpID = HID_PPROPERTYPANEL_LINE_MTR_TRANCEPARENCE; 1428dcb2a10SAndre Fischer Pos = MAP_APPFONT ( SECTIONPAGE_MARGIN_HORIZONTAL + TOOLBOX_WIDTH + 3 , SECTIONPAGE_MARGIN_VERTICAL_TOP + TEXT_HEIGHT*2 + TEXT_CONTROL_SPACING_VERTICAL*2 + TOOLBOX_HEIGHT + CONTROL_SPACING_VERTICAL) ; 1438dcb2a10SAndre Fischer Size = MAP_APPFONT ( TOOLBOX_WIDTH + 1 , 12 ) ; 1448dcb2a10SAndre Fischer TabStop = TRUE ; 1458dcb2a10SAndre Fischer Repeat = TRUE ; 1468dcb2a10SAndre Fischer Spin = TRUE ; 1478dcb2a10SAndre Fischer Maximum = 100 ; 1488dcb2a10SAndre Fischer StrictFormat = TRUE ; 1498dcb2a10SAndre Fischer Unit = FUNIT_CUSTOM ; 1508dcb2a10SAndre Fischer CustomUnitText = "%" ; 1518dcb2a10SAndre Fischer Last = 100 ; 1528dcb2a10SAndre Fischer SpinSize = 5 ; 1538dcb2a10SAndre Fischer QuickHelpText [ en-US ] = "Specify the transparency of the line."; 1548dcb2a10SAndre Fischer }; 1558dcb2a10SAndre Fischer 1568dcb2a10SAndre Fischer FixedText FT_ARROW 1578dcb2a10SAndre Fischer { 1588dcb2a10SAndre Fischer Pos = MAP_APPFONT ( SECTIONPAGE_MARGIN_HORIZONTAL, SECTIONPAGE_MARGIN_VERTICAL_TOP + TEXT_HEIGHT*2 + TEXT_CONTROL_SPACING_VERTICAL*2 + TOOLBOX_HEIGHT*2 + CONTROL_SPACING_VERTICAL*2) ; 1598dcb2a10SAndre Fischer Size = MAP_APPFONT (TOOLBOX_WIDTH * 2 + 3 , TEXT_HEIGHT ) ; 1608dcb2a10SAndre Fischer Text [ en-US ] = "~Arrow:" ; 1618dcb2a10SAndre Fischer }; 1628dcb2a10SAndre Fischer ListBox LB_START 1638dcb2a10SAndre Fischer { 1648dcb2a10SAndre Fischer Border = TRUE ; 1658dcb2a10SAndre Fischer HelpID = HID_PPROPERTYPANEL_LINE_LB_START; 1668dcb2a10SAndre Fischer Pos = MAP_APPFONT ( SECTIONPAGE_MARGIN_HORIZONTAL , SECTIONPAGE_MARGIN_VERTICAL_TOP + TEXT_HEIGHT*3 + TEXT_CONTROL_SPACING_VERTICAL*3 + TOOLBOX_HEIGHT*2 + CONTROL_SPACING_VERTICAL*2 ) ; 1678dcb2a10SAndre Fischer Size = MAP_APPFONT ( TOOLBOX_WIDTH , 99 ) ; 1688dcb2a10SAndre Fischer TabStop = TRUE ; 1698dcb2a10SAndre Fischer DropDown = TRUE ; 1708dcb2a10SAndre Fischer DDExtraWidth = TRUE ; 1718dcb2a10SAndre Fischer QuickHelpText [ en-US ] = "Select the style of the beginning arrowhead."; 1728dcb2a10SAndre Fischer }; 1738dcb2a10SAndre Fischer ListBox LB_END 1748dcb2a10SAndre Fischer { 1758dcb2a10SAndre Fischer Border = TRUE ; 1768dcb2a10SAndre Fischer HelpID = HID_PPROPERTYPANEL_LINE_LB_END; 1778dcb2a10SAndre Fischer Pos = MAP_APPFONT ( SECTIONPAGE_MARGIN_HORIZONTAL + TOOLBOX_WIDTH + 3 , SECTIONPAGE_MARGIN_VERTICAL_TOP + TEXT_HEIGHT*3 + TEXT_CONTROL_SPACING_VERTICAL*3 + TOOLBOX_HEIGHT*2 + CONTROL_SPACING_VERTICAL*2 ) ; 1788dcb2a10SAndre Fischer Size = MAP_APPFONT ( TOOLBOX_WIDTH + 1, 100 ) ; 1798dcb2a10SAndre Fischer TabStop = TRUE ; 1808dcb2a10SAndre Fischer DropDown = TRUE ; 1818dcb2a10SAndre Fischer DDExtraWidth = TRUE ; 1828dcb2a10SAndre Fischer QuickHelpText [ en-US ] = "Select the style of the ending arrowhead."; 1838dcb2a10SAndre Fischer }; 1848dcb2a10SAndre Fischer 1858dcb2a10SAndre Fischer FixedText FT_EDGESTYLE 1868dcb2a10SAndre Fischer { 1878dcb2a10SAndre Fischer Pos = MAP_APPFONT ( 1888dcb2a10SAndre Fischer SECTIONPAGE_MARGIN_HORIZONTAL, 1898dcb2a10SAndre Fischer SECTIONPAGE_MARGIN_VERTICAL_TOP + TEXT_HEIGHT*3 + TEXT_CONTROL_SPACING_VERTICAL*3 + TOOLBOX_HEIGHT*3 + CONTROL_SPACING_VERTICAL*3) ; 1908dcb2a10SAndre Fischer Size = MAP_APPFONT (TOOLBOX_WIDTH * 2 + 3 , TEXT_HEIGHT ) ; 1918dcb2a10SAndre Fischer Text [ en-US ] = "~Corner style" ; 1928dcb2a10SAndre Fischer }; 1938dcb2a10SAndre Fischer ListBox LB_EDGESTYLE 1948dcb2a10SAndre Fischer { 1958dcb2a10SAndre Fischer HelpID = HID_PPROPERTYPANEL_LINE_LB_EDGESTYLE; 1968dcb2a10SAndre Fischer Border = TRUE ; 1978dcb2a10SAndre Fischer Pos = MAP_APPFONT ( 1988dcb2a10SAndre Fischer SECTIONPAGE_MARGIN_HORIZONTAL , 1998dcb2a10SAndre Fischer SECTIONPAGE_MARGIN_VERTICAL_TOP + TEXT_HEIGHT*4 + TEXT_CONTROL_SPACING_VERTICAL*4 + TOOLBOX_HEIGHT*3 + CONTROL_SPACING_VERTICAL*3 ) ; 2008dcb2a10SAndre Fischer Size = MAP_APPFONT ( TOOLBOX_WIDTH , 99 ) ; 2018dcb2a10SAndre Fischer TabStop = TRUE ; 2028dcb2a10SAndre Fischer DropDown = TRUE ; 2038dcb2a10SAndre Fischer DDExtraWidth = TRUE ; 2048dcb2a10SAndre Fischer QuickHelpText [ en-US ] = "Select the style of the edge connections."; 2058dcb2a10SAndre Fischer StringList [ en-US ] = 2068dcb2a10SAndre Fischer { 2078dcb2a10SAndre Fischer < "Rounded" ; Default ; > ; 2088dcb2a10SAndre Fischer < "- none -" ; > ; 2098dcb2a10SAndre Fischer < "Mitered" ; > ; 2108dcb2a10SAndre Fischer < "Beveled" ; > ; 2118dcb2a10SAndre Fischer }; 2128dcb2a10SAndre Fischer }; 2138dcb2a10SAndre Fischer FixedText FT_CAPSTYLE 2148dcb2a10SAndre Fischer { 2158dcb2a10SAndre Fischer Pos = MAP_APPFONT ( 2168dcb2a10SAndre Fischer SECTIONPAGE_MARGIN_HORIZONTAL + TOOLBOX_WIDTH + 3, 2178dcb2a10SAndre Fischer SECTIONPAGE_MARGIN_VERTICAL_TOP + TEXT_HEIGHT*3 + TEXT_CONTROL_SPACING_VERTICAL*3 + TOOLBOX_HEIGHT*3 + CONTROL_SPACING_VERTICAL*3) ; 2188dcb2a10SAndre Fischer Size = MAP_APPFONT (TOOLBOX_WIDTH * 2 + 3 , TEXT_HEIGHT ) ; 2198dcb2a10SAndre Fischer Text [ en-US ] = "Ca~p style" ; 2208dcb2a10SAndre Fischer }; 2218dcb2a10SAndre Fischer ListBox LB_CAPSTYLE 2228dcb2a10SAndre Fischer { 2238dcb2a10SAndre Fischer HelpID = HID_PPROPERTYPANEL_LINE_LB_CAPSTYLE; 2248dcb2a10SAndre Fischer Border = TRUE ; 2258dcb2a10SAndre Fischer Pos = MAP_APPFONT ( 2268dcb2a10SAndre Fischer SECTIONPAGE_MARGIN_HORIZONTAL + TOOLBOX_WIDTH + 3, 2278dcb2a10SAndre Fischer SECTIONPAGE_MARGIN_VERTICAL_TOP + TEXT_HEIGHT*4 + TEXT_CONTROL_SPACING_VERTICAL*4 + TOOLBOX_HEIGHT*3 + CONTROL_SPACING_VERTICAL*3 ) ; 2288dcb2a10SAndre Fischer Size = MAP_APPFONT ( TOOLBOX_WIDTH , 99 ) ; 2298dcb2a10SAndre Fischer TabStop = TRUE ; 2308dcb2a10SAndre Fischer DropDown = TRUE ; 2318dcb2a10SAndre Fischer DDExtraWidth = TRUE ; 2328dcb2a10SAndre Fischer QuickHelpText [ en-US ] = "Select the style of the line caps."; 2338dcb2a10SAndre Fischer StringList [ en-US ] = 2348dcb2a10SAndre Fischer { 2358dcb2a10SAndre Fischer < "Flat" ; Default ; > ; // Same string as in Excel 2368dcb2a10SAndre Fischer < "Round" ; > ; 2378dcb2a10SAndre Fischer < "Square" ; > ; 2388dcb2a10SAndre Fischer }; 2398dcb2a10SAndre Fischer }; 2408dcb2a10SAndre Fischer 2418dcb2a10SAndre Fischer Image IMG_COLOR 2428dcb2a10SAndre Fischer { 2438dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/Line_color.png";}; 2448dcb2a10SAndre Fischer }; 2458dcb2a10SAndre Fischer Image IMG_COLOR_NO 2468dcb2a10SAndre Fischer { 2478dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/no color.png";}; 2488dcb2a10SAndre Fischer }; 2498dcb2a10SAndre Fischer 2508dcb2a10SAndre Fischer Image IMG_LINE1_ICON 2518dcb2a10SAndre Fischer { 2528dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/style_line1_s.png";}; 2538dcb2a10SAndre Fischer }; 2548dcb2a10SAndre Fischer Image IMG_LINE2_ICON 2558dcb2a10SAndre Fischer { 2568dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/style_line2_s.png";}; 2578dcb2a10SAndre Fischer }; 2588dcb2a10SAndre Fischer Image IMG_LINE3_ICON 2598dcb2a10SAndre Fischer { 2608dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/style_line3_s.png";}; 2618dcb2a10SAndre Fischer }; 2628dcb2a10SAndre Fischer Image IMG_LINE4_ICON 2638dcb2a10SAndre Fischer { 2648dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/style_line4_s.png";}; 2658dcb2a10SAndre Fischer }; 2668dcb2a10SAndre Fischer Image IMG_LINE5_ICON 2678dcb2a10SAndre Fischer { 2688dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/style_line5_s.png";}; 2698dcb2a10SAndre Fischer }; 2708dcb2a10SAndre Fischer Image IMG_LINE6_ICON 2718dcb2a10SAndre Fischer { 2728dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/style_line6_s.png";}; 2738dcb2a10SAndre Fischer }; 2748dcb2a10SAndre Fischer Image IMG_LINE7_ICON 2758dcb2a10SAndre Fischer { 2768dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/style_line7_s.png";}; 2778dcb2a10SAndre Fischer }; 2788dcb2a10SAndre Fischer Image IMG_LINE8_ICON 2798dcb2a10SAndre Fischer { 2808dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/style_line8_s.png";}; 2818dcb2a10SAndre Fischer }; 2828dcb2a10SAndre Fischer Image IMG_LINE9_ICON 2838dcb2a10SAndre Fischer { 2848dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/style_line9_s.png";}; 2858dcb2a10SAndre Fischer }; 2868dcb2a10SAndre Fischer Image IMG_LINE10_ICON 2878dcb2a10SAndre Fischer { 2888dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/style_line10_s.png";}; 2898dcb2a10SAndre Fischer }; 2908dcb2a10SAndre Fischer Image IMG_LINE11_ICON 2918dcb2a10SAndre Fischer { 2928dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/style_line11_s.png";}; 2938dcb2a10SAndre Fischer }; 2948dcb2a10SAndre Fischer Image IMG_NONE_ICON 2958dcb2a10SAndre Fischer { 2968dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/blank.png";}; 2978dcb2a10SAndre Fischer }; 2988dcb2a10SAndre Fischer 2998dcb2a10SAndre Fischer //high contrast for line style icon 3008dcb2a10SAndre Fischer Image IMG_LINE1_ICON_H 3018dcb2a10SAndre Fischer { 3028dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/style_line1_s_h.png";}; 3038dcb2a10SAndre Fischer }; 3048dcb2a10SAndre Fischer Image IMG_LINE2_ICON_H 3058dcb2a10SAndre Fischer { 3068dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/style_line2_s_h.png";}; 3078dcb2a10SAndre Fischer }; 3088dcb2a10SAndre Fischer Image IMG_LINE3_ICON_H 3098dcb2a10SAndre Fischer { 3108dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/style_line3_s_h.png";}; 3118dcb2a10SAndre Fischer }; 3128dcb2a10SAndre Fischer Image IMG_LINE4_ICON_H 3138dcb2a10SAndre Fischer { 3148dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/style_line4_s_h.png";}; 3158dcb2a10SAndre Fischer }; 3168dcb2a10SAndre Fischer Image IMG_LINE5_ICON_H 3178dcb2a10SAndre Fischer { 3188dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/style_line5_s_h.png";}; 3198dcb2a10SAndre Fischer }; 3208dcb2a10SAndre Fischer Image IMG_LINE6_ICON_H 3218dcb2a10SAndre Fischer { 3228dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/style_line6_s_h.png";}; 3238dcb2a10SAndre Fischer }; 3248dcb2a10SAndre Fischer Image IMG_LINE7_ICON_H 3258dcb2a10SAndre Fischer { 3268dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/style_line7_s_h.png";}; 3278dcb2a10SAndre Fischer }; 3288dcb2a10SAndre Fischer Image IMG_LINE8_ICON_H 3298dcb2a10SAndre Fischer { 3308dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/style_line8_s_h.png";}; 3318dcb2a10SAndre Fischer }; 3328dcb2a10SAndre Fischer Image IMG_LINE9_ICON_H 3338dcb2a10SAndre Fischer { 3348dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/style_line9_s_h.png";}; 3358dcb2a10SAndre Fischer }; 3368dcb2a10SAndre Fischer Image IMG_LINE10_ICON_H 3378dcb2a10SAndre Fischer { 3388dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/style_line10_s_h.png";}; 3398dcb2a10SAndre Fischer }; 3408dcb2a10SAndre Fischer Image IMG_LINE11_ICON_H 3418dcb2a10SAndre Fischer { 3428dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/style_line11_s_h.png";}; 3438dcb2a10SAndre Fischer }; 3448dcb2a10SAndre Fischer 3458dcb2a10SAndre Fischer //WIDTH ICON 3468dcb2a10SAndre Fischer Image IMG_WIDTH1_ICON 3478dcb2a10SAndre Fischer { 3488dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/width1.png";}; 3498dcb2a10SAndre Fischer }; 3508dcb2a10SAndre Fischer Image IMG_WIDTH2_ICON 3518dcb2a10SAndre Fischer { 3528dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/width2.png";}; 3538dcb2a10SAndre Fischer }; 3548dcb2a10SAndre Fischer Image IMG_WIDTH3_ICON 3558dcb2a10SAndre Fischer { 3568dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/width3.png";}; 3578dcb2a10SAndre Fischer }; 3588dcb2a10SAndre Fischer Image IMG_WIDTH4_ICON 3598dcb2a10SAndre Fischer { 3608dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/width4.png";}; 3618dcb2a10SAndre Fischer }; 3628dcb2a10SAndre Fischer Image IMG_WIDTH5_ICON 3638dcb2a10SAndre Fischer { 3648dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/width5.png";}; 3658dcb2a10SAndre Fischer }; 3668dcb2a10SAndre Fischer Image IMG_WIDTH6_ICON 3678dcb2a10SAndre Fischer { 3688dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/width6.png";}; 3698dcb2a10SAndre Fischer }; 3708dcb2a10SAndre Fischer Image IMG_WIDTH7_ICON 3718dcb2a10SAndre Fischer { 3728dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/width7.png";}; 3738dcb2a10SAndre Fischer }; 3748dcb2a10SAndre Fischer Image IMG_WIDTH8_ICON 3758dcb2a10SAndre Fischer { 3768dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/width8.png";}; 3778dcb2a10SAndre Fischer }; 3788dcb2a10SAndre Fischer 3798dcb2a10SAndre Fischer //high contrast for line width 3808dcb2a10SAndre Fischer //WIDTH ICON 3818dcb2a10SAndre Fischer Image IMG_WIDTH1_ICON_H 3828dcb2a10SAndre Fischer { 3838dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/width1_h.png";}; 3848dcb2a10SAndre Fischer }; 3858dcb2a10SAndre Fischer Image IMG_WIDTH2_ICON_H 3868dcb2a10SAndre Fischer { 3878dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/width2_h.png";}; 3888dcb2a10SAndre Fischer }; 3898dcb2a10SAndre Fischer Image IMG_WIDTH3_ICON_H 3908dcb2a10SAndre Fischer { 3918dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/width3_h.png";}; 3928dcb2a10SAndre Fischer }; 3938dcb2a10SAndre Fischer Image IMG_WIDTH4_ICON_H 3948dcb2a10SAndre Fischer { 3958dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/width4_h.png";}; 3968dcb2a10SAndre Fischer }; 3978dcb2a10SAndre Fischer Image IMG_WIDTH5_ICON_H 3988dcb2a10SAndre Fischer { 3998dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/width5_h.png";}; 4008dcb2a10SAndre Fischer }; 4018dcb2a10SAndre Fischer Image IMG_WIDTH6_ICON_H 4028dcb2a10SAndre Fischer { 4038dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/width6_h.png";}; 4048dcb2a10SAndre Fischer }; 4058dcb2a10SAndre Fischer Image IMG_WIDTH7_ICON_H 4068dcb2a10SAndre Fischer { 4078dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/width7_h.png";}; 4088dcb2a10SAndre Fischer }; 4098dcb2a10SAndre Fischer Image IMG_WIDTH8_ICON_H 4108dcb2a10SAndre Fischer { 4118dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/width8_h.png";}; 4128dcb2a10SAndre Fischer }; 4138dcb2a10SAndre Fischer}; 4148dcb2a10SAndre FischerControl RID_POPUPPANEL_LINEPAGE_COLOR 4158dcb2a10SAndre Fischer{ 4168dcb2a10SAndre Fischer OutputSize = TRUE; 4178dcb2a10SAndre Fischer DialogControl = TRUE; 4188dcb2a10SAndre Fischer Border = FALSE; 4198dcb2a10SAndre Fischer Size = MAP_APPFONT( POPUP_COLOR_PICKER_WIDTH , POPUP_COLOR_PICKER_HEIGHT ); 4208dcb2a10SAndre Fischer 4218dcb2a10SAndre Fischer Control VS_COLOR 4228dcb2a10SAndre Fischer { 4238dcb2a10SAndre Fischer HelpId = HID_PPROPERTYPANEL_LINE_VS_COLOR ; 4248dcb2a10SAndre Fischer Hide = TRUE ; 4258dcb2a10SAndre Fischer Pos = MAP_APPFONT ( OFFSET_X , OFFSET_Y ); 4268dcb2a10SAndre Fischer Size = MAP_APPFONT ( POPUP_COLOR_PICKER_WIDTH - OFFSET_X * 2, POPUP_COLOR_PICKER_HEIGHT - OFFSET_Y * 2); 4278dcb2a10SAndre Fischer TabStop = TRUE ; 4288dcb2a10SAndre Fischer Text = "Color"; 4298dcb2a10SAndre Fischer }; 4308dcb2a10SAndre Fischer String STR_AUTOMATICE 4318dcb2a10SAndre Fischer { 4328dcb2a10SAndre Fischer Text [ en-US ] = "No Color"; 4338dcb2a10SAndre Fischer }; 4348dcb2a10SAndre Fischer}; 4358dcb2a10SAndre FischerControl RID_POPUPPANEL_LINEPAGE_STYLE 4368dcb2a10SAndre Fischer{ 4378dcb2a10SAndre Fischer OutputSize = TRUE; 4388dcb2a10SAndre Fischer DialogControl = TRUE; 4398dcb2a10SAndre Fischer Border = FALSE; 4408dcb2a10SAndre Fischer 441facb16e7SArmin Le Grand Size = MAP_APPFONT( 442facb16e7SArmin Le Grand POPUPPANEL_MARGIN_SMALL * 2 + POPUP_BORDER_WIDTH , 443facb16e7SArmin Le Grand 13 + POPUP_BORDER_HEIGHT + POPUPPANEL_MARGIN_SMALL * 2 + POPUPPANEL_MARGIN_LARGE); 4448dcb2a10SAndre Fischer 4458dcb2a10SAndre Fischer Control VS_STYLE 4468dcb2a10SAndre Fischer { 4478dcb2a10SAndre Fischer HelpId = HID_PPROPERTYPANEL_LINE_VS_STYLE ; 4488dcb2a10SAndre Fischer Hide = TRUE ; 4498dcb2a10SAndre Fischer Pos = MAP_APPFONT( POPUPPANEL_MARGIN_SMALL + OFFSET_X , POPUPPANEL_MARGIN_SMALL + OFFSET_Y ); 4508dcb2a10SAndre Fischer Size = MAP_APPFONT ( 93 , 13 * 12); 4518dcb2a10SAndre Fischer TabStop = TRUE ; 4528dcb2a10SAndre Fischer Text = "Style"; 4538dcb2a10SAndre Fischer }; 4548dcb2a10SAndre Fischer 4558dcb2a10SAndre Fischer PushButton PB_OPTIONS 4568dcb2a10SAndre Fischer { 4578dcb2a10SAndre Fischer HelpId = HID_PPROPERTYPANEL_LINE_BTN_STYLE; 4588dcb2a10SAndre Fischer Pos = MAP_APPFONT ( POPUPPANEL_MARGIN_LARGE + OFFSET_X , POPUPPANEL_MARGIN_SMALL * 2 + OFFSET_Y ); 4598dcb2a10SAndre Fischer Size = MAP_APPFONT ( 93 , 13 ); 4608dcb2a10SAndre Fischer TabStop = TRUE; 4618dcb2a10SAndre Fischer Text [ en-US ] = "~More Options..."; 4628dcb2a10SAndre Fischer }; 4638dcb2a10SAndre Fischer 4648dcb2a10SAndre Fischer String STR_STYLE_NONE 4658dcb2a10SAndre Fischer { 4668dcb2a10SAndre Fischer Text [ en-US ] = "None"; 4678dcb2a10SAndre Fischer }; 4688dcb2a10SAndre Fischer String STR_STYLE_LINE1 4698dcb2a10SAndre Fischer { 4708dcb2a10SAndre Fischer Text [ en-US ] = "Continuous"; 4718dcb2a10SAndre Fischer }; 4728dcb2a10SAndre Fischer String STR_STYLE_LINE2 4738dcb2a10SAndre Fischer { 4748dcb2a10SAndre Fischer Text [ en-US ] = "Ultrafine dashed"; 4758dcb2a10SAndre Fischer }; 4768dcb2a10SAndre Fischer String STR_STYLE_LINE3 4778dcb2a10SAndre Fischer { 4788dcb2a10SAndre Fischer Text [ en-US ] = "Dashed (variable)"; 4798dcb2a10SAndre Fischer }; 4808dcb2a10SAndre Fischer String STR_STYLE_LINE4 4818dcb2a10SAndre Fischer { 4828dcb2a10SAndre Fischer Text [ en-US ] = "Fine dashed (variable)"; 4838dcb2a10SAndre Fischer }; 4848dcb2a10SAndre Fischer String STR_STYLE_LINE5 4858dcb2a10SAndre Fischer { 4868dcb2a10SAndre Fischer Text [ en-US ] = "Fine dashed"; 4878dcb2a10SAndre Fischer }; 4888dcb2a10SAndre Fischer String STR_STYLE_LINE6 4898dcb2a10SAndre Fischer { 4908dcb2a10SAndre Fischer Text [ en-US ] = "Fine dotted"; 4918dcb2a10SAndre Fischer }; 4928dcb2a10SAndre Fischer String STR_STYLE_LINE7 4938dcb2a10SAndre Fischer { 4948dcb2a10SAndre Fischer Text [ en-US ] = "Ultrafine dotted (variable)"; 4958dcb2a10SAndre Fischer }; 4968dcb2a10SAndre Fischer String STR_STYLE_LINE8 4978dcb2a10SAndre Fischer { 4988dcb2a10SAndre Fischer Text [ en-US ] = "3 dashes 3 dots (variable)"; 4998dcb2a10SAndre Fischer }; 5008dcb2a10SAndre Fischer String STR_STYLE_LINE9 5018dcb2a10SAndre Fischer { 5028dcb2a10SAndre Fischer Text [ en-US ] = "2 dots 1 dash"; 5038dcb2a10SAndre Fischer }; 5048dcb2a10SAndre Fischer String STR_STYLE_LINE10 5058dcb2a10SAndre Fischer { 5068dcb2a10SAndre Fischer Text [ en-US ] = "Ultrafine 2 dots 3 dashes"; 5078dcb2a10SAndre Fischer }; 5088dcb2a10SAndre Fischer String STR_STYLE_LINE11 5098dcb2a10SAndre Fischer { 5108dcb2a10SAndre Fischer Text [ en-US ] = "Line with fine dots"; 5118dcb2a10SAndre Fischer }; 5128dcb2a10SAndre Fischer 5138dcb2a10SAndre Fischer Image IMG_LINE1 5148dcb2a10SAndre Fischer { 5158dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/style_line1.png";}; 5168dcb2a10SAndre Fischer }; 5178dcb2a10SAndre Fischer Image IMG_LINE1_S 5188dcb2a10SAndre Fischer { 5198dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/style_line1_h.png";}; 5208dcb2a10SAndre Fischer }; 5218dcb2a10SAndre Fischer Image IMG_LINE2 5228dcb2a10SAndre Fischer { 5238dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/style_line2.png";}; 5248dcb2a10SAndre Fischer }; 5258dcb2a10SAndre Fischer Image IMG_LINE2_S 5268dcb2a10SAndre Fischer { 5278dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/style_line2_h.png";}; 5288dcb2a10SAndre Fischer }; 5298dcb2a10SAndre Fischer Image IMG_LINE3 5308dcb2a10SAndre Fischer { 5318dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/style_line3.png";}; 5328dcb2a10SAndre Fischer }; 5338dcb2a10SAndre Fischer Image IMG_LINE3_S 5348dcb2a10SAndre Fischer { 5358dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/style_line3_h.png";}; 5368dcb2a10SAndre Fischer }; 5378dcb2a10SAndre Fischer Image IMG_LINE4 5388dcb2a10SAndre Fischer { 5398dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/style_line4.png";}; 5408dcb2a10SAndre Fischer }; 5418dcb2a10SAndre Fischer Image IMG_LINE4_S 5428dcb2a10SAndre Fischer { 5438dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/style_line4_h.png";}; 5448dcb2a10SAndre Fischer }; 5458dcb2a10SAndre Fischer Image IMG_LINE5 5468dcb2a10SAndre Fischer { 5478dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/style_line5.png";}; 5488dcb2a10SAndre Fischer }; 5498dcb2a10SAndre Fischer Image IMG_LINE5_S 5508dcb2a10SAndre Fischer { 5518dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/style_line5_h.png";}; 5528dcb2a10SAndre Fischer }; 5538dcb2a10SAndre Fischer Image IMG_LINE6 5548dcb2a10SAndre Fischer { 5558dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/style_line6.png";}; 5568dcb2a10SAndre Fischer }; 5578dcb2a10SAndre Fischer Image IMG_LINE6_S 5588dcb2a10SAndre Fischer { 5598dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/style_line6_h.png";}; 5608dcb2a10SAndre Fischer }; 5618dcb2a10SAndre Fischer Image IMG_LINE7 5628dcb2a10SAndre Fischer { 5638dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/style_line7.png";}; 5648dcb2a10SAndre Fischer }; 5658dcb2a10SAndre Fischer Image IMG_LINE7_S 5668dcb2a10SAndre Fischer { 5678dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/style_line7_h.png";}; 5688dcb2a10SAndre Fischer }; 5698dcb2a10SAndre Fischer Image IMG_LINE8 5708dcb2a10SAndre Fischer { 5718dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/style_line8.png";}; 5728dcb2a10SAndre Fischer }; 5738dcb2a10SAndre Fischer Image IMG_LINE8_S 5748dcb2a10SAndre Fischer { 5758dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/style_line8_h.png";}; 5768dcb2a10SAndre Fischer }; 5778dcb2a10SAndre Fischer Image IMG_LINE9 5788dcb2a10SAndre Fischer { 5798dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/style_line9.png";}; 5808dcb2a10SAndre Fischer }; 5818dcb2a10SAndre Fischer Image IMG_LINE9_S 5828dcb2a10SAndre Fischer { 5838dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/style_line9_h.png";}; 5848dcb2a10SAndre Fischer }; 5858dcb2a10SAndre Fischer Image IMG_LINE10 5868dcb2a10SAndre Fischer { 5878dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/style_line10.png";}; 5888dcb2a10SAndre Fischer }; 5898dcb2a10SAndre Fischer Image IMG_LINE10_S 5908dcb2a10SAndre Fischer { 5918dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/style_line10_h.png";}; 5928dcb2a10SAndre Fischer }; 5938dcb2a10SAndre Fischer Image IMG_LINE11 5948dcb2a10SAndre Fischer { 5958dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/style_line11.png";}; 5968dcb2a10SAndre Fischer }; 5978dcb2a10SAndre Fischer Image IMG_LINE11_S 5988dcb2a10SAndre Fischer { 5998dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/style_line11_h.png";}; 6008dcb2a10SAndre Fischer }; 6018dcb2a10SAndre Fischer 6028dcb2a10SAndre Fischer //high contrast 6038dcb2a10SAndre Fischer Image IMG_LINE1_H 6048dcb2a10SAndre Fischer { 6058dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/style_line1_hh.png";}; 6068dcb2a10SAndre Fischer }; 6078dcb2a10SAndre Fischer Image IMG_LINE2_H 6088dcb2a10SAndre Fischer { 6098dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/style_line2_hh.png";}; 6108dcb2a10SAndre Fischer }; 6118dcb2a10SAndre Fischer Image IMG_LINE3_H 6128dcb2a10SAndre Fischer { 6138dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/style_line3_hh.png";}; 6148dcb2a10SAndre Fischer }; 6158dcb2a10SAndre Fischer Image IMG_LINE4_H 6168dcb2a10SAndre Fischer { 6178dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/style_line4_hh.png";}; 6188dcb2a10SAndre Fischer }; 6198dcb2a10SAndre Fischer Image IMG_LINE5_H 6208dcb2a10SAndre Fischer { 6218dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/style_line5_hh.png";}; 6228dcb2a10SAndre Fischer }; 6238dcb2a10SAndre Fischer Image IMG_LINE6_H 6248dcb2a10SAndre Fischer { 6258dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/style_line6_hh.png";}; 6268dcb2a10SAndre Fischer }; 6278dcb2a10SAndre Fischer Image IMG_LINE7_H 6288dcb2a10SAndre Fischer { 6298dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/style_line7_hh.png";}; 6308dcb2a10SAndre Fischer }; 6318dcb2a10SAndre Fischer Image IMG_LINE8_H 6328dcb2a10SAndre Fischer { 6338dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/style_line8_hh.png";}; 6348dcb2a10SAndre Fischer }; 6358dcb2a10SAndre Fischer Image IMG_LINE9_H 6368dcb2a10SAndre Fischer { 6378dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/style_line9_hh.png";}; 6388dcb2a10SAndre Fischer }; 6398dcb2a10SAndre Fischer Image IMG_LINE10_H 6408dcb2a10SAndre Fischer { 6418dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/style_line10_hh.png";}; 6428dcb2a10SAndre Fischer }; 6438dcb2a10SAndre Fischer Image IMG_LINE11_H 6448dcb2a10SAndre Fischer { 6458dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/style_line11_hh.png";}; 6468dcb2a10SAndre Fischer }; 6478dcb2a10SAndre Fischer}; 6488dcb2a10SAndre FischerControl RID_POPUPPANEL_LINEPAGE_WIDTH 6498dcb2a10SAndre Fischer{ 6508dcb2a10SAndre Fischer OutputSize = TRUE; 6518dcb2a10SAndre Fischer DialogControl = TRUE; 6528dcb2a10SAndre Fischer Border = FALSE; 6538dcb2a10SAndre Fischer 6548dcb2a10SAndre Fischer Size = MAP_APPFONT( POPUPPANEL_MARGIN_SMALL * 2 + POPUP_BORDER_WIDTH + 80, POPUPPANEL_MARGIN_SMALL + POPUPPANEL_MARGIN_LARGE + POPUP_BORDER_WIDTH + 12 * 9 + POPUPPANEL_MARGIN_SMALL * 2 + TEXT_HEIGHT + (POPUPPANEL_MARGIN_LARGE * 2 + TEXT_HEIGHT + 12 + TEXT_CONTROL_SPACING_VERTICAL)); 6558dcb2a10SAndre Fischer 6568dcb2a10SAndre Fischer Control VS_WIDTH 6578dcb2a10SAndre Fischer { 6588dcb2a10SAndre Fischer HelpId = HID_PPROPERTYPANEL_LINE_VS_WIDTH ; 6598dcb2a10SAndre Fischer Hide = TRUE ; 6608dcb2a10SAndre Fischer Pos = MAP_APPFONT( POPUPPANEL_MARGIN_SMALL + OFFSET_X , POPUPPANEL_MARGIN_SMALL + OFFSET_Y ); 6618dcb2a10SAndre Fischer Size = MAP_APPFONT ( 80 , 12 * 9); 6628dcb2a10SAndre Fischer TabStop = TRUE ; 6638dcb2a10SAndre Fischer Text = "Width"; 6648dcb2a10SAndre Fischer }; 6658dcb2a10SAndre Fischer FixedText FT_CUSTOME 6668dcb2a10SAndre Fischer { 6678dcb2a10SAndre Fischer Pos = MAP_APPFONT ( POPUPPANEL_MARGIN_LARGE + OFFSET_X, POPUPPANEL_MARGIN_SMALL + OFFSET_Y + 12 * 9 + POPUPPANEL_MARGIN_SMALL ) ; 6688dcb2a10SAndre Fischer Size = MAP_APPFONT ( 80 , TEXT_HEIGHT ) ; 6698dcb2a10SAndre Fischer Text [ en-US ] = "Custom:" ; 6708dcb2a10SAndre Fischer }; 6718dcb2a10SAndre Fischer FixedText FT_LINE_WIDTH 6728dcb2a10SAndre Fischer { 6738dcb2a10SAndre Fischer Pos = MAP_APPFONT ( CUSTOM_X + POPUPPANEL_MARGIN_LARGE, CUSTOM_Y + POPUPPANEL_MARGIN_LARGE) ; 6748dcb2a10SAndre Fischer Size = MAP_APPFONT ( 74 - POPUPPANEL_MARGIN_LARGE * 2 , TEXT_HEIGHT ) ; 6758dcb2a10SAndre Fischer Text [ en-US ] = "Line ~width:" ; 6768dcb2a10SAndre Fischer }; 6778dcb2a10SAndre Fischer MetricField MF_WIDTH 6788dcb2a10SAndre Fischer { 6798dcb2a10SAndre Fischer Border = TRUE ; 6808dcb2a10SAndre Fischer HelpID = HID_PPROPERTYPANEL_LINE_MTR_WIDTH ; 6818dcb2a10SAndre Fischer Pos = MAP_APPFONT ( CUSTOM_X + POPUPPANEL_MARGIN_LARGE , CUSTOM_Y + POPUPPANEL_MARGIN_LARGE + TEXT_HEIGHT + TEXT_CONTROL_SPACING_VERTICAL) ; 6828dcb2a10SAndre Fischer Size = MAP_APPFONT ( 40 , 12 ) ; 6838dcb2a10SAndre Fischer TabStop = TRUE ; 6848dcb2a10SAndre Fischer Right = TRUE ; 6858dcb2a10SAndre Fischer Repeat = TRUE ; 6868dcb2a10SAndre Fischer Spin = TRUE ; 6878dcb2a10SAndre Fischer Maximum = 5000 ; 6888dcb2a10SAndre Fischer StrictFormat = TRUE ; 6898dcb2a10SAndre Fischer DecimalDigits = 2 ; 6908dcb2a10SAndre Fischer Value = 1 ; 6918dcb2a10SAndre Fischer Unit = FUNIT_MM ; 6928dcb2a10SAndre Fischer Last = 5000 ; 6938dcb2a10SAndre Fischer SpinSize = 10 ; 6948dcb2a10SAndre Fischer QuickHelpText [ en-US ] = "Specify the width of the line."; 6958dcb2a10SAndre Fischer }; 6968dcb2a10SAndre Fischer 6978dcb2a10SAndre Fischer Image IMG_WIDTH_CUSTOM 6988dcb2a10SAndre Fischer { 6998dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/last_custom_common.png";}; 7008dcb2a10SAndre Fischer }; 7018dcb2a10SAndre Fischer Image IMG_WIDTH_CUSTOM_GRAY 7028dcb2a10SAndre Fischer { 7038dcb2a10SAndre Fischer ImageBitmap = Bitmap{File = "symphony/last_custom_common_grey.png";}; 7048dcb2a10SAndre Fischer }; 7058dcb2a10SAndre Fischer String STR_WIDTH_LAST_CUSTOM 7068dcb2a10SAndre Fischer { 7078dcb2a10SAndre Fischer Text [ en-US ] = "Last Custom Value"; 7088dcb2a10SAndre Fischer }; 7098dcb2a10SAndre Fischer String STR_PT 7108dcb2a10SAndre Fischer { 7118dcb2a10SAndre Fischer Text [ en-US ] = "pt"; 7128dcb2a10SAndre Fischer }; 7138dcb2a10SAndre Fischer}; 714*4e8031e0SArmin Le Grand 715*4e8031e0SArmin Le Grand// eof 716