1*cdf0e10cSrcweir/************************************************************************* 2*cdf0e10cSrcweir * 3*cdf0e10cSrcweir * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4*cdf0e10cSrcweir * 5*cdf0e10cSrcweir * Copyright 2000, 2010 Oracle and/or its affiliates. 6*cdf0e10cSrcweir * 7*cdf0e10cSrcweir * OpenOffice.org - a multi-platform office productivity suite 8*cdf0e10cSrcweir * 9*cdf0e10cSrcweir * This file is part of OpenOffice.org. 10*cdf0e10cSrcweir * 11*cdf0e10cSrcweir * OpenOffice.org is free software: you can redistribute it and/or modify 12*cdf0e10cSrcweir * it under the terms of the GNU Lesser General Public License version 3 13*cdf0e10cSrcweir * only, as published by the Free Software Foundation. 14*cdf0e10cSrcweir * 15*cdf0e10cSrcweir * OpenOffice.org is distributed in the hope that it will be useful, 16*cdf0e10cSrcweir * but WITHOUT ANY WARRANTY; without even the implied warranty of 17*cdf0e10cSrcweir * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18*cdf0e10cSrcweir * GNU Lesser General Public License version 3 for more details 19*cdf0e10cSrcweir * (a copy is included in the LICENSE file that accompanied this code). 20*cdf0e10cSrcweir * 21*cdf0e10cSrcweir * You should have received a copy of the GNU Lesser General Public License 22*cdf0e10cSrcweir * version 3 along with OpenOffice.org. If not, see 23*cdf0e10cSrcweir * <http://www.openoffice.org/license.html> 24*cdf0e10cSrcweir * for a copy of the LGPLv3 License. 25*cdf0e10cSrcweir * 26*cdf0e10cSrcweir ************************************************************************/ 27*cdf0e10cSrcweir 28*cdf0e10cSrcweir // include --------------------------------------------------------------- 29*cdf0e10cSrcweir 30*cdf0e10cSrcweir#include <cuires.hrc> 31*cdf0e10cSrcweir#include "helpid.hrc" 32*cdf0e10cSrcweir#include "page.hrc" 33*cdf0e10cSrcweir#include "page.h" 34*cdf0e10cSrcweir#include <svx/dialogs.hrc> 35*cdf0e10cSrcweir 36*cdf0e10cSrcweir // RID_SVXPAGE_PAGE ------------------------------------------------------ 37*cdf0e10cSrcweir 38*cdf0e10cSrcweirTabPage RID_SVXPAGE_PAGE 39*cdf0e10cSrcweir{ 40*cdf0e10cSrcweir HelpId = HID_FORMAT_PAGE ; 41*cdf0e10cSrcweir Hide = TRUE ; 42*cdf0e10cSrcweir Size = MAP_APPFONT ( 260 , 185 ) ; 43*cdf0e10cSrcweir FixedLine FL_PAPER_SIZE 44*cdf0e10cSrcweir { 45*cdf0e10cSrcweir Pos = MAP_APPFONT ( 6 , 3 ) ; 46*cdf0e10cSrcweir Size = MAP_APPFONT ( 164 , 8 ) ; 47*cdf0e10cSrcweir Text [ en-US ] = "Paper format" ; 48*cdf0e10cSrcweir }; 49*cdf0e10cSrcweir FixedText FT_PAPER_FORMAT 50*cdf0e10cSrcweir { 51*cdf0e10cSrcweir Pos = MAP_APPFONT ( 12 , 16 ) ; 52*cdf0e10cSrcweir Size = MAP_APPFONT ( 35 , 8 ) ; 53*cdf0e10cSrcweir Text [ en-US ] = "~Format"; 54*cdf0e10cSrcweir }; 55*cdf0e10cSrcweir ListBox LB_PAPER_SIZE 56*cdf0e10cSrcweir { 57*cdf0e10cSrcweir HelpID = "cui:ListBox:RID_SVXPAGE_PAGE:LB_PAPER_SIZE"; 58*cdf0e10cSrcweir Pos = MAP_APPFONT ( 50 , 14 ) ; 59*cdf0e10cSrcweir Size = MAP_APPFONT ( 50 , 64 ) ; 60*cdf0e10cSrcweir DropDown = TRUE ; 61*cdf0e10cSrcweir DDExtraWidth = TRUE ; 62*cdf0e10cSrcweir }; 63*cdf0e10cSrcweir FixedText FT_PAPER_WIDTH 64*cdf0e10cSrcweir { 65*cdf0e10cSrcweir Pos = MAP_APPFONT ( 12 , 32 ) ; 66*cdf0e10cSrcweir Size = MAP_APPFONT ( 35 , 8 ) ; 67*cdf0e10cSrcweir Text [ en-US ] = "~Width" ; 68*cdf0e10cSrcweir Left = TRUE ; 69*cdf0e10cSrcweir }; 70*cdf0e10cSrcweir MetricField ED_PAPER_WIDTH 71*cdf0e10cSrcweir { 72*cdf0e10cSrcweir HelpID = "cui:MetricField:RID_SVXPAGE_PAGE:ED_PAPER_WIDTH"; 73*cdf0e10cSrcweir Border = TRUE ; 74*cdf0e10cSrcweir Pos = MAP_APPFONT ( 50, 30 ) ; 75*cdf0e10cSrcweir Size = MAP_APPFONT ( 40 , 12 ) ; 76*cdf0e10cSrcweir Left = TRUE ; 77*cdf0e10cSrcweir Repeat = TRUE ; 78*cdf0e10cSrcweir Spin = TRUE ; 79*cdf0e10cSrcweir // #i4219# taken from congiguration now Maximum = 11900 ; 80*cdf0e10cSrcweir DecimalDigits = 2 ; 81*cdf0e10cSrcweir Unit = FUNIT_CM ; 82*cdf0e10cSrcweir // #i4219# Last = 11900 ; 83*cdf0e10cSrcweir SpinSize = 10 ; 84*cdf0e10cSrcweir }; 85*cdf0e10cSrcweir FixedText FT_PAPER_HEIGHT 86*cdf0e10cSrcweir { 87*cdf0e10cSrcweir Pos = MAP_APPFONT ( 12 , 48 ) ; 88*cdf0e10cSrcweir Size = MAP_APPFONT ( 35 , 8 ) ; 89*cdf0e10cSrcweir Text [ en-US ] = "~Height" ; 90*cdf0e10cSrcweir Left = TRUE ; 91*cdf0e10cSrcweir }; 92*cdf0e10cSrcweir MetricField ED_PAPER_HEIGHT 93*cdf0e10cSrcweir { 94*cdf0e10cSrcweir HelpID = "cui:MetricField:RID_SVXPAGE_PAGE:ED_PAPER_HEIGHT"; 95*cdf0e10cSrcweir Border = TRUE ; 96*cdf0e10cSrcweir Pos = MAP_APPFONT ( 50 , 46 ) ; 97*cdf0e10cSrcweir Size = MAP_APPFONT ( 40 , 12 ) ; 98*cdf0e10cSrcweir Left = TRUE ; 99*cdf0e10cSrcweir Repeat = TRUE ; 100*cdf0e10cSrcweir Spin = TRUE ; 101*cdf0e10cSrcweir // #i4219# taken from congiguration now Maximum = 11900 ; 102*cdf0e10cSrcweir DecimalDigits = 2 ; 103*cdf0e10cSrcweir Unit = FUNIT_CM ; 104*cdf0e10cSrcweir // #i4219# Last = 11900 ; 105*cdf0e10cSrcweir SpinSize = 10 ; 106*cdf0e10cSrcweir }; 107*cdf0e10cSrcweir FixedText FT_ORIENTATION 108*cdf0e10cSrcweir { 109*cdf0e10cSrcweir Pos = MAP_APPFONT ( 12 , 62 ) ; 110*cdf0e10cSrcweir Size = MAP_APPFONT ( 35 , 8 ) ; 111*cdf0e10cSrcweir Text [ en-US ] = "Orientation"; 112*cdf0e10cSrcweir }; 113*cdf0e10cSrcweir RadioButton RB_PORTRAIT 114*cdf0e10cSrcweir { 115*cdf0e10cSrcweir HelpID = "cui:RadioButton:RID_SVXPAGE_PAGE:RB_PORTRAIT"; 116*cdf0e10cSrcweir Pos = MAP_APPFONT ( 50 , 62 ) ; 117*cdf0e10cSrcweir Size = MAP_APPFONT ( 53 , 10 ) ; 118*cdf0e10cSrcweir Check = TRUE ; 119*cdf0e10cSrcweir Text [ en-US ] = "~Portrait" ; 120*cdf0e10cSrcweir }; 121*cdf0e10cSrcweir RadioButton RB_LANDSCAPE 122*cdf0e10cSrcweir { 123*cdf0e10cSrcweir HelpID = "cui:RadioButton:RID_SVXPAGE_PAGE:RB_LANDSCAPE"; 124*cdf0e10cSrcweir Pos = MAP_APPFONT ( 50 , 74 ) ; 125*cdf0e10cSrcweir Size = MAP_APPFONT ( 53 , 10 ) ; 126*cdf0e10cSrcweir Text [ en-US ] = "L~andscape"; 127*cdf0e10cSrcweir }; 128*cdf0e10cSrcweir Window WN_BSP 129*cdf0e10cSrcweir { 130*cdf0e10cSrcweir Pos = MAP_APPFONT ( 176 , 6 ) ; 131*cdf0e10cSrcweir Size = MAP_APPFONT ( 75 , 46 ) ; 132*cdf0e10cSrcweir }; 133*cdf0e10cSrcweir 134*cdf0e10cSrcweir FixedText FT_TEXT_FLOW 135*cdf0e10cSrcweir { 136*cdf0e10cSrcweir Pos = MAP_APPFONT ( 113 , 60 ) ; 137*cdf0e10cSrcweir Size = MAP_APPFONT ( 50 , 8 ) ; 138*cdf0e10cSrcweir Left = TRUE ; 139*cdf0e10cSrcweir Hide = TRUE ; 140*cdf0e10cSrcweir Text [ en-US ] = "~Text direction"; 141*cdf0e10cSrcweir }; 142*cdf0e10cSrcweir ListBox LB_TEXT_FLOW 143*cdf0e10cSrcweir { 144*cdf0e10cSrcweir HelpID = "cui:ListBox:RID_SVXPAGE_PAGE:LB_TEXT_FLOW"; 145*cdf0e10cSrcweir Border = TRUE ; 146*cdf0e10cSrcweir Pos = MAP_APPFONT ( 165 , 58 ) ; 147*cdf0e10cSrcweir Size = MAP_APPFONT ( 83 , 50 ) ; 148*cdf0e10cSrcweir DropDown = TRUE ; 149*cdf0e10cSrcweir Hide = TRUE ; 150*cdf0e10cSrcweir }; 151*cdf0e10cSrcweir 152*cdf0e10cSrcweir FixedText FT_PAPER_TRAY 153*cdf0e10cSrcweir { 154*cdf0e10cSrcweir Pos = MAP_APPFONT ( 113 , 74 ) ; 155*cdf0e10cSrcweir Size = MAP_APPFONT ( 50 , 8 ) ; 156*cdf0e10cSrcweir Left = TRUE ; 157*cdf0e10cSrcweir Text [ en-US ] = "Paper ~tray"; 158*cdf0e10cSrcweir }; 159*cdf0e10cSrcweir ListBox LB_PAPER_TRAY 160*cdf0e10cSrcweir { 161*cdf0e10cSrcweir HelpID = "cui:ListBox:RID_SVXPAGE_PAGE:LB_PAPER_TRAY"; 162*cdf0e10cSrcweir Pos = MAP_APPFONT ( 165 , 72 ) ; 163*cdf0e10cSrcweir Size = MAP_APPFONT ( 83 , 50 ) ; 164*cdf0e10cSrcweir DropDown = TRUE ; 165*cdf0e10cSrcweir DDExtraWidth = TRUE ; 166*cdf0e10cSrcweir }; 167*cdf0e10cSrcweir FixedLine FL_MARGIN 168*cdf0e10cSrcweir { 169*cdf0e10cSrcweir Pos = MAP_APPFONT ( 6 , 90 ) ; 170*cdf0e10cSrcweir Size = MAP_APPFONT ( 95 , 8 ) ; 171*cdf0e10cSrcweir Text [ en-US ] = "Margins"; 172*cdf0e10cSrcweir }; 173*cdf0e10cSrcweir FixedText FT_LEFT_MARGIN 174*cdf0e10cSrcweir { 175*cdf0e10cSrcweir Pos = MAP_APPFONT ( 12 , 103 ) ; 176*cdf0e10cSrcweir Size = MAP_APPFONT ( 40 , 8 ) ; 177*cdf0e10cSrcweir Text [ en-US ] = "~Left" ; 178*cdf0e10cSrcweir Left = TRUE ; 179*cdf0e10cSrcweir }; 180*cdf0e10cSrcweir MetricField ED_LEFT_MARGIN 181*cdf0e10cSrcweir { 182*cdf0e10cSrcweir HelpID = "cui:MetricField:RID_SVXPAGE_PAGE:ED_LEFT_MARGIN"; 183*cdf0e10cSrcweir Border = TRUE ; 184*cdf0e10cSrcweir Pos = MAP_APPFONT ( 55 , 101 ) ; 185*cdf0e10cSrcweir Size = MAP_APPFONT ( 40 , 12 ) ; 186*cdf0e10cSrcweir Left = TRUE ; 187*cdf0e10cSrcweir Repeat = TRUE ; 188*cdf0e10cSrcweir Spin = TRUE ; 189*cdf0e10cSrcweir // #i4219# taken from congiguration now Maximum = 9999 ; 190*cdf0e10cSrcweir DecimalDigits = 2 ; 191*cdf0e10cSrcweir Unit = FUNIT_CM ; 192*cdf0e10cSrcweir // #i4219# Last = 9999 ; 193*cdf0e10cSrcweir SpinSize = 10 ; 194*cdf0e10cSrcweir }; 195*cdf0e10cSrcweir FixedText FT_RIGHT_MARGIN 196*cdf0e10cSrcweir { 197*cdf0e10cSrcweir Pos = MAP_APPFONT ( 12 , 119 ) ; 198*cdf0e10cSrcweir Size = MAP_APPFONT ( 40 , 8 ) ; 199*cdf0e10cSrcweir Text [ en-US ] = "~Right" ; 200*cdf0e10cSrcweir Left = TRUE ; 201*cdf0e10cSrcweir }; 202*cdf0e10cSrcweir MetricField ED_RIGHT_MARGIN 203*cdf0e10cSrcweir { 204*cdf0e10cSrcweir HelpID = "cui:MetricField:RID_SVXPAGE_PAGE:ED_RIGHT_MARGIN"; 205*cdf0e10cSrcweir Border = TRUE ; 206*cdf0e10cSrcweir Pos = MAP_APPFONT ( 55 , 117 ) ; 207*cdf0e10cSrcweir Size = MAP_APPFONT ( 40 , 12 ) ; 208*cdf0e10cSrcweir Left = TRUE ; 209*cdf0e10cSrcweir Repeat = TRUE ; 210*cdf0e10cSrcweir Spin = TRUE ; 211*cdf0e10cSrcweir // #i4219# taken from congiguration now Maximum = 9999 ; 212*cdf0e10cSrcweir DecimalDigits = 2 ; 213*cdf0e10cSrcweir Unit = FUNIT_CM ; 214*cdf0e10cSrcweir // #i4219# Last = 9999 ; 215*cdf0e10cSrcweir SpinSize = 10 ; 216*cdf0e10cSrcweir }; 217*cdf0e10cSrcweir FixedText FT_TOP_MARGIN 218*cdf0e10cSrcweir { 219*cdf0e10cSrcweir Pos = MAP_APPFONT ( 12 , 135 ) ; 220*cdf0e10cSrcweir Size = MAP_APPFONT ( 40 , 8 ) ; 221*cdf0e10cSrcweir Text [ en-US ] = "~Top" ; 222*cdf0e10cSrcweir Left = TRUE ; 223*cdf0e10cSrcweir }; 224*cdf0e10cSrcweir MetricField ED_TOP_MARGIN 225*cdf0e10cSrcweir { 226*cdf0e10cSrcweir HelpID = "cui:MetricField:RID_SVXPAGE_PAGE:ED_TOP_MARGIN"; 227*cdf0e10cSrcweir Border = TRUE ; 228*cdf0e10cSrcweir Pos = MAP_APPFONT ( 55 , 133 ) ; 229*cdf0e10cSrcweir Size = MAP_APPFONT ( 40 , 12 ) ; 230*cdf0e10cSrcweir Left = TRUE ; 231*cdf0e10cSrcweir Repeat = TRUE ; 232*cdf0e10cSrcweir Spin = TRUE ; 233*cdf0e10cSrcweir // #i4219# taken from congiguration now Maximum = 9999 ; 234*cdf0e10cSrcweir DecimalDigits = 2 ; 235*cdf0e10cSrcweir Unit = FUNIT_CM ; 236*cdf0e10cSrcweir // #i4219# Last = 9999 ; 237*cdf0e10cSrcweir SpinSize = 10 ; 238*cdf0e10cSrcweir }; 239*cdf0e10cSrcweir FixedText FT_BOTTOM_MARGIN 240*cdf0e10cSrcweir { 241*cdf0e10cSrcweir Pos = MAP_APPFONT ( 12 , 151 ) ; 242*cdf0e10cSrcweir Size = MAP_APPFONT ( 40 , 8 ) ; 243*cdf0e10cSrcweir Text [ en-US ] = "~Bottom" ; 244*cdf0e10cSrcweir Left = TRUE ; 245*cdf0e10cSrcweir }; 246*cdf0e10cSrcweir MetricField ED_BOTTOM_MARGIN 247*cdf0e10cSrcweir { 248*cdf0e10cSrcweir HelpID = "cui:MetricField:RID_SVXPAGE_PAGE:ED_BOTTOM_MARGIN"; 249*cdf0e10cSrcweir Border = TRUE ; 250*cdf0e10cSrcweir Pos = MAP_APPFONT ( 55 , 149 ) ; 251*cdf0e10cSrcweir Size = MAP_APPFONT ( 40 , 12 ) ; 252*cdf0e10cSrcweir Left = TRUE ; 253*cdf0e10cSrcweir Repeat = TRUE ; 254*cdf0e10cSrcweir Spin = TRUE ; 255*cdf0e10cSrcweir // #i4219# taken from congiguration now Maximum = 9999 ; 256*cdf0e10cSrcweir DecimalDigits = 2 ; 257*cdf0e10cSrcweir Unit = FUNIT_CM ; 258*cdf0e10cSrcweir // #i4219# Last = 9999 ; 259*cdf0e10cSrcweir SpinSize = 10 ; 260*cdf0e10cSrcweir }; 261*cdf0e10cSrcweir FixedLine FL_BOTTOM_SEP 262*cdf0e10cSrcweir { 263*cdf0e10cSrcweir Pos = MAP_APPFONT ( 102 , 101 ) ; 264*cdf0e10cSrcweir Size = MAP_APPFONT ( 4 , 68 ) ; 265*cdf0e10cSrcweir Vert = TRUE; 266*cdf0e10cSrcweir }; 267*cdf0e10cSrcweir FixedLine FL_LAYOUT 268*cdf0e10cSrcweir { 269*cdf0e10cSrcweir Pos = MAP_APPFONT ( 107, 90 ) ; 270*cdf0e10cSrcweir Size = MAP_APPFONT ( 147 , 8 ) ; 271*cdf0e10cSrcweir Text [ en-US ] = "Layout settings"; 272*cdf0e10cSrcweir }; 273*cdf0e10cSrcweir FixedText FT_PAGELAYOUT 274*cdf0e10cSrcweir { 275*cdf0e10cSrcweir Pos = MAP_APPFONT ( 113 , 103 ) ; 276*cdf0e10cSrcweir Size = MAP_APPFONT ( 54 , 8 ) ; 277*cdf0e10cSrcweir Text [ en-US ] = "Page layout" ; 278*cdf0e10cSrcweir }; 279*cdf0e10cSrcweir ListBox LB_LAYOUT 280*cdf0e10cSrcweir { 281*cdf0e10cSrcweir HelpID = "cui:ListBox:RID_SVXPAGE_PAGE:LB_LAYOUT"; 282*cdf0e10cSrcweir Border = TRUE ; 283*cdf0e10cSrcweir Pos = MAP_APPFONT ( 170, 101 ) ; 284*cdf0e10cSrcweir Size = MAP_APPFONT ( 78 , 44 ) ; 285*cdf0e10cSrcweir DropDown = TRUE ; 286*cdf0e10cSrcweir StringList [ en-US ] = 287*cdf0e10cSrcweir { 288*cdf0e10cSrcweir < "Right and left" ; Default ; > ; 289*cdf0e10cSrcweir < "Mirrored" ; Default ; > ; 290*cdf0e10cSrcweir < "Only right" ; Default ; > ; 291*cdf0e10cSrcweir < "Only left" ; Default ; > ; 292*cdf0e10cSrcweir }; 293*cdf0e10cSrcweir }; 294*cdf0e10cSrcweir FixedText FT_NUMBER_FORMAT 295*cdf0e10cSrcweir { 296*cdf0e10cSrcweir Pos = MAP_APPFONT ( 113 , 119 ) ; 297*cdf0e10cSrcweir Size = MAP_APPFONT ( 54 , 8 ) ; 298*cdf0e10cSrcweir Text [ en-US ] = "For~mat"; 299*cdf0e10cSrcweir }; 300*cdf0e10cSrcweir ListBox LB_NUMBER_FORMAT 301*cdf0e10cSrcweir { 302*cdf0e10cSrcweir HelpID = "cui:ListBox:RID_SVXPAGE_PAGE:LB_NUMBER_FORMAT"; 303*cdf0e10cSrcweir Border = TRUE ; 304*cdf0e10cSrcweir Pos = MAP_APPFONT ( 170 , 117 ) ; 305*cdf0e10cSrcweir Size = MAP_APPFONT ( 78 , 64 ) ; 306*cdf0e10cSrcweir DropDown = TRUE ; 307*cdf0e10cSrcweir StringList [ en-US ] = 308*cdf0e10cSrcweir { 309*cdf0e10cSrcweir < "A, B, C, ..." ; Default ; > ; 310*cdf0e10cSrcweir < "a, b, c, ..." ; Default ; > ; 311*cdf0e10cSrcweir < "I, II, III, ..." ; Default ; > ; 312*cdf0e10cSrcweir < "i, ii, iii, ..." ; Default ; > ; 313*cdf0e10cSrcweir < "1, 2, 3, ..." ; Default ; > ; 314*cdf0e10cSrcweir < "None" ; Default ; > ; 315*cdf0e10cSrcweir }; 316*cdf0e10cSrcweir }; 317*cdf0e10cSrcweir FixedText FT_TBL_ALIGN 318*cdf0e10cSrcweir { 319*cdf0e10cSrcweir Hide = TRUE ; 320*cdf0e10cSrcweir Pos = MAP_APPFONT ( 113 , 133 ) ; 321*cdf0e10cSrcweir Size = MAP_APPFONT ( 60 , 8 ) ; 322*cdf0e10cSrcweir Text [ en-US ] = "Table alignment"; 323*cdf0e10cSrcweir }; 324*cdf0e10cSrcweir CheckBox CB_HORZ 325*cdf0e10cSrcweir { 326*cdf0e10cSrcweir HelpID = "cui:CheckBox:RID_SVXPAGE_PAGE:CB_HORZ"; 327*cdf0e10cSrcweir Hide = TRUE ; 328*cdf0e10cSrcweir Pos = MAP_APPFONT ( 175 , 133 ) ; 329*cdf0e10cSrcweir Size = MAP_APPFONT ( 73 , 10 ) ; 330*cdf0e10cSrcweir Text [ en-US ] = "Hori~zontal" ; 331*cdf0e10cSrcweir }; 332*cdf0e10cSrcweir CheckBox CB_VERT 333*cdf0e10cSrcweir { 334*cdf0e10cSrcweir HelpID = "cui:CheckBox:RID_SVXPAGE_PAGE:CB_VERT"; 335*cdf0e10cSrcweir Hide = TRUE ; 336*cdf0e10cSrcweir Pos = MAP_APPFONT ( 175 , 147 ) ; 337*cdf0e10cSrcweir Size = MAP_APPFONT ( 73 , 10 ) ; 338*cdf0e10cSrcweir Text [ en-US ] = "~Vertical" ; 339*cdf0e10cSrcweir }; 340*cdf0e10cSrcweir CheckBox CB_ADAPT 341*cdf0e10cSrcweir { 342*cdf0e10cSrcweir HelpID = "cui:CheckBox:RID_SVXPAGE_PAGE:CB_ADAPT"; 343*cdf0e10cSrcweir Hide = TRUE ; 344*cdf0e10cSrcweir Pos = MAP_APPFONT ( 113 , 133 ) ; 345*cdf0e10cSrcweir Size = MAP_APPFONT ( 135 , 10 ) ; 346*cdf0e10cSrcweir Text [ en-US ] = "~Fit object to paper format"; 347*cdf0e10cSrcweir }; 348*cdf0e10cSrcweir /* Registerhaltigkeit (fuer SW) */ 349*cdf0e10cSrcweir CheckBox CB_REGISTER 350*cdf0e10cSrcweir { 351*cdf0e10cSrcweir HelpID = "cui:CheckBox:RID_SVXPAGE_PAGE:CB_REGISTER"; 352*cdf0e10cSrcweir Pos = MAP_APPFONT ( 113 , 133 ) ; 353*cdf0e10cSrcweir Size = MAP_APPFONT ( 135 , 10 ) ; 354*cdf0e10cSrcweir Hide = TRUE ; 355*cdf0e10cSrcweir Text [ en-US ] = "Register-true" ; 356*cdf0e10cSrcweir }; 357*cdf0e10cSrcweir FixedText FT_REGISTER 358*cdf0e10cSrcweir { 359*cdf0e10cSrcweir Pos = MAP_APPFONT ( 122 , 147 ) ; 360*cdf0e10cSrcweir Size = MAP_APPFONT ( 126 , 8 ) ; 361*cdf0e10cSrcweir Text [ en-US ] = "Reference ~Style" ; 362*cdf0e10cSrcweir Hide = TRUE ; 363*cdf0e10cSrcweir }; 364*cdf0e10cSrcweir ListBox LB_REGISTER 365*cdf0e10cSrcweir { 366*cdf0e10cSrcweir HelpID = "cui:ListBox:RID_SVXPAGE_PAGE:LB_REGISTER"; 367*cdf0e10cSrcweir Pos = MAP_APPFONT ( 122 , 157 ) ; 368*cdf0e10cSrcweir Size = MAP_APPFONT ( 126 , 50 ) ; 369*cdf0e10cSrcweir DropDown = TRUE ; 370*cdf0e10cSrcweir Hide = TRUE ; 371*cdf0e10cSrcweir Sort = TRUE ; 372*cdf0e10cSrcweir HScroll = TRUE ; 373*cdf0e10cSrcweir DDExtraWidth = TRUE ; 374*cdf0e10cSrcweir }; 375*cdf0e10cSrcweir String STR_INSIDE 376*cdf0e10cSrcweir { 377*cdf0e10cSrcweir Text [ en-US ] = "I~nner" ; 378*cdf0e10cSrcweir }; 379*cdf0e10cSrcweir String STR_OUTSIDE 380*cdf0e10cSrcweir { 381*cdf0e10cSrcweir Text [ en-US ] = "O~uter" ; 382*cdf0e10cSrcweir }; 383*cdf0e10cSrcweir String STR_QUERY_PRINTRANGE 384*cdf0e10cSrcweir { 385*cdf0e10cSrcweir Text [ en-US ] = "The margin settings are out of print range.\n\nDo you still want to apply these settings?"; 386*cdf0e10cSrcweir }; 387*cdf0e10cSrcweir}; 388*cdf0e10cSrcweirStringArray RID_SVXSTRARY_PAPERSIZE_STD 389*cdf0e10cSrcweir{ 390*cdf0e10cSrcweir ItemList [ en-US ] = 391*cdf0e10cSrcweir { 392*cdf0e10cSrcweir < "A6" ; PAPERSIZE_A6 ; > ; 393*cdf0e10cSrcweir < "A5" ; PAPERSIZE_A5 ; > ; 394*cdf0e10cSrcweir < "A4" ; PAPERSIZE_A4 ; > ; 395*cdf0e10cSrcweir < "A3" ; PAPERSIZE_A3 ; > ; 396*cdf0e10cSrcweir < "B6 (ISO)" ; PAPERSIZE_B6_ISO ; > ; 397*cdf0e10cSrcweir < "B5 (ISO)" ; PAPERSIZE_B5_ISO ; > ; 398*cdf0e10cSrcweir < "B4 (ISO)" ; PAPERSIZE_B4_ISO ; > ; 399*cdf0e10cSrcweir < "Letter" ; PAPERSIZE_LETTER ; > ; 400*cdf0e10cSrcweir < "Legal" ; PAPERSIZE_LEGAL ; > ; 401*cdf0e10cSrcweir < "Long Bond" ; PAPERSIZE_LEGAL2 ; > ; 402*cdf0e10cSrcweir < "Tabloid" ; PAPERSIZE_TABLOID ; > ; 403*cdf0e10cSrcweir < "B6 (JIS)" ; PAPERSIZE_B6_JIS ; > ; 404*cdf0e10cSrcweir < "B5 (JIS)" ; PAPERSIZE_B5_JIS ; > ; 405*cdf0e10cSrcweir < "B4 (JIS)" ; PAPERSIZE_B4_JIS ; > ; 406*cdf0e10cSrcweir < "16 Kai" ; PAPERSIZE_KAI16; > ; 407*cdf0e10cSrcweir < "32 Kai" ; PAPERSIZE_KAI32; > ; 408*cdf0e10cSrcweir < "Big 32 Kai" ; PAPERSIZE_KAI32BIG; > ; 409*cdf0e10cSrcweir < "User" ; PAPERSIZE_USER ; > ; 410*cdf0e10cSrcweir < "DL Envelope" ; PAPERSIZE_DL ; > ; 411*cdf0e10cSrcweir < "C6 Envelope" ; PAPERSIZE_C6 ; > ; 412*cdf0e10cSrcweir < "C6/5 Envelope" ; PAPERSIZE_C65 ; > ; 413*cdf0e10cSrcweir < "C5 Envelope" ; PAPERSIZE_C5 ; > ; 414*cdf0e10cSrcweir < "C4 Envelope" ; PAPERSIZE_C4 ; > ; 415*cdf0e10cSrcweir < "#6 3/4 (Personal) Envelope" ; PAPERSIZE_COM675; > ; 416*cdf0e10cSrcweir < "#8 (Monarch) Envelope" ; PAPERSIZE_MONARCH; > ; 417*cdf0e10cSrcweir < "#9 Envelope" ; PAPERSIZE_COM9; > ; 418*cdf0e10cSrcweir < "#10 Envelope" ; PAPERSIZE_COM10; > ; 419*cdf0e10cSrcweir < "#11 Envelope" ; PAPERSIZE_COM11; > ; 420*cdf0e10cSrcweir < "#12 Envelope" ; PAPERSIZE_COM12; > ; 421*cdf0e10cSrcweir }; 422*cdf0e10cSrcweir}; 423*cdf0e10cSrcweirStringArray RID_SVXSTRARY_PAPERSIZE_DRAW 424*cdf0e10cSrcweir{ 425*cdf0e10cSrcweir ItemList [ en-US ] = 426*cdf0e10cSrcweir { 427*cdf0e10cSrcweir < "A6" ; PAPERSIZE_A6 ; > ; 428*cdf0e10cSrcweir < "A5" ; PAPERSIZE_A5 ; > ; 429*cdf0e10cSrcweir < "A4" ; PAPERSIZE_A4 ; > ; 430*cdf0e10cSrcweir < "A3" ; PAPERSIZE_A3 ; > ; 431*cdf0e10cSrcweir < "A2" ; PAPERSIZE_A2 ; > ; 432*cdf0e10cSrcweir < "A1" ; PAPERSIZE_A1 ; > ; 433*cdf0e10cSrcweir < "A0" ; PAPERSIZE_A0 ; > ; 434*cdf0e10cSrcweir < "B6 (ISO)" ; PAPERSIZE_B6_ISO ; > ; 435*cdf0e10cSrcweir < "B5 (ISO)" ; PAPERSIZE_B5_ISO ; > ; 436*cdf0e10cSrcweir < "B4 (ISO)" ; PAPERSIZE_B4_ISO ; > ; 437*cdf0e10cSrcweir < "Letter" ; PAPERSIZE_LETTER ; > ; 438*cdf0e10cSrcweir < "Legal" ; PAPERSIZE_LEGAL ; > ; 439*cdf0e10cSrcweir < "Long Bond" ; PAPERSIZE_LEGAL2 ; > ; 440*cdf0e10cSrcweir < "Tabloid" ; PAPERSIZE_TABLOID ; > ; 441*cdf0e10cSrcweir < "B6 (JIS)" ; PAPERSIZE_B6_JIS ; > ; 442*cdf0e10cSrcweir < "B5 (JIS)" ; PAPERSIZE_B5_JIS ; > ; 443*cdf0e10cSrcweir < "B4 (JIS)" ; PAPERSIZE_B4_JIS ; > ; 444*cdf0e10cSrcweir < "16 Kai" ; PAPERSIZE_KAI16; > ; 445*cdf0e10cSrcweir < "32 Kai" ; PAPERSIZE_KAI32; > ; 446*cdf0e10cSrcweir < "Big 32 Kai" ; PAPERSIZE_KAI32BIG; > ; 447*cdf0e10cSrcweir < "User" ; PAPERSIZE_USER ; > ; 448*cdf0e10cSrcweir < "DL Envelope" ; PAPERSIZE_DL ; > ; 449*cdf0e10cSrcweir < "C6 Envelope" ; PAPERSIZE_C6 ; > ; 450*cdf0e10cSrcweir < "C6/5 Envelope" ; PAPERSIZE_C65 ; > ; 451*cdf0e10cSrcweir < "C5 Envelope" ; PAPERSIZE_C5 ; > ; 452*cdf0e10cSrcweir < "C4 Envelope" ; PAPERSIZE_C4 ; > ; 453*cdf0e10cSrcweir < "Dia Slide" ; PAPERSIZE_DIA ; > ; 454*cdf0e10cSrcweir < "Screen" ; PAPERSIZE_SCREEN ; > ; 455*cdf0e10cSrcweir }; 456*cdf0e10cSrcweir}; 457*cdf0e10cSrcweir // ********************************************************************** EOF 458*cdf0e10cSrcweir 459*cdf0e10cSrcweir 460*cdf0e10cSrcweir 461*cdf0e10cSrcweir 462*cdf0e10cSrcweir 463*cdf0e10cSrcweir 464*cdf0e10cSrcweir 465*cdf0e10cSrcweir 466*cdf0e10cSrcweir 467*cdf0e10cSrcweir 468*cdf0e10cSrcweir 469*cdf0e10cSrcweir 470*cdf0e10cSrcweir 471*cdf0e10cSrcweir 472*cdf0e10cSrcweir 473*cdf0e10cSrcweir 474*cdf0e10cSrcweir 475*cdf0e10cSrcweir 476*cdf0e10cSrcweir 477*cdf0e10cSrcweir 478*cdf0e10cSrcweir 479*cdf0e10cSrcweir 480*cdf0e10cSrcweir 481*cdf0e10cSrcweir 482*cdf0e10cSrcweir 483*cdf0e10cSrcweir 484*cdf0e10cSrcweir 485*cdf0e10cSrcweir 486*cdf0e10cSrcweir 487*cdf0e10cSrcweir 488*cdf0e10cSrcweir 489*cdf0e10cSrcweir 490*cdf0e10cSrcweir 491*cdf0e10cSrcweir 492*cdf0e10cSrcweir 493*cdf0e10cSrcweir 494*cdf0e10cSrcweir 495*cdf0e10cSrcweir 496*cdf0e10cSrcweir 497*cdf0e10cSrcweir 498*cdf0e10cSrcweir 499*cdf0e10cSrcweir 500*cdf0e10cSrcweir 501*cdf0e10cSrcweir 502*cdf0e10cSrcweir 503*cdf0e10cSrcweir 504*cdf0e10cSrcweir 505*cdf0e10cSrcweir 506*cdf0e10cSrcweir 507*cdf0e10cSrcweir 508*cdf0e10cSrcweir 509*cdf0e10cSrcweir 510*cdf0e10cSrcweir 511*cdf0e10cSrcweir 512*cdf0e10cSrcweir 513*cdf0e10cSrcweir 514*cdf0e10cSrcweir 515*cdf0e10cSrcweir 516*cdf0e10cSrcweir 517*cdf0e10cSrcweir 518*cdf0e10cSrcweir 519*cdf0e10cSrcweir 520*cdf0e10cSrcweir 521*cdf0e10cSrcweir 522*cdf0e10cSrcweir 523*cdf0e10cSrcweir 524*cdf0e10cSrcweir 525