1/************************************************************************* 2 * 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 * 5 * Copyright 2000, 2010 Oracle and/or its affiliates. 6 * 7 * OpenOffice.org - a multi-platform office productivity suite 8 * 9 * This file is part of OpenOffice.org. 10 * 11 * OpenOffice.org is free software: you can redistribute it and/or modify 12 * it under the terms of the GNU Lesser General Public License version 3 13 * only, as published by the Free Software Foundation. 14 * 15 * OpenOffice.org is distributed in the hope that it will be useful, 16 * but WITHOUT ANY WARRANTY; without even the implied warranty of 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 * GNU Lesser General Public License version 3 for more details 19 * (a copy is included in the LICENSE file that accompanied this code). 20 * 21 * You should have received a copy of the GNU Lesser General Public License 22 * version 3 along with OpenOffice.org. If not, see 23 * <http://www.openoffice.org/license.html> 24 * for a copy of the LGPLv3 License. 25 * 26 ************************************************************************/ 27 28 // include --------------------------------------------------------------- 29 30#include <cuires.hrc> 31#include "optmemory.hrc" 32#include "helpid.hrc" 33 34TabPage OFA_TP_MEMORY 35{ 36 HelpID = HID_OFA_TP_MEMORY ; 37 SVLook = TRUE ; 38 Size = MAP_APPFONT ( 260 , 185 ) ; 39 Hide = TRUE ; 40 FixedLine GB_UNDO 41 { 42 Pos = MAP_APPFONT( COL0, ROW0 ); 43 Size = MAP_APPFONT( WHOLE_WIDTH, RSC_CD_FIXEDLINE_HEIGHT ); 44 Text [ en-US ] = "Undo" ; 45 }; 46 FixedText FT_UNDO 47 { 48 Pos = MAP_APPFONT( COL1, OFFS_TEXTBOX_FIXEDTEXT( ROW1 ) ); 49 Size = MAP_APPFONT( WIDTH1, RSC_CD_FIXEDTEXT_HEIGHT ); 50 Text [ en-US ] = "Number of steps"; 51 }; 52 NumericField ED_UNDO 53 { 54 HelpID = "cui:NumericField:OFA_TP_MEMORY:ED_UNDO"; 55 Border = TRUE ; 56 Pos = MAP_APPFONT( COL3, ROW1 ); 57 Size = MAP_APPFONT( WIDTH2, RSC_CD_TEXTBOX_HEIGHT ); 58 TabStop = TRUE ; 59 Left = TRUE ; 60 Repeat = TRUE ; 61 Spin = TRUE ; 62 Minimum = 1 ; 63 First = 1 ; 64 Maximum = 1000 ; 65 Value = 100 ; 66 Last = 100 ; 67 SpinSize = 1 ; 68 MaxTextLength = 4; 69 }; 70 FixedLine GB_GRAPHICCACHE 71 { 72 Pos = MAP_APPFONT( COL0, ROW2 ); 73 Size = MAP_APPFONT( WHOLE_WIDTH, RSC_CD_FIXEDLINE_HEIGHT ); 74 Text [ en-US ] = "Graphics cache"; 75 }; 76 FixedText FT_GRAPHICCACHE 77 { 78 Pos = MAP_APPFONT( COL1, OFFS_TEXTBOX_FIXEDTEXT( ROW3 ) ); 79 Size = MAP_APPFONT( WIDTH1, RSC_CD_FIXEDTEXT_HEIGHT ); 80 Text [ en-US ] = "Use for %PRODUCTNAME"; 81 }; 82 NumericField NF_GRAPHICCACHE 83 { 84 HelpID = "cui:NumericField:OFA_TP_MEMORY:NF_GRAPHICCACHE"; 85 Border = TRUE ; 86 Pos = MAP_APPFONT( COL3, ROW3 ); 87 Size = MAP_APPFONT( WIDTH2, RSC_CD_TEXTBOX_HEIGHT ); 88 Minimum = 1; 89 Maximum = 256; 90 SpinSize = 1; 91 Spin = TRUE ; 92 Repeat = TRUE ; 93 }; 94 FixedText FT_GRAPHICCACHE_UNIT 95 { 96 Pos = MAP_APPFONT( COL5, OFFS_TEXTBOX_FIXEDTEXT( ROW3 ) ); 97 Size = MAP_APPFONT( WIDTH3, RSC_CD_FIXEDTEXT_HEIGHT ); 98 Text [ en-US ] = "MB"; 99 }; 100 FixedText FT_GRAPHICOBJECTCACHE 101 { 102 Pos = MAP_APPFONT( COL1, OFFS_TEXTBOX_FIXEDTEXT( ROW4 ) ); 103 Size = MAP_APPFONT( WIDTH1, RSC_CD_FIXEDTEXT_HEIGHT ); 104 Text [ en-US ] = "Memory per object" ; 105 }; 106 NumericField NF_GRAPHICOBJECTCACHE 107 { 108 HelpID = "cui:NumericField:OFA_TP_MEMORY:NF_GRAPHICOBJECTCACHE"; 109 Border = TRUE ; 110 Pos = MAP_APPFONT( COL3, ROW4 ); 111 Size = MAP_APPFONT( WIDTH2, RSC_CD_TEXTBOX_HEIGHT ); 112 Minimum = 10; 113 Maximum = 2560; 114 SpinSize = 1; 115 Spin = TRUE ; 116 Repeat = TRUE ; 117 DecimalDigits = 1; 118 }; 119 FixedText FT_GRAPHICOBJECTCACHE_UNIT 120 { 121 Pos = MAP_APPFONT( COL5, OFFS_TEXTBOX_FIXEDTEXT( ROW4 ) ); 122 Size = MAP_APPFONT( WIDTH3, RSC_CD_FIXEDTEXT_HEIGHT ); 123 Text [ en-US ] = "MB"; 124 }; 125 FixedText FT_GRAPHICOBJECTTIME 126 { 127 Pos = MAP_APPFONT( COL1, OFFS_TEXTBOX_FIXEDTEXT( ROW5 ) ); 128 Size = MAP_APPFONT( WIDTH1, RSC_CD_FIXEDTEXT_HEIGHT ); 129 Text [ en-US ] = "Remove from memory after"; 130 }; 131 TimeField TF_GRAPHICOBJECTTIME 132 { 133 HelpID = "cui:TimeField:OFA_TP_MEMORY:TF_GRAPHICOBJECTTIME"; 134 Border = TRUE ; 135 Pos = MAP_APPFONT( COL3, ROW5 ); 136 Size = MAP_APPFONT( WIDTH2, RSC_CD_TEXTBOX_HEIGHT ); 137 TabStop = TRUE ; 138 Repeat = TRUE ; 139 Spin = TRUE ; 140 Value = Time 141 { 142 Minute = 10; 143 }; 144 Minimum = Time 145 { 146 Minute = 1; 147 }; 148 Maximum = Time 149 { 150 Hour = 23 ; 151 Minute = 59 ; 152 }; 153 First = Time 154 { 155 Minute = 10; 156 }; 157 Last = Time 158 { 159 Hour = 23 ; 160 Minute = 59 ; 161 }; 162 Format = TIMEF_NONE ; 163 Duration = TRUE ; 164 StrictFormat = TRUE ; 165 }; 166 FixedText FT_GRAPHICOBJECTTIME_UNIT 167 { 168 Pos = MAP_APPFONT( COL5, OFFS_TEXTBOX_FIXEDTEXT( ROW5 ) ); 169 Size = MAP_APPFONT( WIDTH3, RSC_CD_FIXEDTEXT_HEIGHT ); 170 Text [ en-US ] = "hh:mm"; 171 }; 172 FixedLine GB_OLECACHE 173 { 174 Pos = MAP_APPFONT( COL0, ROW6 ); 175 Size = MAP_APPFONT( WHOLE_WIDTH, RSC_CD_FIXEDLINE_HEIGHT ); 176 Text [ en-US ] = "Cache for inserted objects"; 177 }; 178 FixedText FT_OLECACHE 179 { 180 Pos = MAP_APPFONT( COL1, OFFS_TEXTBOX_FIXEDTEXT( ROW7 ) ); 181 Size = MAP_APPFONT( WIDTH1, RSC_CD_FIXEDTEXT_HEIGHT ); 182 Text [ en-US ] = "Number of objects"; 183 }; 184 NumericField NF_OLECACHE 185 { 186 HelpID = "cui:NumericField:OFA_TP_MEMORY:NF_OLECACHE"; 187 Border = TRUE ; 188 Pos = MAP_APPFONT( COL3, ROW7 ); 189 Size = MAP_APPFONT( WIDTH2, RSC_CD_TEXTBOX_HEIGHT ); 190 Minimum = 1; 191 Maximum = 1024; 192 Spin = TRUE ; 193 Repeat = TRUE ; 194 }; 195 FixedLine FL_QUICKLAUNCH 196 { 197 Pos = MAP_APPFONT( COL0, ROW8 ); 198 Size = MAP_APPFONT( WHOLE_WIDTH, RSC_CD_FIXEDLINE_HEIGHT ); 199 Text [ en-US ] = "%PRODUCTNAME Quickstarter"; 200 }; 201 CheckBox CB_QUICKLAUNCH 202 { 203 HelpID = "cui:CheckBox:OFA_TP_MEMORY:CB_QUICKLAUNCH"; 204 Pos = MAP_APPFONT( COL1, ROW9 ); 205 Size = MAP_APPFONT( WHOLE_WIDTH - COL1, RSC_CD_CHECKBOX_HEIGHT ); 206 Text [ en-US ] = "Load %PRODUCTNAME during system start-up"; 207 }; 208 String STR_QUICKLAUNCH_UNX 209 { 210 Text[ en-US ] = "Enable systray Quickstarter"; 211 }; 212}; 213 214