1766ce4d0SZheng Fan/************************************************************** 2*71183648SMatthias Seidel * 3766ce4d0SZheng Fan * Licensed to the Apache Software Foundation (ASF) under one 4766ce4d0SZheng Fan * or more contributor license agreements. See the NOTICE file 5766ce4d0SZheng Fan * distributed with this work for additional information 6766ce4d0SZheng Fan * regarding copyright ownership. The ASF licenses this file 7766ce4d0SZheng Fan * to you under the Apache License, Version 2.0 (the 8766ce4d0SZheng Fan * "License"); you may not use this file except in compliance 9766ce4d0SZheng Fan * with the License. You may obtain a copy of the License at 10*71183648SMatthias Seidel * 11766ce4d0SZheng Fan * http://www.apache.org/licenses/LICENSE-2.0 12*71183648SMatthias Seidel * 13766ce4d0SZheng Fan * Unless required by applicable law or agreed to in writing, 14766ce4d0SZheng Fan * software distributed under the License is distributed on an 15766ce4d0SZheng Fan * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16766ce4d0SZheng Fan * KIND, either express or implied. See the License for the 17766ce4d0SZheng Fan * specific language governing permissions and limitations 18766ce4d0SZheng Fan * under the License. 19*71183648SMatthias Seidel * 20766ce4d0SZheng Fan *************************************************************/ 21766ce4d0SZheng Fan 22*71183648SMatthias Seidel 23*71183648SMatthias Seidel 24766ce4d0SZheng Fan#include "ParaPropertyPanel.hrc" 25d29c2fc2SAndre Fischer#include <sfx2/sidebar/ResourceDefinitions.hrc> 26766ce4d0SZheng Fan#include "helpid.hrc" 27766ce4d0SZheng Fan 28*71183648SMatthias Seidel#define MASKCOLOR MaskColor = Color { Red = 0xFFFF ; Green = 0x0000 ; Blue = 0xFFFF ; }; 29766ce4d0SZheng Fan 30*71183648SMatthias Seidel#define SVX_PROPERTYPANEL_PARA_VERT_IDLIST \ 31*71183648SMatthias Seidel IdList = \ 32*71183648SMatthias Seidel { \ 33*71183648SMatthias Seidel IID_VERT_TOP ; \ 34*71183648SMatthias Seidel IID_VERT_CENTER ; \ 35*71183648SMatthias Seidel IID_VERT_BOTTOM ; \ 36*71183648SMatthias Seidel }; \ 37766ce4d0SZheng Fan IdCount = { 3 ; }; 38766ce4d0SZheng Fan 39*71183648SMatthias Seidel#define SVX_PROPERTYPANEL_PARA_NUMBULLET_IDLIST \ 40*71183648SMatthias Seidel IdList = \ 41*71183648SMatthias Seidel { \ 42*71183648SMatthias Seidel IID_BULLET ; \ 43*71183648SMatthias Seidel IID_NUMBER ; \ 44*71183648SMatthias Seidel }; \ 45766ce4d0SZheng Fan IdCount = { 2 ; }; 46766ce4d0SZheng Fan 47*71183648SMatthias Seidel// add by wj for sym2_7380 48*71183648SMatthias Seidel#define SVX_PROPERTYPANEL_PARA_NUMBULLET_IDLIST_RTL \ 49*71183648SMatthias Seidel IdList = \ 50*71183648SMatthias Seidel { \ 51*71183648SMatthias Seidel IID_BULLET ; \ 52*71183648SMatthias Seidel IID_NUMBER ; \ 53*71183648SMatthias Seidel }; \ 54766ce4d0SZheng Fan IdCount = { 2 ; }; 55*71183648SMatthias Seidel 56766ce4d0SZheng FanControl RID_SIDEBAR_PARA_PANEL 57766ce4d0SZheng Fan{ 58*71183648SMatthias Seidel OutputSize = TRUE ; 59*71183648SMatthias Seidel DialogControl = TRUE ; 60*71183648SMatthias Seidel Border = FALSE ; 61*71183648SMatthias Seidel Size = MAP_APPFONT ( PROPERTYPAGE_WIDTH, PARA_SECTIONPAGE_HEIGHT ) ; 62766ce4d0SZheng Fan HelpID = HID_PROPERTYPANEL_PARA_SECTION ; 63*71183648SMatthias Seidel Text = "Paragraph" ; 64766ce4d0SZheng Fan 65766ce4d0SZheng Fan ToolBox TBX_HORIZONTALALIGNMENT 66766ce4d0SZheng Fan { 67*71183648SMatthias Seidel Pos = MAP_APPFONT ( TBX_HORI_ALIGN_X, TBX_HORI_ALIGN_Y ) ; 68*71183648SMatthias Seidel Size = MAP_APPFONT ( ALIGNMENT_TBX_WIDTH*4 ,ALIGNMENT_TBX_HEIGHT) ; 69766ce4d0SZheng Fan SVLook = TRUE ; 70766ce4d0SZheng Fan Border = FALSE ; 71*71183648SMatthias Seidel HelpID = HID_PPROPERTYPANEL_PARA_TBX_HALIGN ; 72*71183648SMatthias Seidel Text = "Horizontal Alignment" ; 73766ce4d0SZheng Fan ItemList = 74766ce4d0SZheng Fan { 75766ce4d0SZheng Fan ToolBoxItem 76766ce4d0SZheng Fan { 77766ce4d0SZheng Fan Identifier = BT_SUBSTLEFT ; 78*71183648SMatthias Seidel HelpID = HID_PPROPERTYPANEL_PARA_TBI_HALIGN_LEFT ; 79766ce4d0SZheng Fan Text [ en-US ] = "Align Left" ; 80766ce4d0SZheng Fan }; 81766ce4d0SZheng Fan ToolBoxItem 82766ce4d0SZheng Fan { 83766ce4d0SZheng Fan Identifier = BT_SUBSTCENTER ; 84*71183648SMatthias Seidel HelpID = HID_PPROPERTYPANEL_PARA_TBI_HALIGN_CENTER ; 85766ce4d0SZheng Fan Text [ en-US ] = "Align Center" ; 86766ce4d0SZheng Fan }; 87766ce4d0SZheng Fan ToolBoxItem 88766ce4d0SZheng Fan { 89766ce4d0SZheng Fan Identifier = BT_SUBSTRIGHT ; 90*71183648SMatthias Seidel HelpID = HID_PPROPERTYPANEL_PARA_TBI_HALIGN_RIGHT ; 91766ce4d0SZheng Fan Text [ en-US ] = "Align Right" ; 92766ce4d0SZheng Fan }; 93766ce4d0SZheng Fan ToolBoxItem 94766ce4d0SZheng Fan { 95766ce4d0SZheng Fan Identifier = BT_SUBSTJUSTIFY ; 96*71183648SMatthias Seidel HelpID = HID_PPROPERTYPANEL_PARA_TBI_HALIGN_JUSTIFY ; 97766ce4d0SZheng Fan Text [ en-US ] = "Align Justified" ; 98766ce4d0SZheng Fan }; 99766ce4d0SZheng Fan }; 100766ce4d0SZheng Fan }; 101766ce4d0SZheng Fan ToolBox TBX_VERT_ALIGN 102766ce4d0SZheng Fan { 103*71183648SMatthias Seidel HelpID = HID_PPROPERTYPANEL_PARA_TBX_VALIGN ; 104766ce4d0SZheng Fan SVLook = TRUE ; 105766ce4d0SZheng Fan Border = FALSE ; 106*71183648SMatthias Seidel Pos = MAP_APPFONT ( TBX_VERT_ALIGN_X, TBX_VERT_ALIGN_Y ) ; 107*71183648SMatthias Seidel Size = MAP_APPFONT ( TOOLBOX_ITEM_WIDTH * 3, TOOLBOX_ITEM_HEIGHT) ; 108766ce4d0SZheng Fan TabStop = TRUE ; 109*71183648SMatthias Seidel Text = "Vertical Alignment" ; 110766ce4d0SZheng Fan ItemList = 111766ce4d0SZheng Fan { 112766ce4d0SZheng Fan ToolBoxItem 113766ce4d0SZheng Fan { 114766ce4d0SZheng Fan Identifier = IID_VERT_TOP ; 115*71183648SMatthias Seidel HelpID = HID_PPROPERTYPANEL_PARA_TBI_VALIGN_TOP ; 116766ce4d0SZheng Fan Text [ en-US ] = "Align Top" ; 117766ce4d0SZheng Fan }; 118*71183648SMatthias Seidel 119766ce4d0SZheng Fan ToolBoxItem 120766ce4d0SZheng Fan { 121766ce4d0SZheng Fan Identifier = IID_VERT_CENTER ; 122*71183648SMatthias Seidel HelpID = HID_PPROPERTYPANEL_PARA_TBI_VALIGN_CENTER ; 123766ce4d0SZheng Fan Text [ en-US ] = "Align Center Vertically" ; 124766ce4d0SZheng Fan }; 125*71183648SMatthias Seidel 126766ce4d0SZheng Fan ToolBoxItem 127766ce4d0SZheng Fan { 128766ce4d0SZheng Fan Identifier = IID_VERT_BOTTOM ; 129*71183648SMatthias Seidel HelpID = HID_PPROPERTYPANEL_PARA_TBI_VALIGN_BOT ; 130766ce4d0SZheng Fan Text [ en-US ] = "Align Bottom" ; 131766ce4d0SZheng Fan }; 132766ce4d0SZheng Fan }; 133766ce4d0SZheng Fan }; 134766ce4d0SZheng Fan 135*71183648SMatthias Seidel ToolBox TBX_NUM_BULLET 136766ce4d0SZheng Fan { 137*71183648SMatthias Seidel HelpID = HID_PPROPERTYPANEL_PARA_TBX_NUM_BULLET ; 138766ce4d0SZheng Fan Border = FALSE ; 139*71183648SMatthias Seidel Pos = MAP_APPFONT ( TBX_NUM_BULLET_X, TBX_NUM_BULLET_Y ) ; 140*71183648SMatthias Seidel Size = MAP_APPFONT ( TOOLBOX_ITEM_DD_WIDTH * 2, TOOLBOX_ITEM_HEIGHT) ; 141766ce4d0SZheng Fan TabStop = TRUE ; 142*71183648SMatthias Seidel Text = "Bullets and Numbering" ; 143766ce4d0SZheng Fan ItemList = 144*71183648SMatthias Seidel { 145766ce4d0SZheng Fan ToolBoxItem 146766ce4d0SZheng Fan { 147766ce4d0SZheng Fan Identifier = IID_BULLET ; 148766ce4d0SZheng Fan HelpID = HID_PPROPERTYPANEL_PARA_TBI_BULLET ; 149766ce4d0SZheng Fan Text [ en-US ] = "Bullets" ; 150766ce4d0SZheng Fan DropDown = TRUE ; 151*71183648SMatthias Seidel }; 152766ce4d0SZheng Fan ToolBoxItem 153766ce4d0SZheng Fan { 154766ce4d0SZheng Fan Identifier = IID_NUMBER ; 155766ce4d0SZheng Fan HelpID = HID_PPROPERTYPANEL_PARA_TBI_NUM ; 156766ce4d0SZheng Fan Text [ en-US ] = "Numbering" ; 157766ce4d0SZheng Fan DropDown = TRUE ; 158766ce4d0SZheng Fan }; 159766ce4d0SZheng Fan }; 160*71183648SMatthias Seidel }; 161766ce4d0SZheng Fan ToolBox TBX_BACK_COLOR 162766ce4d0SZheng Fan { 163766ce4d0SZheng Fan SVLook = TRUE ; 164766ce4d0SZheng Fan Pos = MAP_APPFONT (TBX_BACK_COLOR_X, TBX_BACK_COLOR_Y) ; 165766ce4d0SZheng Fan Size = MAP_APPFONT (TOOLBOX_WIDTH,TOOLBOX_HEIGHT ) ; 166766ce4d0SZheng Fan TabStop = TRUE ; 167*71183648SMatthias Seidel HelpID = HID_PPROPERTYPANEL_PARA_TBX_BACK_COLOR ; 168766ce4d0SZheng Fan Text = "Paragraph Background Color" ; 169766ce4d0SZheng Fan ItemList = 170766ce4d0SZheng Fan { 171766ce4d0SZheng Fan ToolBoxItem 172766ce4d0SZheng Fan { 173766ce4d0SZheng Fan Identifier = TBI_BACK_COLOR ; 174*71183648SMatthias Seidel HelpID = HID_PPROPERTYPANEL_PARA_TBI_BACK_COLOR ; 175766ce4d0SZheng Fan DropDown = TRUE ; 176766ce4d0SZheng Fan Text [ en-US ] = "Paragraph Background Color" ; 177766ce4d0SZheng Fan }; 178766ce4d0SZheng Fan }; 179766ce4d0SZheng Fan }; 180766ce4d0SZheng Fan FixedText FT_SPACING 181766ce4d0SZheng Fan { 182*71183648SMatthias Seidel Pos = MAP_APPFONT ( FT_PARA_SPACE_X, FT_PARA_SPACE_Y ) ; 183*71183648SMatthias Seidel Size = MAP_APPFONT ( FT_PARA_INDENT_X - 7 - FT_PARA_SPACE_X, _FIXED_TEXT_HEIGHT) ; 184*71183648SMatthias Seidel Text [ en-US ] = "~Spacing:" ; 185766ce4d0SZheng Fan }; 186766ce4d0SZheng Fan ToolBox TBX_UL_INC_DEC 187766ce4d0SZheng Fan { 188766ce4d0SZheng Fan Pos = MAP_APPFONT ( TBX_PARA_SPACE_INC_DEC_X,TBX_PARA_SPACE_INC_DEC_Y ); 189*71183648SMatthias Seidel Size = MAP_APPFONT (ALIGNMENT_TBX_WIDTH*2,ALIGNMENT_TBX_HEIGHT) ; 190766ce4d0SZheng Fan SVLook = TRUE ; 191766ce4d0SZheng Fan Border = FALSE ; 192766ce4d0SZheng Fan HelpID = HID_PPROPERTYPANEL_PARA_TBX_INC_DEC ; 193*71183648SMatthias Seidel Text = "Spacing" ; 194766ce4d0SZheng Fan ItemList = 195766ce4d0SZheng Fan { 196766ce4d0SZheng Fan ToolBoxItem 197766ce4d0SZheng Fan { 198766ce4d0SZheng Fan Identifier = BT_TBX_UL_INC ; 199766ce4d0SZheng Fan HelpID = HID_PPROPERTYPANEL_PARA_TBI_INC ; 200766ce4d0SZheng Fan Text [ en-US ] = "Increase Spacing" ; 201e1bac94cSAndre Fischer 202*71183648SMatthias Seidel /** The next line should be 203*71183648SMatthias Seidel Command = ".uno:ParaspaceIncrease" ; 204*71183648SMatthias Seidel The hack is necessary because the ParaspaceIncrease command is only 205*71183648SMatthias Seidel defined for Draw/Impress. It has to be defined in 206*71183648SMatthias Seidel GenericCommancs.xcu to be recognized. See issue 122446 for more details. 207*71183648SMatthias Seidel */ 208*71183648SMatthias Seidel Command = "private:graphicrepository/res/commandimagelist/sc_paraspaceincrease.png" ; 209766ce4d0SZheng Fan }; 210766ce4d0SZheng Fan ToolBoxItem 211766ce4d0SZheng Fan { 212766ce4d0SZheng Fan Identifier = BT_TBX_UL_DEC ; 213766ce4d0SZheng Fan HelpID = HID_PPROPERTYPANEL_PARA_TBI_DEC ; 214766ce4d0SZheng Fan Text [ en-US ] = "Decrease Spacing" ; 215*71183648SMatthias Seidel /** See above or issue 122446 why the following line is not 216*71183648SMatthias Seidel Command = ".uno:ParaspaceDecrease" ; 217*71183648SMatthias Seidel */ 218*71183648SMatthias Seidel Command = "private:graphicrepository/res/commandimagelist/sc_paraspacedecrease.png" ; 219766ce4d0SZheng Fan }; 220766ce4d0SZheng Fan }; 221766ce4d0SZheng Fan }; 222766ce4d0SZheng Fan MetricField MF_ABOVE_PARASPACING 223766ce4d0SZheng Fan { 224766ce4d0SZheng Fan HelpID = HID_POPUP_PS_ED_SBINDE_TOPDIST ; 225*71183648SMatthias Seidel Border = TRUE ; 226*71183648SMatthias Seidel Pos = MAP_APPFONT ( MBX_TOP_DIST_X, MBX_TOP_DIST_Y ) ; 227*71183648SMatthias Seidel Size = MAP_APPFONT ( CONTROL_WIDTH -10 ,MBOX_HEIGHT ) ; 228*71183648SMatthias Seidel QuickHelpText [ en-US ] = "Above Paragraph Spacing" ; 229*71183648SMatthias Seidel TabStop = TRUE ; 230*71183648SMatthias Seidel Repeat = TRUE ; 231*71183648SMatthias Seidel Spin = TRUE ; 232*71183648SMatthias Seidel Maximum = 999 ; 233*71183648SMatthias Seidel Unit = FUNIT_INCH ; 234*71183648SMatthias Seidel Last = 999 ; 235*71183648SMatthias Seidel SpinSize = 1 ; 236766ce4d0SZheng Fan 237766ce4d0SZheng Fan }; 238766ce4d0SZheng Fan MetricField MF_BELOW_PARASPACING 239766ce4d0SZheng Fan { 240*71183648SMatthias Seidel Border = TRUE ; 241*71183648SMatthias Seidel Pos = MAP_APPFONT ( MBX_BOT_DIST_X, MBX_BOT_DIST_Y ) ; 242*71183648SMatthias Seidel Size = MAP_APPFONT ( CONTROL_WIDTH -10,MBOX_HEIGHT ) ; 243*71183648SMatthias Seidel QuickHelpText [ en-US ] = "Below Paragraph Spacing" ; 244*71183648SMatthias Seidel HelpID = HID_POPUP_PS_ED_SBINDE_BOTTOMDIST ; 245*71183648SMatthias Seidel Repeat = TRUE ; 246*71183648SMatthias Seidel Spin = TRUE ; 247*71183648SMatthias Seidel Maximum = 999 ; 248*71183648SMatthias Seidel Unit = FUNIT_INCH ; 249*71183648SMatthias Seidel Last = 999 ; 250*71183648SMatthias Seidel SpinSize = 1 ; 251766ce4d0SZheng Fan }; 252766ce4d0SZheng Fan FixedText FT_INDENT 253766ce4d0SZheng Fan { 254*71183648SMatthias Seidel Pos = MAP_APPFONT ( FT_PARA_INDENT_X, FT_PARA_INDENT_Y ) ; 255*71183648SMatthias Seidel Size = MAP_APPFONT ( _FIXED_TEXT_WIDTH + 50, _FIXED_TEXT_HEIGHT) ; 256*71183648SMatthias Seidel Text [ en-US ] = "~Indent:" ; 257766ce4d0SZheng Fan }; 258766ce4d0SZheng Fan ToolBox TBX_INDENT_INC_DEC 259766ce4d0SZheng Fan { 260*71183648SMatthias Seidel Pos = MAP_APPFONT ( TBX_PARA_INDENT_INC_DEC_X, TBX_PARA_INDENT_INC_DEC_Y ) ; 261*71183648SMatthias Seidel Size = MAP_APPFONT (ALIGNMENT_TBX_WIDTH*2,ALIGNMENT_TBX_HEIGHT) ; 262766ce4d0SZheng Fan SVLook = TRUE ; 263766ce4d0SZheng Fan Border = FALSE ; 264766ce4d0SZheng Fan HelpID = HID_PPROPERTYPANEL_PARA_TBX_INDENT_INC_DEC ; 265*71183648SMatthias Seidel Text = "Indent" ; 266766ce4d0SZheng Fan ItemList = 267766ce4d0SZheng Fan { 268766ce4d0SZheng Fan ToolBoxItem 269766ce4d0SZheng Fan { 270766ce4d0SZheng Fan Identifier = BT_TBX_INDENT_DEC ; 271766ce4d0SZheng Fan HelpID = HID_PPROPERTYPANEL_PARA_TBI_INDENT_DEC ; 272766ce4d0SZheng Fan Text [ en-US ] = "Decrease Indent" ; 273766ce4d0SZheng Fan }; 274766ce4d0SZheng Fan ToolBoxItem 275*71183648SMatthias Seidel { 276*71183648SMatthias Seidel Identifier = BT_TBX_INDENT_INC ; 277*71183648SMatthias Seidel HelpID = HID_PPROPERTYPANEL_PARA_TBI_INDENT_INC ; 278*71183648SMatthias Seidel Text [ en-US ] = "Increase Indent" ; 279*71183648SMatthias Seidel }; 280*71183648SMatthias Seidel ToolBoxItem 281766ce4d0SZheng Fan { 282766ce4d0SZheng Fan Identifier = ID_HANGING_INDENT ; 283766ce4d0SZheng Fan Text [ en-US ] = "Switch to Hanging Indent" ; 284766ce4d0SZheng Fan HelpID = HID_PPROPERTYPANEL_PARA_TBI_INDENT_HANG ; 285766ce4d0SZheng Fan ItemBitmap = Bitmap 286766ce4d0SZheng Fan { 287*71183648SMatthias Seidel File = "symphony/Indent_Hanging.png" ; 288766ce4d0SZheng Fan }; 289766ce4d0SZheng Fan }; 290*71183648SMatthias Seidel }; 291766ce4d0SZheng Fan }; 292766ce4d0SZheng Fan ToolBox TBX_INDENT_PRO_DEMOTE 293766ce4d0SZheng Fan { 294*71183648SMatthias Seidel Pos = MAP_APPFONT ( TBX_PARA_INDENT_INC_DEC_X, TBX_PARA_INDENT_INC_DEC_Y ) ; 295*71183648SMatthias Seidel Size = MAP_APPFONT (ALIGNMENT_TBX_WIDTH*2,ALIGNMENT_TBX_HEIGHT) ; 296766ce4d0SZheng Fan SVLook = TRUE ; 297766ce4d0SZheng Fan Border = FALSE ; 298766ce4d0SZheng Fan HelpID = HID_PPROPERTYPANEL_PARA_TBX_INDENTP_INC_DEC ; 299*71183648SMatthias Seidel Text = "Indent" ; 300766ce4d0SZheng Fan ItemList = 301766ce4d0SZheng Fan { 302766ce4d0SZheng Fan ToolBoxItem 303766ce4d0SZheng Fan { 304766ce4d0SZheng Fan Identifier = BT_TBX_INDENT_PROMOTE ; 305766ce4d0SZheng Fan HelpID = HID_PPROPERTYPANEL_PARA_TBI_INDENTP_INC ; 306766ce4d0SZheng Fan Text [ en-US ] = "Increase Indent" ; 307766ce4d0SZheng Fan }; 308766ce4d0SZheng Fan ToolBoxItem 309766ce4d0SZheng Fan { 310766ce4d0SZheng Fan Identifier = BT_TBX_INDENT_DEMOTE ; 311766ce4d0SZheng Fan HelpID = HID_PPROPERTYPANEL_PARA_TBI_INDENTP_DEC ; 312766ce4d0SZheng Fan Text [ en-US ] = "Decrease Indent" ; 313766ce4d0SZheng Fan }; 314766ce4d0SZheng Fan ToolBoxItem 315766ce4d0SZheng Fan { 316766ce4d0SZheng Fan Identifier = SD_HANGING_INDENT ; 317766ce4d0SZheng Fan Text [ en-US ] = "Switch to Hanging Indent" ; 318*71183648SMatthias Seidel HelpID = HID_PPROPERTYPANEL_PARA_TBI_INDENTP_HANG ; 319766ce4d0SZheng Fan ItemBitmap = Bitmap 320766ce4d0SZheng Fan { 321*71183648SMatthias Seidel File = "symphony/Indent_Hanging.png" ; 322766ce4d0SZheng Fan }; 323766ce4d0SZheng Fan }; 324*71183648SMatthias Seidel }; 325766ce4d0SZheng Fan }; 326766ce4d0SZheng Fan MetricField MF_BEFORE_INDENT 327766ce4d0SZheng Fan { 328766ce4d0SZheng Fan Border = TRUE ; 329*71183648SMatthias Seidel Pos = MAP_APPFONT ( MBX_LEFT_DIST_X, MBX_LEFT_DIST_Y ) ; 330*71183648SMatthias Seidel Size = MAP_APPFONT ( CONTROL_WIDTH - 10,MBOX_HEIGHT ) ; 331*71183648SMatthias Seidel QuickHelpText [ en-US ] = "Before Text Indent" ; 332*71183648SMatthias Seidel HelpID = HID_POPUP_INDENT_ED_INDENT_LEFTINDENT ; 333766ce4d0SZheng Fan Repeat = TRUE ; 334766ce4d0SZheng Fan Spin = TRUE ; 335766ce4d0SZheng Fan Maximum = 9999 ; 336766ce4d0SZheng Fan StrictFormat = TRUE ; 337*71183648SMatthias Seidel Unit = FUNIT_INCH ; 338766ce4d0SZheng Fan Last = 9999 ; 339766ce4d0SZheng Fan SpinSize = 2 ; 340766ce4d0SZheng Fan }; 341*71183648SMatthias Seidel MetricField MF_AFTER_INDENT 342766ce4d0SZheng Fan { 343766ce4d0SZheng Fan Border = TRUE ; 344*71183648SMatthias Seidel Pos = MAP_APPFONT ( MBX_RIGHT_DIST_X, MBX_RIGHT_DIST_Y ) ; 345*71183648SMatthias Seidel Size = MAP_APPFONT ( CONTROL_WIDTH -10 ,MBOX_HEIGHT ) ; 346*71183648SMatthias Seidel QuickHelpText [ en-US ] = "After Text Indent" ; 347*71183648SMatthias Seidel HelpID = HID_POPUP_INDENT_ED_INDENT_RIGHTINDENT ; 348766ce4d0SZheng Fan Repeat = TRUE ; 349766ce4d0SZheng Fan Spin = TRUE ; 350766ce4d0SZheng Fan Maximum = 9999 ; 351766ce4d0SZheng Fan StrictFormat = TRUE ; 352*71183648SMatthias Seidel Unit = FUNIT_INCH ; 353766ce4d0SZheng Fan Last = 9999 ; 354766ce4d0SZheng Fan SpinSize = 2 ; 355766ce4d0SZheng Fan }; 356*71183648SMatthias Seidel MetricField MF_FL_INDENT 357766ce4d0SZheng Fan { 358766ce4d0SZheng Fan Border = TRUE ; 359*71183648SMatthias Seidel Pos = MAP_APPFONT ( MBX_FLINE_DIST_X, MBX_FLINE_DIST_Y ) ; 360*71183648SMatthias Seidel Size = MAP_APPFONT ( CONTROL_WIDTH -10 ,MBOX_HEIGHT ) ; 361*71183648SMatthias Seidel QuickHelpText [ en-US ] = "First Line Indent" ; 362*71183648SMatthias Seidel HelpID = HID_POPUP_INDENT_ED_INDENT_FLINDENT ; 363766ce4d0SZheng Fan Repeat = TRUE ; 364766ce4d0SZheng Fan Spin = TRUE ; 365*71183648SMatthias Seidel Minimum = -9999 ; 366766ce4d0SZheng Fan Maximum = 9999 ; 367*71183648SMatthias Seidel DecimalDigits = 2 ; 368*71183648SMatthias Seidel Unit = FUNIT_INCH ; 369*71183648SMatthias Seidel First = -9999 ; 370766ce4d0SZheng Fan Last = 9999 ; 371766ce4d0SZheng Fan SpinSize = 2 ; 372766ce4d0SZheng Fan }; 373766ce4d0SZheng Fan ToolBox TBX_LINESP 374766ce4d0SZheng Fan { 375*71183648SMatthias Seidel Pos = MAP_APPFONT ( TBX_LINE_SPACE_X, TBX_LINE_SPACE_Y) ; 376766ce4d0SZheng Fan SVLook = TRUE ; 377766ce4d0SZheng Fan Border = FALSE ; 378*71183648SMatthias Seidel Size = MAP_APPFONT (TOOLBOX_WIDTH, TOOLBOX_HEIGHT) ; 379766ce4d0SZheng Fan HelpID = HID_PPROPERTYPANEL_PARA_TBX_LINESP ; 380766ce4d0SZheng Fan Text = "Line Spacing" ; 381766ce4d0SZheng Fan ItemList = 382766ce4d0SZheng Fan { 383766ce4d0SZheng Fan ToolBoxItem 384766ce4d0SZheng Fan { 385766ce4d0SZheng Fan Identifier = BT_BTX_LINESP ; 386766ce4d0SZheng Fan HelpID = HID_PPROPERTYPANEL_PARA_TBI_LINESP ; 387766ce4d0SZheng Fan Text [ en-US ] = "Line Spacing" ; 388766ce4d0SZheng Fan ItemBitmap = Bitmap 389766ce4d0SZheng Fan { 390766ce4d0SZheng Fan File = "symphony/lpsmall-spacing-1.png" ; 391766ce4d0SZheng Fan }; 392*71183648SMatthias Seidel DropDown = TRUE ; 393766ce4d0SZheng Fan }; 394766ce4d0SZheng Fan }; 395766ce4d0SZheng Fan }; 396766ce4d0SZheng Fan FixedImage FI_INDENT1 397*71183648SMatthias Seidel { 398*71183648SMatthias Seidel Pos = MAP_APPFONT ( IMG_SPACE_X, IMG_SPACE1_Y ) ; 399*71183648SMatthias Seidel Size = MAP_APPFONT ( IMAGE_SIZE, IMAGE_SIZE ) ; 400*71183648SMatthias Seidel }; 401*71183648SMatthias Seidel FixedImage FI_INDENT2 402*71183648SMatthias Seidel { 403*71183648SMatthias Seidel Pos = MAP_APPFONT ( IMG_SPACE_X, IMG_SPACE2_Y ) ; 404*71183648SMatthias Seidel Size = MAP_APPFONT ( IMAGE_SIZE, IMAGE_SIZE ) ; 405*71183648SMatthias Seidel }; 406*71183648SMatthias Seidel FixedImage FI_INDENT3 407*71183648SMatthias Seidel { 408*71183648SMatthias Seidel Pos = MAP_APPFONT ( IMG_INDENT_X, IMG_INDENT1_Y ) ; 409*71183648SMatthias Seidel Size = MAP_APPFONT ( IMAGE_SIZE, IMAGE_SIZE ) ; 410*71183648SMatthias Seidel }; 411*71183648SMatthias Seidel FixedImage FI_SPACE1 412*71183648SMatthias Seidel { 413*71183648SMatthias Seidel Pos = MAP_APPFONT ( IMG_INDENT_X, IMG_INDENT2_Y ) ; 414*71183648SMatthias Seidel Size = MAP_APPFONT ( IMAGE_SIZE, IMAGE_SIZE ) ; 415*71183648SMatthias Seidel }; 416*71183648SMatthias Seidel FixedImage FI_SPACE2 417*71183648SMatthias Seidel { 418*71183648SMatthias Seidel Pos = MAP_APPFONT ( IMG_INDENT_X, IMG_INDENT3_Y ) ; 419*71183648SMatthias Seidel Size = MAP_APPFONT ( IMAGE_SIZE, IMAGE_SIZE ) ; 420*71183648SMatthias Seidel }; 421*71183648SMatthias Seidel 422766ce4d0SZheng Fan ImageList IL_NUM_BULLET 423766ce4d0SZheng Fan { 424*71183648SMatthias Seidel Prefix = "symphony/para_numbullet" ; 425766ce4d0SZheng Fan MaskColor = STD_MASKCOLOR ; 426*71183648SMatthias Seidel SVX_PROPERTYPANEL_PARA_NUMBULLET_IDLIST 427*71183648SMatthias Seidel }; 428*71183648SMatthias Seidel ImageList ILH_NUM_BULLET 429766ce4d0SZheng Fan { 430*71183648SMatthias Seidel Prefix = "symphony/para_numbulleth" ; 431766ce4d0SZheng Fan MaskColor = STD_MASKCOLOR ; 432*71183648SMatthias Seidel SVX_PROPERTYPANEL_PARA_NUMBULLET_IDLIST 433*71183648SMatthias Seidel }; 434*71183648SMatthias Seidel // for sym2_7380 435*71183648SMatthias Seidel ImageList IL_NUM_BULLET_RTL 436766ce4d0SZheng Fan { 437*71183648SMatthias Seidel Prefix = "symphony/para_numbullet_rtl" ; 438766ce4d0SZheng Fan MaskColor = STD_MASKCOLOR ; 439*71183648SMatthias Seidel SVX_PROPERTYPANEL_PARA_NUMBULLET_IDLIST_RTL 440*71183648SMatthias Seidel }; 441*71183648SMatthias Seidel // end 442*71183648SMatthias Seidel Image IMG_BACK_COLOR 443766ce4d0SZheng Fan { 444*71183648SMatthias Seidel ImageBitmap = Bitmap{File = "symphony/sc_backgroundcolor.png" ;} ; 445766ce4d0SZheng Fan }; 446766ce4d0SZheng Fan Image IMG_BACK_COLOR_H 447766ce4d0SZheng Fan { 448*71183648SMatthias Seidel ImageBitmap = Bitmap{File = "symphony/sch_backgroundcolor.png" ;} ; 449*71183648SMatthias Seidel }; 450*71183648SMatthias Seidel Image IMG_SPACE1 451766ce4d0SZheng Fan { 452*71183648SMatthias Seidel ImageBitmap = Bitmap{File = "symphony/spacing1.png" ;} ; 453*71183648SMatthias Seidel }; 454*71183648SMatthias Seidel Image IMG_SPACE2 455*71183648SMatthias Seidel { 456*71183648SMatthias Seidel ImageBitmap = Bitmap{File = "symphony/spacing2.png" ;} ; 457*71183648SMatthias Seidel }; 458766ce4d0SZheng Fan Image IMG_SPACE3 459766ce4d0SZheng Fan { 460*71183648SMatthias Seidel ImageBitmap = Bitmap{File = "symphony/spacing3.png" ;} ; 461*71183648SMatthias Seidel }; 462*71183648SMatthias Seidel Image IMG_INDENT1 463*71183648SMatthias Seidel { 464*71183648SMatthias Seidel ImageBitmap = Bitmap{File = "symphony/Indent2.png" ;} ; 465*71183648SMatthias Seidel }; 466*71183648SMatthias Seidel Image IMG_INDENT2 467*71183648SMatthias Seidel { 468*71183648SMatthias Seidel ImageBitmap = Bitmap{File = "symphony/Indent3.png" ;} ; 469*71183648SMatthias Seidel }; 470*71183648SMatthias Seidel Image IMG_INDENT3 471*71183648SMatthias Seidel { 472*71183648SMatthias Seidel ImageBitmap = Bitmap{File = "symphony/Indent4.png" ;} ; 473766ce4d0SZheng Fan }; 474766ce4d0SZheng Fan Image IMG_INDENT_HANG 475*71183648SMatthias Seidel { 476*71183648SMatthias Seidel ImageBitmap = Bitmap{File = "symphony/Indent_Hanging.png" ;} ; 477766ce4d0SZheng Fan }; 478766ce4d0SZheng Fan}; 479766ce4d0SZheng Fan 480*71183648SMatthias Seidel// ===========================================Back color page============================== 481766ce4d0SZheng FanControl RID_POPUPPANEL_PARAPAGE_BACK_COLOR 482766ce4d0SZheng Fan{ 483*71183648SMatthias Seidel OutputSize = TRUE ; 484*71183648SMatthias Seidel DialogControl = TRUE ; 485*71183648SMatthias Seidel Border = FALSE ; 486*71183648SMatthias Seidel Size = MAP_APPFONT ( POPUP_COLOR_PICKER_WIDTH, POPUP_COLOR_PICKER_HEIGHT ) ; 487*71183648SMatthias Seidel 488766ce4d0SZheng Fan Control VS_FONT_COLOR 489766ce4d0SZheng Fan { 490766ce4d0SZheng Fan HelpID = HID_PPROPERTYPANEL_PARA_BACK_COLOR_VS ; 491*71183648SMatthias Seidel Hide = TRUE ; 492*71183648SMatthias Seidel Pos = MAP_APPFONT ( OFFSET_X, OFFSET_Y ) ; 493*71183648SMatthias Seidel Size = MAP_APPFONT ( POPUP_COLOR_PICKER_WIDTH - OFFSET_X * 2, POPUP_COLOR_PICKER_HEIGHT - OFFSET_Y * 2) ; 494766ce4d0SZheng Fan TabStop = TRUE ; 495*71183648SMatthias Seidel Text = "Color Picker" ; 496766ce4d0SZheng Fan }; 497766ce4d0SZheng Fan String STR_NOFILL 498766ce4d0SZheng Fan { 499*71183648SMatthias Seidel Text [ en-US ] = "No Color" ; 500766ce4d0SZheng Fan }; 501b7a56e95SArmin Le Grand}; 502766ce4d0SZheng Fan 503*71183648SMatthias Seidel// ===========================================Bullet popup page============================== 504766ce4d0SZheng FanControl RID_POPUPPANEL_PARAPAGE_BULLETS 505766ce4d0SZheng Fan{ 506*71183648SMatthias Seidel DialogControl = TRUE ; 507*71183648SMatthias Seidel OutputSize = TRUE ; 508*71183648SMatthias Seidel Border = FALSE ; 509*71183648SMatthias Seidel 510*71183648SMatthias Seidel Size = MAP_APPFONT ( POPUP_WIDTH_BULLET, POPUP_HEIGHT_BULLET) ; 511766ce4d0SZheng Fan Control VS_VALUES 512766ce4d0SZheng Fan { 513*71183648SMatthias Seidel Pos = MAP_APPFONT ( POPUPPANEL_MARGIN_NB, POPUPPANEL_MARGIN_NB ) ; 514*71183648SMatthias Seidel Size = MAP_APPFONT ( VS_WIDTH_BULLET, VS_HEIGHT_BULLET) ; 515766ce4d0SZheng Fan HelpID = HID_POPUP_BULLET_VS_VALUES ; 516766ce4d0SZheng Fan TabStop = TRUE ; 517*71183648SMatthias Seidel Text = "Bullet" ; 518766ce4d0SZheng Fan }; 519766ce4d0SZheng Fan PushButton CB_BULLET_MORE 520766ce4d0SZheng Fan { 521766ce4d0SZheng Fan Pos = MAP_APPFONT (CUST_MORE_BUTTON_X + POPUPPANEL_MARGIN_NB, VS_HEIGHT_BULLET + POPUPPANEL_MARGIN_NB * 2 ) ; 522766ce4d0SZheng Fan Size = MAP_APPFONT (POPUP_WIDTH_BULLET - 2*CUST_MORE_BUTTON_X - POPUPPANEL_MARGIN_NB*2, CUST_MORE_BUTTON_HEIGHT ) ; 523766ce4d0SZheng Fan HelpID = HID_POPUP_BULLET_CB_BULLET_MORE ; 524766ce4d0SZheng Fan TabStop = TRUE ; 525*71183648SMatthias Seidel Text [ en-US ] = "~More Options" ; 526*71183648SMatthias Seidel }; 527*71183648SMatthias Seidel Bitmap BMP_BULLET_MORE 528766ce4d0SZheng Fan { 529*71183648SMatthias Seidel File = "symphony/__morebutton.bmp" ; 530766ce4d0SZheng Fan }; 531766ce4d0SZheng Fan Bitmap BMP_BULLET_MORE_H 532766ce4d0SZheng Fan { 533*71183648SMatthias Seidel File = "symphony/__morebutton_h.bmp" ; 534*71183648SMatthias Seidel }; 535766ce4d0SZheng Fan}; 536766ce4d0SZheng Fan 537766ce4d0SZheng FanString RID_SVXSTR_SIDEBAR_BULLET_DESCRIPTIONS_0 538766ce4d0SZheng Fan{ 539*71183648SMatthias Seidel Text [en-US] = "large square bullets" ; 540766ce4d0SZheng Fan}; 541766ce4d0SZheng Fan 542766ce4d0SZheng FanString RID_SVXSTR_SIDEBAR_BULLET_DESCRIPTIONS_1 543766ce4d0SZheng Fan{ 544*71183648SMatthias Seidel Text [en-US] = "graphic bullets" ; 545766ce4d0SZheng Fan}; 546766ce4d0SZheng Fan 547766ce4d0SZheng FanString RID_SVXSTR_SIDEBAR_BULLET_DESCRIPTIONS_2 548766ce4d0SZheng Fan{ 549*71183648SMatthias Seidel Text [en-US] = "graphic bullets" ; 550766ce4d0SZheng Fan}; 551766ce4d0SZheng Fan 552766ce4d0SZheng FanString RID_SVXSTR_SIDEBAR_BULLET_DESCRIPTIONS_3 553766ce4d0SZheng Fan{ 554*71183648SMatthias Seidel Text [en-US] = "graphic bullets" ; 555766ce4d0SZheng Fan}; 556766ce4d0SZheng Fan 557766ce4d0SZheng FanString RID_SVXSTR_SIDEBAR_BULLET_DESCRIPTIONS_4 558766ce4d0SZheng Fan{ 559*71183648SMatthias Seidel Text [en-US] = "graphic bullets" ; 560766ce4d0SZheng Fan}; 561766ce4d0SZheng Fan 562*71183648SMatthias Seidel// ===========================================Numbering popup page============================== 563766ce4d0SZheng FanControl RID_POPUPPANEL_PARAPAGE_NUMBERING 564766ce4d0SZheng Fan{ 565766ce4d0SZheng Fan SVLook = TRUE ; 566*71183648SMatthias Seidel DialogControl = TRUE ; 567*71183648SMatthias Seidel OutputSize = TRUE ; 568*71183648SMatthias Seidel Border = FALSE ; 569*71183648SMatthias Seidel 570*71183648SMatthias Seidel Size = MAP_APPFONT ( POPUP_WIDTH_NUM, POPUP_HEIGHT_NUM) ; 571766ce4d0SZheng Fan Control VS_NUMBERING 572766ce4d0SZheng Fan { 573766ce4d0SZheng Fan Pos = MAP_APPFONT ( POPUPPANEL_MARGIN_NB, POPUPPANEL_MARGIN_NB ) ; 574*71183648SMatthias Seidel Size = MAP_APPFONT ( VS_WIDTH_NUM, VS_HEIGHT_NUM) ; 575766ce4d0SZheng Fan HelpID = HID_POPUP_NUM_VS_NUMBERING ; 576766ce4d0SZheng Fan TabStop = TRUE ; 577*71183648SMatthias Seidel Text = "Numbering" ; 578766ce4d0SZheng Fan }; 579766ce4d0SZheng Fan PushButton CB_NUMBERING_MORE 580766ce4d0SZheng Fan { 581*71183648SMatthias Seidel Pos = MAP_APPFONT (CUST_MORE_BUTTON_X + POPUPPANEL_MARGIN_NB, VS_HEIGHT_NUM + POPUPPANEL_MARGIN_NB * 2 ) ; 582766ce4d0SZheng Fan Size = MAP_APPFONT (POPUP_WIDTH_NUM - 2*CUST_MORE_BUTTON_X - POPUPPANEL_MARGIN_NB*2, CUST_MORE_BUTTON_HEIGHT ) ; 583766ce4d0SZheng Fan HelpID = HID_POPUP_NUM_CB_NUMBERING_MORE ; 584766ce4d0SZheng Fan TabStop = TRUE ; 585*71183648SMatthias Seidel Text [ en-US ] = "~More Options" ; 586*71183648SMatthias Seidel }; 587*71183648SMatthias Seidel Bitmap BMP_NUMERING_MORE 588766ce4d0SZheng Fan { 589*71183648SMatthias Seidel File = "symphony/__morebutton.bmp" ; 590766ce4d0SZheng Fan }; 591766ce4d0SZheng Fan Bitmap BMP_NUMERING_MORE_H 592766ce4d0SZheng Fan { 593*71183648SMatthias Seidel File = "symphony/__morebutton_h.bmp" ; 594*71183648SMatthias Seidel }; 595766ce4d0SZheng Fan}; 596766ce4d0SZheng Fan 597*71183648SMatthias Seidel// ===========================================Line Space popup page============================== 598766ce4d0SZheng FanControl RID_POPUPPANEL_PARAPAGE_LINESPACING 599766ce4d0SZheng Fan{ 600*71183648SMatthias Seidel OutputSize = TRUE ; 601*71183648SMatthias Seidel DialogControl = TRUE ; 602*71183648SMatthias Seidel Border = FALSE ; 603*71183648SMatthias Seidel 604*71183648SMatthias Seidel Size = MAP_APPFONT ( POPUPPANEL_MARGIN_SMALL * 2 + POPUP_BORDER_WIDTH + VS_SPACING_WIDTH, POPUP_PAGE_HEIGHT ) ; 605*71183648SMatthias Seidel 606766ce4d0SZheng Fan Control LINE_SPACING 607766ce4d0SZheng Fan { 608*71183648SMatthias Seidel Pos = MAP_APPFONT ( POPUPPANEL_MARGIN_SMALL + OFFSET_X, POPUPPANEL_MARGIN_SMALL + OFFSET_Y ) ; 609*71183648SMatthias Seidel Size = MAP_APPFONT ( VS_SPACING_WIDTH , 17 * 5) ; 610766ce4d0SZheng Fan TabStop = TRUE ; 611*71183648SMatthias Seidel Text = "Line Spacing" ; 612766ce4d0SZheng Fan }; 613*71183648SMatthias Seidel 614766ce4d0SZheng Fan FixedText FT_CUSTOM 615766ce4d0SZheng Fan { 616*71183648SMatthias Seidel Pos = MAP_APPFONT ( POP_FT_CUSTOM_X, POP_FT_CUSTOM_Y ) ; 617*71183648SMatthias Seidel Size = MAP_APPFONT ( _FIXED_TEXT_WIDTH + 50, _FIXED_TEXT_HEIGHT) ; 618*71183648SMatthias Seidel Text [ en-US ] = "Custom:" ; 619766ce4d0SZheng Fan }; 620*71183648SMatthias Seidel FixedText FT_LINE_SPACING 621766ce4d0SZheng Fan { 622*71183648SMatthias Seidel Pos = MAP_APPFONT ( FT_1_X, FT_1_Y ) ; 623*71183648SMatthias Seidel Size = MAP_APPFONT ( _FIXED_TEXT_WIDTH + 10, _FIXED_TEXT_HEIGHT) ; 624*71183648SMatthias Seidel Text [ en-US ] = "~Line Spacing:" ; 625766ce4d0SZheng Fan }; 626766ce4d0SZheng Fan 627766ce4d0SZheng Fan FixedText FT_OF 628766ce4d0SZheng Fan { 629*71183648SMatthias Seidel Pos = MAP_APPFONT ( FT_2_X, FT_2_Y ) ; 630*71183648SMatthias Seidel Size = MAP_APPFONT ( _FIXED_TEXT_WIDTH, _FIXED_TEXT_HEIGHT) ; 631*71183648SMatthias Seidel Text [ en-US ] = "~Of:" ; 632766ce4d0SZheng Fan }; 633*71183648SMatthias Seidel 634766ce4d0SZheng Fan ListBox LB_LINE_SPACING 635766ce4d0SZheng Fan { 636766ce4d0SZheng Fan Border = TRUE ; 637*71183648SMatthias Seidel Pos = MAP_APPFONT ( EDIT_1_X, EDIT_1_Y ) ; 638*71183648SMatthias Seidel Size = MAP_APPFONT ( BD_WIDTH - POPUPPANEL_MARGIN_LARGE * 2,LISTBOX_HEIGHT ) ; 639766ce4d0SZheng Fan TabStop = TRUE ; 640766ce4d0SZheng Fan DropDown = TRUE ; 641766ce4d0SZheng Fan HelpID = HID_POPUP_LS_LB_LINE_SPACING ; 642*71183648SMatthias Seidel StringList [ en-US ] = 643*71183648SMatthias Seidel { 644*71183648SMatthias Seidel < "Single" ; Default ; > ; 645*71183648SMatthias Seidel < "1.5 Lines" ; Default ; > ; 646*71183648SMatthias Seidel < "Double" ; Default ; > ; 647*71183648SMatthias Seidel < "Proportional" ; Default ; > ; 648*71183648SMatthias Seidel < "At least" ; Default ; > ; 649*71183648SMatthias Seidel < "Leading" ; Default ; > ; 650*71183648SMatthias Seidel < "Fixed" ; Default ; > ; 651*71183648SMatthias Seidel }; 652766ce4d0SZheng Fan }; 653766ce4d0SZheng Fan MetricField ED_SBINDE_LINEDISTPERCENT 654766ce4d0SZheng Fan { 655*71183648SMatthias Seidel Disable = TRUE ; 656*71183648SMatthias Seidel Border = TRUE ; 657*71183648SMatthias Seidel Pos = MAP_APPFONT ( EDIT_2_X, EDIT_2_Y ) ; 658*71183648SMatthias Seidel Size = MAP_APPFONT ( BD_WIDTH - POPUPPANEL_MARGIN_LARGE * 2,MBOX_HEIGHT ) ; 659*71183648SMatthias Seidel HelpID = HID_POPUP_LS_ED_SBINDE_LINEDISTPERCENT ; 660*71183648SMatthias Seidel Repeat = TRUE ; 661*71183648SMatthias Seidel Spin = TRUE ; 662*71183648SMatthias Seidel Minimum = 50 ; 663*71183648SMatthias Seidel Maximum = 200 ; 664*71183648SMatthias Seidel Value = 100 ; 665*71183648SMatthias Seidel StrictFormat = TRUE ; 6667ea7a1ccSTsutomu Uchino Unit = FUNIT_PERCENT ; 667*71183648SMatthias Seidel First = 50 ; 668*71183648SMatthias Seidel Last = 200 ; 669*71183648SMatthias Seidel SpinSize = 1 ; 670766ce4d0SZheng Fan }; 671766ce4d0SZheng Fan MetricField ED_SBINDE_LINEDISTPOINT 672766ce4d0SZheng Fan { 673*71183648SMatthias Seidel Disable = TRUE ; 674*71183648SMatthias Seidel Border = TRUE ; 675*71183648SMatthias Seidel Pos = MAP_APPFONT ( EDIT_2_X, EDIT_2_Y ) ; 676*71183648SMatthias Seidel Size = MAP_APPFONT ( BD_WIDTH - POPUPPANEL_MARGIN_LARGE * 2, MBOX_HEIGHT ) ; 677*71183648SMatthias Seidel HelpID = HID_POPUP_LS_ED_SBINDE_LINEDISTPOINT ; 678*71183648SMatthias Seidel Repeat = TRUE ; 679*71183648SMatthias Seidel Spin = TRUE ; 680*71183648SMatthias Seidel Maximum = 9999 ; 681*71183648SMatthias Seidel DecimalDigits = 2 ; 682766ce4d0SZheng Fan StrictFormat = TRUE ; 683*71183648SMatthias Seidel Unit = FUNIT_INCH ; 684*71183648SMatthias Seidel Last = 9999 ; 685*71183648SMatthias Seidel SpinSize = 2 ; 686766ce4d0SZheng Fan }; 687766ce4d0SZheng Fan Image IMG_SPACING1 688766ce4d0SZheng Fan { 689*71183648SMatthias Seidel ImageBitmap = Bitmap{File = "symphony/lpspacing-1.png" ;} ; 690766ce4d0SZheng Fan }; 691766ce4d0SZheng Fan Image IMG_SPACING115 692766ce4d0SZheng Fan { 693*71183648SMatthias Seidel ImageBitmap = Bitmap{File = "symphony/lpspacing-1_15.png" ;} ; 694766ce4d0SZheng Fan }; 695766ce4d0SZheng Fan Image IMG_SPACING15 696766ce4d0SZheng Fan { 697*71183648SMatthias Seidel ImageBitmap = Bitmap{File = "symphony/lpspacing-1_5.png" ;} ; 698766ce4d0SZheng Fan }; 699766ce4d0SZheng Fan Image IMG_SPACING2 700766ce4d0SZheng Fan { 701*71183648SMatthias Seidel ImageBitmap = Bitmap{File = "symphony/lpspacing-2.png" ;} ; 702766ce4d0SZheng Fan }; 703766ce4d0SZheng Fan Image IMG_SEL_SPACING1 704766ce4d0SZheng Fan { 705*71183648SMatthias Seidel ImageBitmap = Bitmap{File = "symphony/lpselected-spacing-1.png" ;} ; 706766ce4d0SZheng Fan }; 707766ce4d0SZheng Fan Image IMG_SEL_SPACING115 708766ce4d0SZheng Fan { 709*71183648SMatthias Seidel ImageBitmap = Bitmap{File = "symphony/lpselected-spacing-1_15.png" ;} ; 710766ce4d0SZheng Fan }; 711766ce4d0SZheng Fan Image IMG_SEL_SPACING15 712766ce4d0SZheng Fan { 713*71183648SMatthias Seidel ImageBitmap = Bitmap{File = "symphony/lpselected-spacing-1_5.png" ;} ; 714766ce4d0SZheng Fan }; 715766ce4d0SZheng Fan Image IMG_SEL_SPACING2 716766ce4d0SZheng Fan { 717*71183648SMatthias Seidel ImageBitmap = Bitmap{File = "symphony/lpselected-spacing-2.png" ;} ; 718766ce4d0SZheng Fan }; 719*71183648SMatthias Seidel Image IMG_CUSTOM 720766ce4d0SZheng Fan { 721*71183648SMatthias Seidel ImageBitmap = Bitmap{File = "symphony/last_custom_common.png" ;} ; 722766ce4d0SZheng Fan }; 723766ce4d0SZheng Fan Image IMG_CUSTOM_GRAY 724766ce4d0SZheng Fan { 725*71183648SMatthias Seidel ImageBitmap = Bitmap{File = "symphony/last_custom_common_grey.png" ;} ; 726766ce4d0SZheng Fan }; 727766ce4d0SZheng Fan String STR_LS_SINGLE 728*71183648SMatthias Seidel { 729*71183648SMatthias Seidel Text [ en-US ] = "Line spacing: Single" ; 730*71183648SMatthias Seidel }; 731*71183648SMatthias Seidel String STR_LS_115 732*71183648SMatthias Seidel { 733*71183648SMatthias Seidel Text [ en-US ] = "Line spacing: 1.15 Lines" ; 734*71183648SMatthias Seidel }; 735*71183648SMatthias Seidel String STR_LS_15 736*71183648SMatthias Seidel { 737*71183648SMatthias Seidel Text [ en-US ] = "Line spacing: 1.5 Lines" ; 738*71183648SMatthias Seidel }; 739*71183648SMatthias Seidel String STR_LS_DOUBLE 740*71183648SMatthias Seidel { 741*71183648SMatthias Seidel Text [ en-US ] = "Line spacing: Double" ; 742*71183648SMatthias Seidel }; 743*71183648SMatthias Seidel String STR_LSPACING 744*71183648SMatthias Seidel { 745*71183648SMatthias Seidel Text [ en-US ] = "Line spacing:" ; 746*71183648SMatthias Seidel }; 747*71183648SMatthias Seidel String STR_LS_OF 748*71183648SMatthias Seidel { 749*71183648SMatthias Seidel Text [ en-US ] = "of:" ; 750*71183648SMatthias Seidel }; 751*71183648SMatthias Seidel String STR_SPACING1 752*71183648SMatthias Seidel { 753*71183648SMatthias Seidel Text [ en-US ] = "Spacing: 1" ; 754*71183648SMatthias Seidel }; 755*71183648SMatthias Seidel String STR_SPACING115 756*71183648SMatthias Seidel { 757*71183648SMatthias Seidel Text [ en-US ] = "Spacing: 1.15" ; 758*71183648SMatthias Seidel }; 759*71183648SMatthias Seidel String STR_SPACING15 760*71183648SMatthias Seidel { 761*71183648SMatthias Seidel Text [ en-US ] = "Spacing: 1.5" ; 762*71183648SMatthias Seidel }; 763*71183648SMatthias Seidel String STR_SPACING2 764*71183648SMatthias Seidel { 765*71183648SMatthias Seidel Text [ en-US ] = "Spacing: 2" ; 766*71183648SMatthias Seidel }; 767*71183648SMatthias Seidel String STR_LCVALUE 768*71183648SMatthias Seidel { 769*71183648SMatthias Seidel Text [ en-US ] = "Last Custom Value" ; 770*71183648SMatthias Seidel }; 771766ce4d0SZheng Fan 772766ce4d0SZheng Fan}; 773766ce4d0SZheng Fan 774445e496eSZheng FanString RID_SVXSTR_NUMBULLET_NONE 775445e496eSZheng Fan{ 776*71183648SMatthias Seidel Text [en-US] = "None" ; 777445e496eSZheng Fan}; 778766ce4d0SZheng Fan 779*71183648SMatthias Seidel// i122118, Seems the bullets graphic order and count is changed in the gallery, 780*71183648SMatthias Seidel// Following descriptions should be changed accordingly. 781594ce220SZheng Fan 782766ce4d0SZheng FanString RID_SVXSTR_GRAPHICS_DESCRIPTION_0 783766ce4d0SZheng Fan{ 784*71183648SMatthias Seidel Text [en-US] = "Black Pearl" ; 785766ce4d0SZheng Fan}; 786766ce4d0SZheng FanString RID_SVXSTR_GRAPHICS_DESCRIPTION_1 787766ce4d0SZheng Fan{ 788*71183648SMatthias Seidel Text [en-US] = "Blue Arrow 1" ; 789766ce4d0SZheng Fan}; 790766ce4d0SZheng FanString RID_SVXSTR_GRAPHICS_DESCRIPTION_2 791766ce4d0SZheng Fan{ 792*71183648SMatthias Seidel Text [en-US] = "Blue Ball" ; 793766ce4d0SZheng Fan}; 794766ce4d0SZheng FanString RID_SVXSTR_GRAPHICS_DESCRIPTION_3 795766ce4d0SZheng Fan{ 796*71183648SMatthias Seidel Text [en-US] = "Blue Diamond" ; 797766ce4d0SZheng Fan}; 798766ce4d0SZheng FanString RID_SVXSTR_GRAPHICS_DESCRIPTION_4 799766ce4d0SZheng Fan{ 800*71183648SMatthias Seidel Text [en-US] = "Blue Red" ; 801766ce4d0SZheng Fan}; 802766ce4d0SZheng FanString RID_SVXSTR_GRAPHICS_DESCRIPTION_5 803766ce4d0SZheng Fan{ 804*71183648SMatthias Seidel Text [en-US] = "Blue Square" ; 805766ce4d0SZheng Fan}; 806766ce4d0SZheng FanString RID_SVXSTR_GRAPHICS_DESCRIPTION_6 807766ce4d0SZheng Fan{ 808*71183648SMatthias Seidel Text [en-US] = "Blue Star" ; 809766ce4d0SZheng Fan}; 810766ce4d0SZheng FanString RID_SVXSTR_GRAPHICS_DESCRIPTION_7 811766ce4d0SZheng Fan{ 812*71183648SMatthias Seidel Text [en-US] = "Dark Red Circle" ; 813766ce4d0SZheng Fan}; 814766ce4d0SZheng FanString RID_SVXSTR_GRAPHICS_DESCRIPTION_8 815766ce4d0SZheng Fan{ 816*71183648SMatthias Seidel Text [en-US] = "Blue Circle" ; 817766ce4d0SZheng Fan}; 818766ce4d0SZheng FanString RID_SVXSTR_GRAPHICS_DESCRIPTION_9 819766ce4d0SZheng Fan{ 820*71183648SMatthias Seidel Text [en-US] = "Green Circle" ; 821766ce4d0SZheng Fan}; 822766ce4d0SZheng FanString RID_SVXSTR_GRAPHICS_DESCRIPTION_10 823766ce4d0SZheng Fan{ 824*71183648SMatthias Seidel Text [en-US] = "Black Square" ; 825766ce4d0SZheng Fan}; 826766ce4d0SZheng FanString RID_SVXSTR_GRAPHICS_DESCRIPTION_11 827766ce4d0SZheng Fan{ 828*71183648SMatthias Seidel Text [en-US] = "Orange Square" ; 829766ce4d0SZheng Fan}; 830766ce4d0SZheng FanString RID_SVXSTR_GRAPHICS_DESCRIPTION_12 831766ce4d0SZheng Fan{ 832*71183648SMatthias Seidel Text [en-US] = "Purple Square" ; 833766ce4d0SZheng Fan}; 834766ce4d0SZheng FanString RID_SVXSTR_GRAPHICS_DESCRIPTION_13 835766ce4d0SZheng Fan{ 836*71183648SMatthias Seidel Text [en-US] = "Blue Diamond" ; 837766ce4d0SZheng Fan}; 838766ce4d0SZheng FanString RID_SVXSTR_GRAPHICS_DESCRIPTION_14 839766ce4d0SZheng Fan{ 840*71183648SMatthias Seidel Text [en-US] = "Light Blue Diamond" ; 841766ce4d0SZheng Fan}; 842766ce4d0SZheng FanString RID_SVXSTR_GRAPHICS_DESCRIPTION_15 843766ce4d0SZheng Fan{ 844*71183648SMatthias Seidel Text [en-US] = "Red Diamond" ; 845766ce4d0SZheng Fan}; 846766ce4d0SZheng FanString RID_SVXSTR_GRAPHICS_DESCRIPTION_16 847766ce4d0SZheng Fan{ 848*71183648SMatthias Seidel Text [en-US] = "Yellow Star" ; 849766ce4d0SZheng Fan}; 850766ce4d0SZheng FanString RID_SVXSTR_GRAPHICS_DESCRIPTION_17 851766ce4d0SZheng Fan{ 852*71183648SMatthias Seidel Text [en-US] = "Blue Star" ; 853766ce4d0SZheng Fan}; 854766ce4d0SZheng FanString RID_SVXSTR_GRAPHICS_DESCRIPTION_18 855766ce4d0SZheng Fan{ 856*71183648SMatthias Seidel Text [en-US] = "Blue Triangle" ; 857766ce4d0SZheng Fan}; 858766ce4d0SZheng FanString RID_SVXSTR_GRAPHICS_DESCRIPTION_19 859766ce4d0SZheng Fan{ 860*71183648SMatthias Seidel Text [en-US] = "Dark Green Triangle" ; 861766ce4d0SZheng Fan}; 862766ce4d0SZheng FanString RID_SVXSTR_GRAPHICS_DESCRIPTION_20 863766ce4d0SZheng Fan{ 864*71183648SMatthias Seidel Text [en-US] = "Red Arrow" ; 865766ce4d0SZheng Fan}; 866766ce4d0SZheng FanString RID_SVXSTR_GRAPHICS_DESCRIPTION_21 867766ce4d0SZheng Fan{ 868*71183648SMatthias Seidel Text [en-US] = "Blue Arrow 2" ; 869766ce4d0SZheng Fan}; 870766ce4d0SZheng FanString RID_SVXSTR_GRAPHICS_DESCRIPTION_22 871766ce4d0SZheng Fan{ 872*71183648SMatthias Seidel Text [en-US] = "Blue Box" ; 873766ce4d0SZheng Fan}; 874766ce4d0SZheng FanString RID_SVXSTR_GRAPHICS_DESCRIPTION_23 875766ce4d0SZheng Fan{ 876*71183648SMatthias Seidel Text [en-US] = "Red Box" ; 877766ce4d0SZheng Fan}; 878766ce4d0SZheng FanString RID_SVXSTR_GRAPHICS_DESCRIPTION_24 879766ce4d0SZheng Fan{ 880*71183648SMatthias Seidel Text [en-US] = "Light Blue Asterisk" ; 881766ce4d0SZheng Fan}; 882766ce4d0SZheng FanString RID_SVXSTR_GRAPHICS_DESCRIPTION_25 883766ce4d0SZheng Fan{ 884*71183648SMatthias Seidel Text [en-US] = "Red Leaves" ; 885766ce4d0SZheng Fan}; 886766ce4d0SZheng FanString RID_SVXSTR_GRAPHICS_DESCRIPTION_26 887766ce4d0SZheng Fan{ 888*71183648SMatthias Seidel Text [en-US] = "Blue Target" ; 889766ce4d0SZheng Fan}; 890766ce4d0SZheng FanString RID_SVXSTR_GRAPHICS_DESCRIPTION_27 891766ce4d0SZheng Fan{ 892*71183648SMatthias Seidel Text [en-US] = "Blue Arrow 3" ; 893766ce4d0SZheng Fan}; 894766ce4d0SZheng FanString RID_SVXSTR_GRAPHICS_DESCRIPTION_28 895766ce4d0SZheng Fan{ 896*71183648SMatthias Seidel Text [en-US] = "Dark Blue Arrow" ; 897766ce4d0SZheng Fan}; 898766ce4d0SZheng FanString RID_SVXSTR_GRAPHICS_DESCRIPTION_29 899766ce4d0SZheng Fan{ 900*71183648SMatthias Seidel Text [en-US] = "Brown Arrow" ; 901594ce220SZheng Fan}; 902*71183648SMatthias Seidel// i122118 903*71183648SMatthias Seidel 904*71183648SMatthias Seidel// ********************************************************************** EOF 905