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 2202c50d82SAndre Fischer#include "LinePropertyPanel.hrc" 2358e893aeSArmin Le Grand#include <sfx2/sidebar/propertypanel.hrc> 2458e893aeSArmin Le Grand#include <svx/dialogs.hrc> 2558e893aeSArmin Le Grand#include "helpid.hrc" 2658e893aeSArmin Le Grand 2758e893aeSArmin Le Grand#define TOOLBOX_WIDTH 50 2858e893aeSArmin Le Grand#define TOOLBOX_HEIGHT 14 2958e893aeSArmin Le Grand 3058e893aeSArmin Le GrandControl RID_SIDEBAR_LINE_PANEL 3158e893aeSArmin Le Grand{ 3258e893aeSArmin Le Grand OutputSize = TRUE; 3358e893aeSArmin Le Grand DialogControl = TRUE; 3458e893aeSArmin Le Grand Border = FALSE; 3558e893aeSArmin Le Grand Text = "Line"; 3658e893aeSArmin Le Grand 37d5370dc8SArmin Le Grand Size = MAP_APPFONT( 38d5370dc8SArmin Le Grand PROPERTYPAGE_WIDTH, 39d5370dc8SArmin Le Grand 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 ); 4058e893aeSArmin Le Grand HelpID = HID_PROPERTYPANEL_LINE_SECTION ; 4158e893aeSArmin Le Grand 4258e893aeSArmin Le Grand FixedText FT_WIDTH 4358e893aeSArmin Le Grand { 4458e893aeSArmin Le Grand Pos = MAP_APPFONT( SECTIONPAGE_MARGIN_HORIZONTAL , SECTIONPAGE_MARGIN_VERTICAL_TOP ) ; 4558e893aeSArmin Le Grand Size = MAP_APPFONT (TOOLBOX_WIDTH , TEXT_HEIGHT ) ; 4658e893aeSArmin Le Grand Text [ en-US ] = "~Width:" ; 4758e893aeSArmin Le Grand }; 4858e893aeSArmin Le Grand ToolBox TB_WIDTH 4958e893aeSArmin Le Grand { 5058e893aeSArmin Le Grand SVLook = TRUE ; 5158e893aeSArmin Le Grand Pos = MAP_APPFONT (SECTIONPAGE_MARGIN_HORIZONTAL, SECTIONPAGE_MARGIN_VERTICAL_TOP + TEXT_HEIGHT + TEXT_CONTROL_SPACING_VERTICAL) ; 5258e893aeSArmin Le Grand Size = MAP_APPFONT (TOOLBOX_WIDTH ,TOOLBOX_HEIGHT ) ; 5358e893aeSArmin Le Grand TabStop = TRUE ; 5458e893aeSArmin Le Grand HelpID = HID_PPROPERTYPANEL_LINE_TBX_WIDTH ; 5558e893aeSArmin Le Grand Text = "Width"; 5658e893aeSArmin Le Grand ItemList = 5758e893aeSArmin Le Grand { 5858e893aeSArmin Le Grand ToolBoxItem 5958e893aeSArmin Le Grand { 6058e893aeSArmin Le Grand Identifier = TBI_WIDTH ; 6158e893aeSArmin Le Grand DropDown = TRUE ; 6258e893aeSArmin Le Grand Text [ en-US ] = "Width" ; 6358e893aeSArmin Le Grand HelpID = HID_PPROPERTYPANEL_LINE_TBI_WIDTH; 6458e893aeSArmin Le Grand }; 6558e893aeSArmin Le Grand }; 6658e893aeSArmin Le Grand }; 6758e893aeSArmin Le Grand String STR_QH_TB_WIDTH 6858e893aeSArmin Le Grand { 6958e893aeSArmin Le Grand Text [ en-US ] = "Select the width of the line."; 7058e893aeSArmin Le Grand }; 7158e893aeSArmin Le Grand 7258e893aeSArmin Le Grand FixedText FT_COLOR 7358e893aeSArmin Le Grand { 7458e893aeSArmin Le Grand Pos = MAP_APPFONT ( SECTIONPAGE_MARGIN_HORIZONTAL + TOOLBOX_WIDTH + 3, SECTIONPAGE_MARGIN_VERTICAL_TOP ) ; 7558e893aeSArmin Le Grand Size = MAP_APPFONT (TOOLBOX_WIDTH , TEXT_HEIGHT ) ; 7658e893aeSArmin Le Grand Text [ en-US ] = "~Color:" ; 7758e893aeSArmin Le Grand }; 7858e893aeSArmin Le Grand ToolBox TB_COLOR 7958e893aeSArmin Le Grand { 8058e893aeSArmin Le Grand SVLook = TRUE ; 8158e893aeSArmin Le Grand Pos = MAP_APPFONT (SECTIONPAGE_MARGIN_HORIZONTAL + TOOLBOX_WIDTH + 4, SECTIONPAGE_MARGIN_VERTICAL_TOP + TEXT_HEIGHT + TEXT_CONTROL_SPACING_VERTICAL) ; 8258e893aeSArmin Le Grand Size = MAP_APPFONT (TOOLBOX_WIDTH ,TOOLBOX_HEIGHT ) ; 8358e893aeSArmin Le Grand TabStop = TRUE ; 8458e893aeSArmin Le Grand HelpID = HID_PPROPERTYPANEL_LINE_TBX_COLOR; 8558e893aeSArmin Le Grand Text = "Color"; 8658e893aeSArmin Le Grand ItemList = 8758e893aeSArmin Le Grand { 8858e893aeSArmin Le Grand ToolBoxItem 8958e893aeSArmin Le Grand { 9058e893aeSArmin Le Grand Identifier = TBI_COLOR ; 9158e893aeSArmin Le Grand DropDown = TRUE ; 9258e893aeSArmin Le Grand Text [ en-US ] = "Color" ; 9358e893aeSArmin Le Grand HelpID = HID_PPROPERTYPANEL_LINE_TBI_COLOR; 9458e893aeSArmin Le Grand }; 9558e893aeSArmin Le Grand }; 9658e893aeSArmin Le Grand }; 9758e893aeSArmin Le Grand String STR_QH_TB_COLOR 9858e893aeSArmin Le Grand { 9958e893aeSArmin Le Grand Text [ en-US ] = "Select the color of the line."; 10058e893aeSArmin Le Grand }; 10158e893aeSArmin Le Grand 10258e893aeSArmin Le Grand FixedText FT_STYLE 10358e893aeSArmin Le Grand { 104d5370dc8SArmin Le Grand Pos = MAP_APPFONT ( SECTIONPAGE_MARGIN_HORIZONTAL , SECTIONPAGE_MARGIN_VERTICAL_TOP + TEXT_HEIGHT + TEXT_CONTROL_SPACING_VERTICAL + TOOLBOX_HEIGHT + CONTROL_SPACING_VERTICAL) ; 10558e893aeSArmin Le Grand Size = MAP_APPFONT (TOOLBOX_WIDTH , TEXT_HEIGHT ) ; 10658e893aeSArmin Le Grand Text [ en-US ] = "~Style:" ; 10758e893aeSArmin Le Grand }; 10858e893aeSArmin Le Grand ToolBox TB_STYLE 10958e893aeSArmin Le Grand { 11058e893aeSArmin Le Grand SVLook = TRUE ; 111d5370dc8SArmin Le Grand Pos = MAP_APPFONT (SECTIONPAGE_MARGIN_HORIZONTAL, SECTIONPAGE_MARGIN_VERTICAL_TOP + TEXT_HEIGHT*2 + TEXT_CONTROL_SPACING_VERTICAL*2 + TOOLBOX_HEIGHT + CONTROL_SPACING_VERTICAL) ; 11258e893aeSArmin Le Grand Size = MAP_APPFONT (TOOLBOX_WIDTH ,TOOLBOX_HEIGHT ) ; 11358e893aeSArmin Le Grand TabStop = TRUE ; 11458e893aeSArmin Le Grand HelpID = HID_PPROPERTYPANEL_LINE_TBX_STYLE; 11558e893aeSArmin Le Grand Text = "Style"; 11658e893aeSArmin Le Grand ItemList = 11758e893aeSArmin Le Grand { 11858e893aeSArmin Le Grand ToolBoxItem 11958e893aeSArmin Le Grand { 12058e893aeSArmin Le Grand Identifier = TBI_STYLE ; 12158e893aeSArmin Le Grand DropDown = TRUE ; 12258e893aeSArmin Le Grand Text [ en-US ] = "Style" ; 12358e893aeSArmin Le Grand HelpID = HID_PPROPERTYPANEL_LINE_TBI_STYLE; 12458e893aeSArmin Le Grand }; 12558e893aeSArmin Le Grand }; 12658e893aeSArmin Le Grand }; 12758e893aeSArmin Le Grand String STR_QH_TB_STYLE 12858e893aeSArmin Le Grand { 12958e893aeSArmin Le Grand Text [ en-US ] = "Select the style of the line."; 13058e893aeSArmin Le Grand }; 13158e893aeSArmin Le Grand 13258e893aeSArmin Le Grand FixedText FT_TRANSPARENT 13358e893aeSArmin Le Grand { 134d5370dc8SArmin Le Grand Pos = MAP_APPFONT ( SECTIONPAGE_MARGIN_HORIZONTAL + TOOLBOX_WIDTH + 3 , SECTIONPAGE_MARGIN_VERTICAL_TOP + TEXT_HEIGHT + TEXT_CONTROL_SPACING_VERTICAL + TOOLBOX_HEIGHT + CONTROL_SPACING_VERTICAL) ; 13558e893aeSArmin Le Grand Size = MAP_APPFONT (TOOLBOX_WIDTH , TEXT_HEIGHT ) ; 13658e893aeSArmin Le Grand Text [ en-US ] = "~Transparency:" ; 13758e893aeSArmin Le Grand }; 13858e893aeSArmin Le Grand MetricField MF_TRANSPARENT 13958e893aeSArmin Le Grand { 14058e893aeSArmin Le Grand Border = TRUE ; 14158e893aeSArmin Le Grand HelpID = HID_PPROPERTYPANEL_LINE_MTR_TRANCEPARENCE; 142d5370dc8SArmin Le Grand 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) ; 14358e893aeSArmin Le Grand Size = MAP_APPFONT ( TOOLBOX_WIDTH + 1 , 12 ) ; 14458e893aeSArmin Le Grand TabStop = TRUE ; 14558e893aeSArmin Le Grand Repeat = TRUE ; 14658e893aeSArmin Le Grand Spin = TRUE ; 14758e893aeSArmin Le Grand Maximum = 100 ; 14858e893aeSArmin Le Grand StrictFormat = TRUE ; 14958e893aeSArmin Le Grand Unit = FUNIT_CUSTOM ; 15058e893aeSArmin Le Grand CustomUnitText = "%" ; 15158e893aeSArmin Le Grand Last = 100 ; 15258e893aeSArmin Le Grand SpinSize = 5 ; 15358e893aeSArmin Le Grand QuickHelpText [ en-US ] = "Specify the transparency of the line."; 15458e893aeSArmin Le Grand }; 15558e893aeSArmin Le Grand 15658e893aeSArmin Le Grand FixedText FT_ARROW 15758e893aeSArmin Le Grand { 158d5370dc8SArmin Le Grand 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) ; 15958e893aeSArmin Le Grand Size = MAP_APPFONT (TOOLBOX_WIDTH * 2 + 3 , TEXT_HEIGHT ) ; 16058e893aeSArmin Le Grand Text [ en-US ] = "~Arrow:" ; 16158e893aeSArmin Le Grand }; 16258e893aeSArmin Le Grand ListBox LB_START 16358e893aeSArmin Le Grand { 16458e893aeSArmin Le Grand Border = TRUE ; 16558e893aeSArmin Le Grand HelpID = HID_PPROPERTYPANEL_LINE_LB_START; 166d5370dc8SArmin Le Grand 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 ) ; 16758e893aeSArmin Le Grand Size = MAP_APPFONT ( TOOLBOX_WIDTH , 99 ) ; 16858e893aeSArmin Le Grand TabStop = TRUE ; 16958e893aeSArmin Le Grand DropDown = TRUE ; 17058e893aeSArmin Le Grand DDExtraWidth = TRUE ; 17158e893aeSArmin Le Grand QuickHelpText [ en-US ] = "Select the style of the beginning arrowhead."; 17258e893aeSArmin Le Grand }; 17358e893aeSArmin Le Grand ListBox LB_END 17458e893aeSArmin Le Grand { 17558e893aeSArmin Le Grand Border = TRUE ; 17658e893aeSArmin Le Grand HelpID = HID_PPROPERTYPANEL_LINE_LB_END; 177d5370dc8SArmin Le Grand 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 ) ; 17858e893aeSArmin Le Grand Size = MAP_APPFONT ( TOOLBOX_WIDTH + 1, 100 ) ; 17958e893aeSArmin Le Grand TabStop = TRUE ; 18058e893aeSArmin Le Grand DropDown = TRUE ; 18158e893aeSArmin Le Grand DDExtraWidth = TRUE ; 18258e893aeSArmin Le Grand QuickHelpText [ en-US ] = "Select the style of the ending arrowhead."; 18358e893aeSArmin Le Grand }; 18458e893aeSArmin Le Grand 185d5370dc8SArmin Le Grand FixedText FT_EDGESTYLE 186d5370dc8SArmin Le Grand { 187d5370dc8SArmin Le Grand Pos = MAP_APPFONT ( 188d5370dc8SArmin Le Grand SECTIONPAGE_MARGIN_HORIZONTAL, 189d5370dc8SArmin Le Grand SECTIONPAGE_MARGIN_VERTICAL_TOP + TEXT_HEIGHT*3 + TEXT_CONTROL_SPACING_VERTICAL*3 + TOOLBOX_HEIGHT*3 + CONTROL_SPACING_VERTICAL*3) ; 190d5370dc8SArmin Le Grand Size = MAP_APPFONT (TOOLBOX_WIDTH * 2 + 3 , TEXT_HEIGHT ) ; 191d5370dc8SArmin Le Grand Text [ en-US ] = "~Corner style" ; 192d5370dc8SArmin Le Grand }; 193d5370dc8SArmin Le Grand ListBox LB_EDGESTYLE 194d5370dc8SArmin Le Grand { 195d5370dc8SArmin Le Grand HelpID = HID_PPROPERTYPANEL_LINE_LB_EDGESTYLE; 196d5370dc8SArmin Le Grand Border = TRUE ; 197d5370dc8SArmin Le Grand Pos = MAP_APPFONT ( 198d5370dc8SArmin Le Grand SECTIONPAGE_MARGIN_HORIZONTAL , 199d5370dc8SArmin Le Grand SECTIONPAGE_MARGIN_VERTICAL_TOP + TEXT_HEIGHT*4 + TEXT_CONTROL_SPACING_VERTICAL*4 + TOOLBOX_HEIGHT*3 + CONTROL_SPACING_VERTICAL*3 ) ; 200d5370dc8SArmin Le Grand Size = MAP_APPFONT ( TOOLBOX_WIDTH , 99 ) ; 201d5370dc8SArmin Le Grand TabStop = TRUE ; 202d5370dc8SArmin Le Grand DropDown = TRUE ; 203d5370dc8SArmin Le Grand DDExtraWidth = TRUE ; 204d5370dc8SArmin Le Grand QuickHelpText [ en-US ] = "Select the style of the edge connections."; 205d5370dc8SArmin Le Grand StringList [ en-US ] = 206d5370dc8SArmin Le Grand { 207d5370dc8SArmin Le Grand < "Rounded" ; Default ; > ; 208d5370dc8SArmin Le Grand < "- none -" ; > ; 209d5370dc8SArmin Le Grand < "Mitered" ; > ; 210d5370dc8SArmin Le Grand < "Beveled" ; > ; 211d5370dc8SArmin Le Grand }; 212d5370dc8SArmin Le Grand }; 213d5370dc8SArmin Le Grand FixedText FT_CAPSTYLE 214d5370dc8SArmin Le Grand { 215d5370dc8SArmin Le Grand Pos = MAP_APPFONT ( 216d5370dc8SArmin Le Grand SECTIONPAGE_MARGIN_HORIZONTAL + TOOLBOX_WIDTH + 3, 217d5370dc8SArmin Le Grand SECTIONPAGE_MARGIN_VERTICAL_TOP + TEXT_HEIGHT*3 + TEXT_CONTROL_SPACING_VERTICAL*3 + TOOLBOX_HEIGHT*3 + CONTROL_SPACING_VERTICAL*3) ; 218d5370dc8SArmin Le Grand Size = MAP_APPFONT (TOOLBOX_WIDTH * 2 + 3 , TEXT_HEIGHT ) ; 219d5370dc8SArmin Le Grand Text [ en-US ] = "Ca~p style" ; 220d5370dc8SArmin Le Grand }; 221d5370dc8SArmin Le Grand ListBox LB_CAPSTYLE 222d5370dc8SArmin Le Grand { 223d5370dc8SArmin Le Grand HelpID = HID_PPROPERTYPANEL_LINE_LB_CAPSTYLE; 224d5370dc8SArmin Le Grand Border = TRUE ; 225d5370dc8SArmin Le Grand Pos = MAP_APPFONT ( 226d5370dc8SArmin Le Grand SECTIONPAGE_MARGIN_HORIZONTAL + TOOLBOX_WIDTH + 3, 227d5370dc8SArmin Le Grand SECTIONPAGE_MARGIN_VERTICAL_TOP + TEXT_HEIGHT*4 + TEXT_CONTROL_SPACING_VERTICAL*4 + TOOLBOX_HEIGHT*3 + CONTROL_SPACING_VERTICAL*3 ) ; 228d5370dc8SArmin Le Grand Size = MAP_APPFONT ( TOOLBOX_WIDTH , 99 ) ; 229d5370dc8SArmin Le Grand TabStop = TRUE ; 230d5370dc8SArmin Le Grand DropDown = TRUE ; 231d5370dc8SArmin Le Grand DDExtraWidth = TRUE ; 232d5370dc8SArmin Le Grand QuickHelpText [ en-US ] = "Select the style of the line caps."; 233d5370dc8SArmin Le Grand StringList [ en-US ] = 234d5370dc8SArmin Le Grand { 235d5370dc8SArmin Le Grand < "Flat" ; Default ; > ; // Same string as in Excel 236d5370dc8SArmin Le Grand < "Round" ; > ; 237d5370dc8SArmin Le Grand < "Square" ; > ; 238d5370dc8SArmin Le Grand }; 239d5370dc8SArmin Le Grand }; 240d5370dc8SArmin Le Grand 24158e893aeSArmin Le Grand Image IMG_COLOR 24258e893aeSArmin Le Grand { 24358e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/Line_color.png";}; 24458e893aeSArmin Le Grand }; 24558e893aeSArmin Le Grand Image IMG_COLOR_NO 24658e893aeSArmin Le Grand { 24758e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/no color.png";}; 24858e893aeSArmin Le Grand }; 24958e893aeSArmin Le Grand 25058e893aeSArmin Le Grand Image IMG_LINE1_ICON 25158e893aeSArmin Le Grand { 25258e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/style_line1_s.png";}; 25358e893aeSArmin Le Grand }; 25458e893aeSArmin Le Grand Image IMG_LINE2_ICON 25558e893aeSArmin Le Grand { 25658e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/style_line2_s.png";}; 25758e893aeSArmin Le Grand }; 25858e893aeSArmin Le Grand Image IMG_LINE3_ICON 25958e893aeSArmin Le Grand { 26058e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/style_line3_s.png";}; 26158e893aeSArmin Le Grand }; 26258e893aeSArmin Le Grand Image IMG_LINE4_ICON 26358e893aeSArmin Le Grand { 26458e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/style_line4_s.png";}; 26558e893aeSArmin Le Grand }; 26658e893aeSArmin Le Grand Image IMG_LINE5_ICON 26758e893aeSArmin Le Grand { 26858e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/style_line5_s.png";}; 26958e893aeSArmin Le Grand }; 27058e893aeSArmin Le Grand Image IMG_LINE6_ICON 27158e893aeSArmin Le Grand { 27258e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/style_line6_s.png";}; 27358e893aeSArmin Le Grand }; 27458e893aeSArmin Le Grand Image IMG_LINE7_ICON 27558e893aeSArmin Le Grand { 27658e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/style_line7_s.png";}; 27758e893aeSArmin Le Grand }; 27858e893aeSArmin Le Grand Image IMG_LINE8_ICON 27958e893aeSArmin Le Grand { 28058e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/style_line8_s.png";}; 28158e893aeSArmin Le Grand }; 28258e893aeSArmin Le Grand Image IMG_LINE9_ICON 28358e893aeSArmin Le Grand { 28458e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/style_line9_s.png";}; 28558e893aeSArmin Le Grand }; 28658e893aeSArmin Le Grand Image IMG_LINE10_ICON 28758e893aeSArmin Le Grand { 28858e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/style_line10_s.png";}; 28958e893aeSArmin Le Grand }; 29058e893aeSArmin Le Grand Image IMG_LINE11_ICON 29158e893aeSArmin Le Grand { 29258e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/style_line11_s.png";}; 29358e893aeSArmin Le Grand }; 29458e893aeSArmin Le Grand Image IMG_NONE_ICON 29558e893aeSArmin Le Grand { 29658e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/blank.png";}; 29758e893aeSArmin Le Grand }; 29858e893aeSArmin Le Grand 29958e893aeSArmin Le Grand //high contrast for line style icon 30058e893aeSArmin Le Grand Image IMG_LINE1_ICON_H 30158e893aeSArmin Le Grand { 30258e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/style_line1_s_h.png";}; 30358e893aeSArmin Le Grand }; 30458e893aeSArmin Le Grand Image IMG_LINE2_ICON_H 30558e893aeSArmin Le Grand { 30658e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/style_line2_s_h.png";}; 30758e893aeSArmin Le Grand }; 30858e893aeSArmin Le Grand Image IMG_LINE3_ICON_H 30958e893aeSArmin Le Grand { 31058e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/style_line3_s_h.png";}; 31158e893aeSArmin Le Grand }; 31258e893aeSArmin Le Grand Image IMG_LINE4_ICON_H 31358e893aeSArmin Le Grand { 31458e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/style_line4_s_h.png";}; 31558e893aeSArmin Le Grand }; 31658e893aeSArmin Le Grand Image IMG_LINE5_ICON_H 31758e893aeSArmin Le Grand { 31858e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/style_line5_s_h.png";}; 31958e893aeSArmin Le Grand }; 32058e893aeSArmin Le Grand Image IMG_LINE6_ICON_H 32158e893aeSArmin Le Grand { 32258e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/style_line6_s_h.png";}; 32358e893aeSArmin Le Grand }; 32458e893aeSArmin Le Grand Image IMG_LINE7_ICON_H 32558e893aeSArmin Le Grand { 32658e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/style_line7_s_h.png";}; 32758e893aeSArmin Le Grand }; 32858e893aeSArmin Le Grand Image IMG_LINE8_ICON_H 32958e893aeSArmin Le Grand { 33058e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/style_line8_s_h.png";}; 33158e893aeSArmin Le Grand }; 33258e893aeSArmin Le Grand Image IMG_LINE9_ICON_H 33358e893aeSArmin Le Grand { 33458e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/style_line9_s_h.png";}; 33558e893aeSArmin Le Grand }; 33658e893aeSArmin Le Grand Image IMG_LINE10_ICON_H 33758e893aeSArmin Le Grand { 33858e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/style_line10_s_h.png";}; 33958e893aeSArmin Le Grand }; 34058e893aeSArmin Le Grand Image IMG_LINE11_ICON_H 34158e893aeSArmin Le Grand { 34258e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/style_line11_s_h.png";}; 34358e893aeSArmin Le Grand }; 34458e893aeSArmin Le Grand 34558e893aeSArmin Le Grand //WIDTH ICON 34658e893aeSArmin Le Grand Image IMG_WIDTH1_ICON 34758e893aeSArmin Le Grand { 34858e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/width1.png";}; 34958e893aeSArmin Le Grand }; 35058e893aeSArmin Le Grand Image IMG_WIDTH2_ICON 35158e893aeSArmin Le Grand { 35258e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/width2.png";}; 35358e893aeSArmin Le Grand }; 35458e893aeSArmin Le Grand Image IMG_WIDTH3_ICON 35558e893aeSArmin Le Grand { 35658e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/width3.png";}; 35758e893aeSArmin Le Grand }; 35858e893aeSArmin Le Grand Image IMG_WIDTH4_ICON 35958e893aeSArmin Le Grand { 36058e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/width4.png";}; 36158e893aeSArmin Le Grand }; 36258e893aeSArmin Le Grand Image IMG_WIDTH5_ICON 36358e893aeSArmin Le Grand { 36458e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/width5.png";}; 36558e893aeSArmin Le Grand }; 36658e893aeSArmin Le Grand Image IMG_WIDTH6_ICON 36758e893aeSArmin Le Grand { 36858e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/width6.png";}; 36958e893aeSArmin Le Grand }; 37058e893aeSArmin Le Grand Image IMG_WIDTH7_ICON 37158e893aeSArmin Le Grand { 37258e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/width7.png";}; 37358e893aeSArmin Le Grand }; 37458e893aeSArmin Le Grand Image IMG_WIDTH8_ICON 37558e893aeSArmin Le Grand { 37658e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/width8.png";}; 37758e893aeSArmin Le Grand }; 37858e893aeSArmin Le Grand 37958e893aeSArmin Le Grand //high contrast for line width 38058e893aeSArmin Le Grand //WIDTH ICON 38158e893aeSArmin Le Grand Image IMG_WIDTH1_ICON_H 38258e893aeSArmin Le Grand { 38358e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/width1_h.png";}; 38458e893aeSArmin Le Grand }; 38558e893aeSArmin Le Grand Image IMG_WIDTH2_ICON_H 38658e893aeSArmin Le Grand { 38758e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/width2_h.png";}; 38858e893aeSArmin Le Grand }; 38958e893aeSArmin Le Grand Image IMG_WIDTH3_ICON_H 39058e893aeSArmin Le Grand { 39158e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/width3_h.png";}; 39258e893aeSArmin Le Grand }; 39358e893aeSArmin Le Grand Image IMG_WIDTH4_ICON_H 39458e893aeSArmin Le Grand { 39558e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/width4_h.png";}; 39658e893aeSArmin Le Grand }; 39758e893aeSArmin Le Grand Image IMG_WIDTH5_ICON_H 39858e893aeSArmin Le Grand { 39958e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/width5_h.png";}; 40058e893aeSArmin Le Grand }; 40158e893aeSArmin Le Grand Image IMG_WIDTH6_ICON_H 40258e893aeSArmin Le Grand { 40358e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/width6_h.png";}; 40458e893aeSArmin Le Grand }; 40558e893aeSArmin Le Grand Image IMG_WIDTH7_ICON_H 40658e893aeSArmin Le Grand { 40758e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/width7_h.png";}; 40858e893aeSArmin Le Grand }; 40958e893aeSArmin Le Grand Image IMG_WIDTH8_ICON_H 41058e893aeSArmin Le Grand { 41158e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/width8_h.png";}; 41258e893aeSArmin Le Grand }; 41358e893aeSArmin Le Grand}; 41458e893aeSArmin Le GrandControl RID_POPUPPANEL_LINEPAGE_COLOR 41558e893aeSArmin Le Grand{ 41658e893aeSArmin Le Grand OutputSize = TRUE; 41758e893aeSArmin Le Grand DialogControl = TRUE; 41858e893aeSArmin Le Grand Border = FALSE; 41958e893aeSArmin Le Grand Size = MAP_APPFONT( POPUP_COLOR_PICKER_WIDTH , POPUP_COLOR_PICKER_HEIGHT ); 42058e893aeSArmin Le Grand 42158e893aeSArmin Le Grand Control VS_COLOR 42258e893aeSArmin Le Grand { 42358e893aeSArmin Le Grand HelpId = HID_PPROPERTYPANEL_LINE_VS_COLOR ; 42458e893aeSArmin Le Grand Hide = TRUE ; 42558e893aeSArmin Le Grand Pos = MAP_APPFONT ( OFFSET_X , OFFSET_Y ); 42658e893aeSArmin Le Grand Size = MAP_APPFONT ( POPUP_COLOR_PICKER_WIDTH - OFFSET_X * 2, POPUP_COLOR_PICKER_HEIGHT - OFFSET_Y * 2); 42758e893aeSArmin Le Grand TabStop = TRUE ; 42858e893aeSArmin Le Grand Text = "Color"; 42958e893aeSArmin Le Grand }; 43058e893aeSArmin Le Grand String STR_AUTOMATICE 43158e893aeSArmin Le Grand { 43258e893aeSArmin Le Grand Text [ en-US ] = "No Color"; 43358e893aeSArmin Le Grand }; 43458e893aeSArmin Le Grand}; 43558e893aeSArmin Le GrandControl RID_POPUPPANEL_LINEPAGE_STYLE 43658e893aeSArmin Le Grand{ 43758e893aeSArmin Le Grand OutputSize = TRUE; 43858e893aeSArmin Le Grand DialogControl = TRUE; 43958e893aeSArmin Le Grand Border = FALSE; 44058e893aeSArmin Le Grand 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); 44458e893aeSArmin Le Grand 44558e893aeSArmin Le Grand Control VS_STYLE 44658e893aeSArmin Le Grand { 44758e893aeSArmin Le Grand HelpId = HID_PPROPERTYPANEL_LINE_VS_STYLE ; 44858e893aeSArmin Le Grand Hide = TRUE ; 44958e893aeSArmin Le Grand Pos = MAP_APPFONT( POPUPPANEL_MARGIN_SMALL + OFFSET_X , POPUPPANEL_MARGIN_SMALL + OFFSET_Y ); 45058e893aeSArmin Le Grand Size = MAP_APPFONT ( 93 , 13 * 12); 45158e893aeSArmin Le Grand TabStop = TRUE ; 45258e893aeSArmin Le Grand Text = "Style"; 45358e893aeSArmin Le Grand }; 45458e893aeSArmin Le Grand 45558e893aeSArmin Le Grand PushButton PB_OPTIONS 45658e893aeSArmin Le Grand { 45758e893aeSArmin Le Grand HelpId = HID_PPROPERTYPANEL_LINE_BTN_STYLE; 45858e893aeSArmin Le Grand Pos = MAP_APPFONT ( POPUPPANEL_MARGIN_LARGE + OFFSET_X , POPUPPANEL_MARGIN_SMALL * 2 + OFFSET_Y ); 45958e893aeSArmin Le Grand Size = MAP_APPFONT ( 93 , 13 ); 46058e893aeSArmin Le Grand TabStop = TRUE; 46158e893aeSArmin Le Grand Text [ en-US ] = "~More Options..."; 46258e893aeSArmin Le Grand }; 46358e893aeSArmin Le Grand 46458e893aeSArmin Le Grand String STR_STYLE_NONE 46558e893aeSArmin Le Grand { 46658e893aeSArmin Le Grand Text [ en-US ] = "None"; 46758e893aeSArmin Le Grand }; 46858e893aeSArmin Le Grand String STR_STYLE_LINE1 46958e893aeSArmin Le Grand { 47058e893aeSArmin Le Grand Text [ en-US ] = "Continuous"; 47158e893aeSArmin Le Grand }; 47258e893aeSArmin Le Grand String STR_STYLE_LINE2 47358e893aeSArmin Le Grand { 47458e893aeSArmin Le Grand Text [ en-US ] = "Ultrafine dashed"; 47558e893aeSArmin Le Grand }; 47658e893aeSArmin Le Grand String STR_STYLE_LINE3 47758e893aeSArmin Le Grand { 47858e893aeSArmin Le Grand Text [ en-US ] = "Dashed (variable)"; 47958e893aeSArmin Le Grand }; 48058e893aeSArmin Le Grand String STR_STYLE_LINE4 48158e893aeSArmin Le Grand { 48258e893aeSArmin Le Grand Text [ en-US ] = "Fine dashed (variable)"; 48358e893aeSArmin Le Grand }; 48458e893aeSArmin Le Grand String STR_STYLE_LINE5 48558e893aeSArmin Le Grand { 48658e893aeSArmin Le Grand Text [ en-US ] = "Fine dashed"; 48758e893aeSArmin Le Grand }; 48858e893aeSArmin Le Grand String STR_STYLE_LINE6 48958e893aeSArmin Le Grand { 49058e893aeSArmin Le Grand Text [ en-US ] = "Fine dotted"; 49158e893aeSArmin Le Grand }; 49258e893aeSArmin Le Grand String STR_STYLE_LINE7 49358e893aeSArmin Le Grand { 49458e893aeSArmin Le Grand Text [ en-US ] = "Ultrafine dotted (variable)"; 49558e893aeSArmin Le Grand }; 49658e893aeSArmin Le Grand String STR_STYLE_LINE8 49758e893aeSArmin Le Grand { 49858e893aeSArmin Le Grand Text [ en-US ] = "3 dashes 3 dots (variable)"; 49958e893aeSArmin Le Grand }; 50058e893aeSArmin Le Grand String STR_STYLE_LINE9 50158e893aeSArmin Le Grand { 50258e893aeSArmin Le Grand Text [ en-US ] = "2 dots 1 dash"; 50358e893aeSArmin Le Grand }; 50458e893aeSArmin Le Grand String STR_STYLE_LINE10 50558e893aeSArmin Le Grand { 50658e893aeSArmin Le Grand Text [ en-US ] = "Ultrafine 2 dots 3 dashes"; 50758e893aeSArmin Le Grand }; 50858e893aeSArmin Le Grand String STR_STYLE_LINE11 50958e893aeSArmin Le Grand { 51058e893aeSArmin Le Grand Text [ en-US ] = "Line with fine dots"; 51158e893aeSArmin Le Grand }; 51258e893aeSArmin Le Grand 51358e893aeSArmin Le Grand Image IMG_LINE1 51458e893aeSArmin Le Grand { 51558e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/style_line1.png";}; 51658e893aeSArmin Le Grand }; 51758e893aeSArmin Le Grand Image IMG_LINE1_S 51858e893aeSArmin Le Grand { 51958e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/style_line1_h.png";}; 52058e893aeSArmin Le Grand }; 52158e893aeSArmin Le Grand Image IMG_LINE2 52258e893aeSArmin Le Grand { 52358e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/style_line2.png";}; 52458e893aeSArmin Le Grand }; 52558e893aeSArmin Le Grand Image IMG_LINE2_S 52658e893aeSArmin Le Grand { 52758e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/style_line2_h.png";}; 52858e893aeSArmin Le Grand }; 52958e893aeSArmin Le Grand Image IMG_LINE3 53058e893aeSArmin Le Grand { 53158e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/style_line3.png";}; 53258e893aeSArmin Le Grand }; 53358e893aeSArmin Le Grand Image IMG_LINE3_S 53458e893aeSArmin Le Grand { 53558e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/style_line3_h.png";}; 53658e893aeSArmin Le Grand }; 53758e893aeSArmin Le Grand Image IMG_LINE4 53858e893aeSArmin Le Grand { 53958e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/style_line4.png";}; 54058e893aeSArmin Le Grand }; 54158e893aeSArmin Le Grand Image IMG_LINE4_S 54258e893aeSArmin Le Grand { 54358e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/style_line4_h.png";}; 54458e893aeSArmin Le Grand }; 54558e893aeSArmin Le Grand Image IMG_LINE5 54658e893aeSArmin Le Grand { 54758e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/style_line5.png";}; 54858e893aeSArmin Le Grand }; 54958e893aeSArmin Le Grand Image IMG_LINE5_S 55058e893aeSArmin Le Grand { 55158e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/style_line5_h.png";}; 55258e893aeSArmin Le Grand }; 55358e893aeSArmin Le Grand Image IMG_LINE6 55458e893aeSArmin Le Grand { 55558e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/style_line6.png";}; 55658e893aeSArmin Le Grand }; 55758e893aeSArmin Le Grand Image IMG_LINE6_S 55858e893aeSArmin Le Grand { 55958e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/style_line6_h.png";}; 56058e893aeSArmin Le Grand }; 56158e893aeSArmin Le Grand Image IMG_LINE7 56258e893aeSArmin Le Grand { 56358e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/style_line7.png";}; 56458e893aeSArmin Le Grand }; 56558e893aeSArmin Le Grand Image IMG_LINE7_S 56658e893aeSArmin Le Grand { 56758e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/style_line7_h.png";}; 56858e893aeSArmin Le Grand }; 56958e893aeSArmin Le Grand Image IMG_LINE8 57058e893aeSArmin Le Grand { 57158e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/style_line8.png";}; 57258e893aeSArmin Le Grand }; 57358e893aeSArmin Le Grand Image IMG_LINE8_S 57458e893aeSArmin Le Grand { 57558e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/style_line8_h.png";}; 57658e893aeSArmin Le Grand }; 57758e893aeSArmin Le Grand Image IMG_LINE9 57858e893aeSArmin Le Grand { 57958e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/style_line9.png";}; 58058e893aeSArmin Le Grand }; 58158e893aeSArmin Le Grand Image IMG_LINE9_S 58258e893aeSArmin Le Grand { 58358e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/style_line9_h.png";}; 58458e893aeSArmin Le Grand }; 58558e893aeSArmin Le Grand Image IMG_LINE10 58658e893aeSArmin Le Grand { 58758e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/style_line10.png";}; 58858e893aeSArmin Le Grand }; 58958e893aeSArmin Le Grand Image IMG_LINE10_S 59058e893aeSArmin Le Grand { 59158e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/style_line10_h.png";}; 59258e893aeSArmin Le Grand }; 59358e893aeSArmin Le Grand Image IMG_LINE11 59458e893aeSArmin Le Grand { 59558e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/style_line11.png";}; 59658e893aeSArmin Le Grand }; 59758e893aeSArmin Le Grand Image IMG_LINE11_S 59858e893aeSArmin Le Grand { 59958e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/style_line11_h.png";}; 60058e893aeSArmin Le Grand }; 60158e893aeSArmin Le Grand 60258e893aeSArmin Le Grand //high contrast 60358e893aeSArmin Le Grand Image IMG_LINE1_H 60458e893aeSArmin Le Grand { 60558e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/style_line1_hh.png";}; 60658e893aeSArmin Le Grand }; 60758e893aeSArmin Le Grand Image IMG_LINE2_H 60858e893aeSArmin Le Grand { 60958e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/style_line2_hh.png";}; 61058e893aeSArmin Le Grand }; 61158e893aeSArmin Le Grand Image IMG_LINE3_H 61258e893aeSArmin Le Grand { 61358e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/style_line3_hh.png";}; 61458e893aeSArmin Le Grand }; 61558e893aeSArmin Le Grand Image IMG_LINE4_H 61658e893aeSArmin Le Grand { 61758e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/style_line4_hh.png";}; 61858e893aeSArmin Le Grand }; 61958e893aeSArmin Le Grand Image IMG_LINE5_H 62058e893aeSArmin Le Grand { 62158e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/style_line5_hh.png";}; 62258e893aeSArmin Le Grand }; 62358e893aeSArmin Le Grand Image IMG_LINE6_H 62458e893aeSArmin Le Grand { 62558e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/style_line6_hh.png";}; 62658e893aeSArmin Le Grand }; 62758e893aeSArmin Le Grand Image IMG_LINE7_H 62858e893aeSArmin Le Grand { 62958e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/style_line7_hh.png";}; 63058e893aeSArmin Le Grand }; 63158e893aeSArmin Le Grand Image IMG_LINE8_H 63258e893aeSArmin Le Grand { 63358e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/style_line8_hh.png";}; 63458e893aeSArmin Le Grand }; 63558e893aeSArmin Le Grand Image IMG_LINE9_H 63658e893aeSArmin Le Grand { 63758e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/style_line9_hh.png";}; 63858e893aeSArmin Le Grand }; 63958e893aeSArmin Le Grand Image IMG_LINE10_H 64058e893aeSArmin Le Grand { 64158e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/style_line10_hh.png";}; 64258e893aeSArmin Le Grand }; 64358e893aeSArmin Le Grand Image IMG_LINE11_H 64458e893aeSArmin Le Grand { 64558e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/style_line11_hh.png";}; 64658e893aeSArmin Le Grand }; 64758e893aeSArmin Le Grand}; 64858e893aeSArmin Le GrandControl RID_POPUPPANEL_LINEPAGE_WIDTH 64958e893aeSArmin Le Grand{ 65058e893aeSArmin Le Grand OutputSize = TRUE; 65158e893aeSArmin Le Grand DialogControl = TRUE; 65258e893aeSArmin Le Grand Border = FALSE; 65358e893aeSArmin Le Grand 65458e893aeSArmin Le Grand 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)); 65558e893aeSArmin Le Grand 65658e893aeSArmin Le Grand Control VS_WIDTH 65758e893aeSArmin Le Grand { 65858e893aeSArmin Le Grand HelpId = HID_PPROPERTYPANEL_LINE_VS_WIDTH ; 65958e893aeSArmin Le Grand Hide = TRUE ; 66058e893aeSArmin Le Grand Pos = MAP_APPFONT( POPUPPANEL_MARGIN_SMALL + OFFSET_X , POPUPPANEL_MARGIN_SMALL + OFFSET_Y ); 66158e893aeSArmin Le Grand Size = MAP_APPFONT ( 80 , 12 * 9); 66258e893aeSArmin Le Grand TabStop = TRUE ; 66358e893aeSArmin Le Grand Text = "Width"; 66458e893aeSArmin Le Grand }; 66558e893aeSArmin Le Grand FixedText FT_CUSTOME 66658e893aeSArmin Le Grand { 66758e893aeSArmin Le Grand Pos = MAP_APPFONT ( POPUPPANEL_MARGIN_LARGE + OFFSET_X, POPUPPANEL_MARGIN_SMALL + OFFSET_Y + 12 * 9 + POPUPPANEL_MARGIN_SMALL ) ; 66858e893aeSArmin Le Grand Size = MAP_APPFONT ( 80 , TEXT_HEIGHT ) ; 66958e893aeSArmin Le Grand Text [ en-US ] = "Custom:" ; 67058e893aeSArmin Le Grand }; 67158e893aeSArmin Le Grand FixedText FT_LINE_WIDTH 67258e893aeSArmin Le Grand { 67358e893aeSArmin Le Grand Pos = MAP_APPFONT ( CUSTOM_X + POPUPPANEL_MARGIN_LARGE, CUSTOM_Y + POPUPPANEL_MARGIN_LARGE) ; 67458e893aeSArmin Le Grand Size = MAP_APPFONT ( 74 - POPUPPANEL_MARGIN_LARGE * 2 , TEXT_HEIGHT ) ; 67558e893aeSArmin Le Grand Text [ en-US ] = "Line ~width:" ; 67658e893aeSArmin Le Grand }; 67758e893aeSArmin Le Grand MetricField MF_WIDTH 67858e893aeSArmin Le Grand { 67958e893aeSArmin Le Grand Border = TRUE ; 68058e893aeSArmin Le Grand HelpID = HID_PPROPERTYPANEL_LINE_MTR_WIDTH ; 68158e893aeSArmin Le Grand Pos = MAP_APPFONT ( CUSTOM_X + POPUPPANEL_MARGIN_LARGE , CUSTOM_Y + POPUPPANEL_MARGIN_LARGE + TEXT_HEIGHT + TEXT_CONTROL_SPACING_VERTICAL) ; 68258e893aeSArmin Le Grand Size = MAP_APPFONT ( 40 , 12 ) ; 68358e893aeSArmin Le Grand TabStop = TRUE ; 68458e893aeSArmin Le Grand Right = TRUE ; 68558e893aeSArmin Le Grand Repeat = TRUE ; 68658e893aeSArmin Le Grand Spin = TRUE ; 68758e893aeSArmin Le Grand Maximum = 5000 ; 68858e893aeSArmin Le Grand StrictFormat = TRUE ; 68958e893aeSArmin Le Grand DecimalDigits = 2 ; 69058e893aeSArmin Le Grand Value = 1 ; 69158e893aeSArmin Le Grand Unit = FUNIT_MM ; 69258e893aeSArmin Le Grand Last = 5000 ; 69358e893aeSArmin Le Grand SpinSize = 10 ; 69458e893aeSArmin Le Grand QuickHelpText [ en-US ] = "Specify the width of the line."; 69558e893aeSArmin Le Grand }; 69658e893aeSArmin Le Grand 69758e893aeSArmin Le Grand Image IMG_WIDTH_CUSTOM 69858e893aeSArmin Le Grand { 69958e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/last_custom_common.png";}; 70058e893aeSArmin Le Grand }; 70158e893aeSArmin Le Grand Image IMG_WIDTH_CUSTOM_GRAY 70258e893aeSArmin Le Grand { 70358e893aeSArmin Le Grand ImageBitmap = Bitmap{File = "symphony/last_custom_common_grey.png";}; 70458e893aeSArmin Le Grand }; 70558e893aeSArmin Le Grand String STR_WIDTH_LAST_CUSTOM 70658e893aeSArmin Le Grand { 70758e893aeSArmin Le Grand Text [ en-US ] = "Last Custom Value"; 70858e893aeSArmin Le Grand }; 70958e893aeSArmin Le Grand String STR_PT 71058e893aeSArmin Le Grand { 71158e893aeSArmin Le Grand Text [ en-US ] = "pt"; 71258e893aeSArmin Le Grand }; 71358e893aeSArmin Le Grand}; 714*4e8031e0SArmin Le Grand 715*4e8031e0SArmin Le Grand// eof 716