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#include "HelpIds.hrc" 28*cdf0e10cSrcweir#include "tp_SeriesToAxis.hrc" 29*cdf0e10cSrcweir 30*cdf0e10cSrcweirTabPage TP_OPTIONS 31*cdf0e10cSrcweir{ 32*cdf0e10cSrcweir HelpID = "chart2:TabPage:TP_OPTIONS"; 33*cdf0e10cSrcweir Hide = TRUE ; 34*cdf0e10cSrcweir SVLook = TRUE ; 35*cdf0e10cSrcweir Size = MAP_APPFONT ( 260 , 185 ) ; 36*cdf0e10cSrcweir FixedLine 1 37*cdf0e10cSrcweir { 38*cdf0e10cSrcweir Pos = MAP_APPFONT ( 6 , 6 ) ; 39*cdf0e10cSrcweir Size = MAP_APPFONT ( 248 , 8 ) ; 40*cdf0e10cSrcweir Text [ en-US ] = "Align data series to"; 41*cdf0e10cSrcweir }; 42*cdf0e10cSrcweir RadioButton RBT_OPT_AXIS_1 43*cdf0e10cSrcweir { 44*cdf0e10cSrcweir HelpID = "chart2:RadioButton:TP_OPTIONS:RBT_OPT_AXIS_1"; 45*cdf0e10cSrcweir Pos = MAP_APPFONT ( 12 , 20 ) ; 46*cdf0e10cSrcweir Size = MAP_APPFONT ( 80 , 10 ) ; 47*cdf0e10cSrcweir TabStop = TRUE ; 48*cdf0e10cSrcweir Text [ en-US ] = "Primary Y axis"; 49*cdf0e10cSrcweir }; 50*cdf0e10cSrcweir RadioButton RBT_OPT_AXIS_2 51*cdf0e10cSrcweir { 52*cdf0e10cSrcweir HelpID = "chart2:RadioButton:TP_OPTIONS:RBT_OPT_AXIS_2"; 53*cdf0e10cSrcweir Pos = MAP_APPFONT ( 12 , 34 ) ; 54*cdf0e10cSrcweir Size = MAP_APPFONT ( 80 , 10 ) ; 55*cdf0e10cSrcweir TabStop = TRUE ; 56*cdf0e10cSrcweir Text [ en-US ] = "Secondary Y axis"; 57*cdf0e10cSrcweir }; 58*cdf0e10cSrcweir 59*cdf0e10cSrcweir FixedLine GB_BAR 60*cdf0e10cSrcweir { 61*cdf0e10cSrcweir Pos = MAP_APPFONT ( 6 , 50 ) ; 62*cdf0e10cSrcweir Size = MAP_APPFONT ( 248 , 8 ) ; 63*cdf0e10cSrcweir Text [ en-US ] = "Settings"; 64*cdf0e10cSrcweir }; 65*cdf0e10cSrcweir FixedText FT_OVERLAP 66*cdf0e10cSrcweir { 67*cdf0e10cSrcweir Pos = MAP_APPFONT ( 12 , 80 ) ; 68*cdf0e10cSrcweir Size = MAP_APPFONT ( 47 , 8 ) ; 69*cdf0e10cSrcweir Text [ en-US ] = "~Overlap"; 70*cdf0e10cSrcweir }; 71*cdf0e10cSrcweir 72*cdf0e10cSrcweir MetricField MT_OVERLAP 73*cdf0e10cSrcweir { 74*cdf0e10cSrcweir HelpID = "chart2:MetricField:TP_OPTIONS:MT_OVERLAP"; 75*cdf0e10cSrcweir Border = TRUE ; 76*cdf0e10cSrcweir Pos = MAP_APPFONT ( 63 , 78 ) ; 77*cdf0e10cSrcweir Size = MAP_APPFONT ( 40 , 12 ) ; 78*cdf0e10cSrcweir TabStop = TRUE ; 79*cdf0e10cSrcweir Repeat = TRUE ; 80*cdf0e10cSrcweir Spin = TRUE ; 81*cdf0e10cSrcweir Minimum = -100 ; 82*cdf0e10cSrcweir Maximum = 100 ; 83*cdf0e10cSrcweir StrictFormat = TRUE ; 84*cdf0e10cSrcweir Unit = FUNIT_CUSTOM ; 85*cdf0e10cSrcweir CustomUnitText = " %" ; 86*cdf0e10cSrcweir First = 1 ; 87*cdf0e10cSrcweir Last = 100 ; 88*cdf0e10cSrcweir SpinSize = 1 ; 89*cdf0e10cSrcweir DecimalDigits = 0 ; 90*cdf0e10cSrcweir }; 91*cdf0e10cSrcweir 92*cdf0e10cSrcweir FixedText FT_GAP 93*cdf0e10cSrcweir { 94*cdf0e10cSrcweir Pos = MAP_APPFONT ( 12 , 64 ) ; 95*cdf0e10cSrcweir Size = MAP_APPFONT ( 47 , 8 ) ; 96*cdf0e10cSrcweir Text [ en-US ] = "~Spacing"; 97*cdf0e10cSrcweir }; 98*cdf0e10cSrcweir 99*cdf0e10cSrcweir MetricField MT_GAP 100*cdf0e10cSrcweir { 101*cdf0e10cSrcweir HelpID = "chart2:MetricField:TP_OPTIONS:MT_GAP"; 102*cdf0e10cSrcweir Border = TRUE ; 103*cdf0e10cSrcweir Pos = MAP_APPFONT ( 63 , 62 ) ; 104*cdf0e10cSrcweir Size = MAP_APPFONT ( 40 , 12 ) ; 105*cdf0e10cSrcweir TabStop = TRUE ; 106*cdf0e10cSrcweir Repeat = TRUE ; 107*cdf0e10cSrcweir Spin = TRUE ; 108*cdf0e10cSrcweir Minimum = 0 ; 109*cdf0e10cSrcweir Maximum = 600 ; 110*cdf0e10cSrcweir StrictFormat = TRUE ; 111*cdf0e10cSrcweir Unit = FUNIT_CUSTOM ; 112*cdf0e10cSrcweir CustomUnitText = " %" ; 113*cdf0e10cSrcweir First = 1 ; 114*cdf0e10cSrcweir Last = 100 ; 115*cdf0e10cSrcweir SpinSize = 1 ; 116*cdf0e10cSrcweir DecimalDigits = 0 ; 117*cdf0e10cSrcweir }; 118*cdf0e10cSrcweir 119*cdf0e10cSrcweir CheckBox CB_CONNECTOR 120*cdf0e10cSrcweir { 121*cdf0e10cSrcweir HelpID = "chart2:CheckBox:TP_OPTIONS:CB_CONNECTOR"; 122*cdf0e10cSrcweir Pos = MAP_APPFONT ( 12 , 97 ) ; 123*cdf0e10cSrcweir Size = MAP_APPFONT ( 200 , 10 ) ; 124*cdf0e10cSrcweir TabStop = TRUE ; 125*cdf0e10cSrcweir Text [ en-US ] = "Connection lines"; 126*cdf0e10cSrcweir }; 127*cdf0e10cSrcweir 128*cdf0e10cSrcweir CheckBox CB_BARS_SIDE_BY_SIDE 129*cdf0e10cSrcweir { 130*cdf0e10cSrcweir HelpID = "chart2:CheckBox:TP_OPTIONS:CB_BARS_SIDE_BY_SIDE"; 131*cdf0e10cSrcweir Pos = MAP_APPFONT ( 12 , 97 ) ; 132*cdf0e10cSrcweir Size = MAP_APPFONT ( 200 , 10 ) ; 133*cdf0e10cSrcweir TabStop = TRUE ; 134*cdf0e10cSrcweir Text [ en-US ] = "Show ~bars side by side"; 135*cdf0e10cSrcweir }; 136*cdf0e10cSrcweir 137*cdf0e10cSrcweir FixedLine FL_PLOT_OPTIONS 138*cdf0e10cSrcweir { 139*cdf0e10cSrcweir Pos = MAP_APPFONT ( 6 , 113 ) ; 140*cdf0e10cSrcweir Size = MAP_APPFONT ( 248 , 8 ) ; 141*cdf0e10cSrcweir Text [ en-US ] = "Plot options"; 142*cdf0e10cSrcweir }; 143*cdf0e10cSrcweir 144*cdf0e10cSrcweir FixedText FT_MISSING_VALUES 145*cdf0e10cSrcweir { 146*cdf0e10cSrcweir Pos = MAP_APPFONT ( 12 , 127 ) ; 147*cdf0e10cSrcweir Size = MAP_APPFONT ( 80 , 8 ) ; 148*cdf0e10cSrcweir Text [ en-US ] = "Plot missing values"; 149*cdf0e10cSrcweir }; 150*cdf0e10cSrcweir 151*cdf0e10cSrcweir RadioButton RB_DONT_PAINT 152*cdf0e10cSrcweir { 153*cdf0e10cSrcweir HelpID = "chart2:RadioButton:TP_OPTIONS:RB_DONT_PAINT"; 154*cdf0e10cSrcweir Pos = MAP_APPFONT ( 82 , 127 ) ; 155*cdf0e10cSrcweir Size = MAP_APPFONT ( 80 , 10 ) ; 156*cdf0e10cSrcweir TabStop = TRUE ; 157*cdf0e10cSrcweir Text [ en-US ] = "~Leave gap"; 158*cdf0e10cSrcweir }; 159*cdf0e10cSrcweir 160*cdf0e10cSrcweir RadioButton RB_ASSUME_ZERO 161*cdf0e10cSrcweir { 162*cdf0e10cSrcweir HelpID = "chart2:RadioButton:TP_OPTIONS:RB_ASSUME_ZERO"; 163*cdf0e10cSrcweir Pos = MAP_APPFONT ( 82 , 141 ) ; 164*cdf0e10cSrcweir Size = MAP_APPFONT ( 80 , 10 ) ; 165*cdf0e10cSrcweir TabStop = TRUE ; 166*cdf0e10cSrcweir Text [ en-US ] = "~Assume zero"; 167*cdf0e10cSrcweir }; 168*cdf0e10cSrcweir 169*cdf0e10cSrcweir RadioButton RB_CONTINUE_LINE 170*cdf0e10cSrcweir { 171*cdf0e10cSrcweir HelpID = "chart2:RadioButton:TP_OPTIONS:RB_CONTINUE_LINE"; 172*cdf0e10cSrcweir Pos = MAP_APPFONT ( 82 , 155 ) ; 173*cdf0e10cSrcweir Size = MAP_APPFONT ( 80 , 10 ) ; 174*cdf0e10cSrcweir TabStop = TRUE ; 175*cdf0e10cSrcweir Text [ en-US ] = "~Continue line"; 176*cdf0e10cSrcweir }; 177*cdf0e10cSrcweir 178*cdf0e10cSrcweir CheckBox CB_INCLUDE_HIDDEN_CELLS 179*cdf0e10cSrcweir { 180*cdf0e10cSrcweir HelpID = "chart2:CheckBox:TP_OPTIONS:CB_INCLUDE_HIDDEN_CELLS"; 181*cdf0e10cSrcweir Pos = MAP_APPFONT ( 12 , 172 ) ; 182*cdf0e10cSrcweir Size = MAP_APPFONT ( 200 , 10 ) ; 183*cdf0e10cSrcweir TabStop = TRUE ; 184*cdf0e10cSrcweir Text [ en-US ] = "Include ~values from hidden cells"; 185*cdf0e10cSrcweir }; 186*cdf0e10cSrcweir}; 187