From d32b3a714fe55892bdead03502c5a9b0e77fa61d Mon Sep 17 00:00:00 2001 From: Mathias Bauer Date: Sat, 31 Oct 2009 00:36:06 +0100 Subject: #i106421#: move svx/source/cui to cui --- cui/source/options/optmemory.src | 210 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 210 insertions(+) create mode 100644 cui/source/options/optmemory.src (limited to 'cui/source/options/optmemory.src') diff --git a/cui/source/options/optmemory.src b/cui/source/options/optmemory.src new file mode 100644 index 000000000000..fce14b15551d --- /dev/null +++ b/cui/source/options/optmemory.src @@ -0,0 +1,210 @@ +/************************************************************************* + * + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * Copyright 2008 by Sun Microsystems, Inc. + * + * OpenOffice.org - a multi-platform office productivity suite + * + * $RCSfile: optmemory.src,v $ + * $Revision: 1.11 $ + * + * This file is part of OpenOffice.org. + * + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. + * + * OpenOffice.org is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). + * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * + * for a copy of the LGPLv3 License. + * + ************************************************************************/ + + // include --------------------------------------------------------------- + +#include +#include "optmemory.hrc" +#include "helpid.hrc" + +TabPage OFA_TP_MEMORY +{ + HelpID = HID_OFA_TP_MEMORY ; + SVLook = TRUE ; + Size = MAP_APPFONT ( 260 , 185 ) ; + Hide = TRUE ; + FixedLine GB_UNDO + { + Pos = MAP_APPFONT( COL0, ROW0 ); + Size = MAP_APPFONT( WHOLE_WIDTH, RSC_CD_FIXEDLINE_HEIGHT ); + Text [ en-US ] = "Undo" ; + }; + FixedText FT_UNDO + { + Pos = MAP_APPFONT( COL1, OFFS_TEXTBOX_FIXEDTEXT( ROW1 ) ); + Size = MAP_APPFONT( WIDTH1, RSC_CD_FIXEDTEXT_HEIGHT ); + Text [ en-US ] = "Number of steps"; + }; + NumericField ED_UNDO + { + Border = TRUE ; + Pos = MAP_APPFONT( COL3, ROW1 ); + Size = MAP_APPFONT( WIDTH2, RSC_CD_TEXTBOX_HEIGHT ); + TabStop = TRUE ; + Left = TRUE ; + Repeat = TRUE ; + Spin = TRUE ; + Minimum = 1 ; + First = 1 ; + Maximum = 1000 ; + Value = 100 ; + Last = 100 ; + SpinSize = 1 ; + MaxTextLength = 4; + }; + FixedLine GB_GRAPHICCACHE + { + Pos = MAP_APPFONT( COL0, ROW2 ); + Size = MAP_APPFONT( WHOLE_WIDTH, RSC_CD_FIXEDLINE_HEIGHT ); + Text [ en-US ] = "Graphics cache"; + }; + FixedText FT_GRAPHICCACHE + { + Pos = MAP_APPFONT( COL1, OFFS_TEXTBOX_FIXEDTEXT( ROW3 ) ); + Size = MAP_APPFONT( WIDTH1, RSC_CD_FIXEDTEXT_HEIGHT ); + Text [ en-US ] = "Use for %PRODUCTNAME"; + }; + NumericField NF_GRAPHICCACHE + { + Border = TRUE ; + Pos = MAP_APPFONT( COL3, ROW3 ); + Size = MAP_APPFONT( WIDTH2, RSC_CD_TEXTBOX_HEIGHT ); + Minimum = 1; + Maximum = 256; + SpinSize = 1; + Spin = TRUE ; + Repeat = TRUE ; + }; + FixedText FT_GRAPHICCACHE_UNIT + { + Pos = MAP_APPFONT( COL5, OFFS_TEXTBOX_FIXEDTEXT( ROW3 ) ); + Size = MAP_APPFONT( WIDTH3, RSC_CD_FIXEDTEXT_HEIGHT ); + Text [ en-US ] = "MB"; + }; + FixedText FT_GRAPHICOBJECTCACHE + { + Pos = MAP_APPFONT( COL1, OFFS_TEXTBOX_FIXEDTEXT( ROW4 ) ); + Size = MAP_APPFONT( WIDTH1, RSC_CD_FIXEDTEXT_HEIGHT ); + Text [ en-US ] = "Memory per object" ; + }; + NumericField NF_GRAPHICOBJECTCACHE + { + Border = TRUE ; + Pos = MAP_APPFONT( COL3, ROW4 ); + Size = MAP_APPFONT( WIDTH2, RSC_CD_TEXTBOX_HEIGHT ); + Minimum = 10; + Maximum = 2560; + SpinSize = 1; + Spin = TRUE ; + Repeat = TRUE ; + DecimalDigits = 1; + }; + FixedText FT_GRAPHICOBJECTCACHE_UNIT + { + Pos = MAP_APPFONT( COL5, OFFS_TEXTBOX_FIXEDTEXT( ROW4 ) ); + Size = MAP_APPFONT( WIDTH3, RSC_CD_FIXEDTEXT_HEIGHT ); + Text [ en-US ] = "MB"; + }; + FixedText FT_GRAPHICOBJECTTIME + { + Pos = MAP_APPFONT( COL1, OFFS_TEXTBOX_FIXEDTEXT( ROW5 ) ); + Size = MAP_APPFONT( WIDTH1, RSC_CD_FIXEDTEXT_HEIGHT ); + Text [ en-US ] = "Remove from memory after"; + }; + TimeField TF_GRAPHICOBJECTTIME + { + Border = TRUE ; + Pos = MAP_APPFONT( COL3, ROW5 ); + Size = MAP_APPFONT( WIDTH2, RSC_CD_TEXTBOX_HEIGHT ); + TabStop = TRUE ; + Repeat = TRUE ; + Spin = TRUE ; + Value = Time + { + Minute = 10; + }; + Minimum = Time + { + Minute = 1; + }; + Maximum = Time + { + Hour = 23 ; + Minute = 59 ; + }; + First = Time + { + Minute = 10; + }; + Last = Time + { + Hour = 23 ; + Minute = 59 ; + }; + Format = TIMEF_NONE ; + Duration = TRUE ; + StrictFormat = TRUE ; + }; + FixedText FT_GRAPHICOBJECTTIME_UNIT + { + Pos = MAP_APPFONT( COL5, OFFS_TEXTBOX_FIXEDTEXT( ROW5 ) ); + Size = MAP_APPFONT( WIDTH3, RSC_CD_FIXEDTEXT_HEIGHT ); + Text [ en-US ] = "hh:mm"; + }; + FixedLine GB_OLECACHE + { + Pos = MAP_APPFONT( COL0, ROW6 ); + Size = MAP_APPFONT( WHOLE_WIDTH, RSC_CD_FIXEDLINE_HEIGHT ); + Text [ en-US ] = "Cache for inserted objects"; + }; + FixedText FT_OLECACHE + { + Pos = MAP_APPFONT( COL1, OFFS_TEXTBOX_FIXEDTEXT( ROW7 ) ); + Size = MAP_APPFONT( WIDTH1, RSC_CD_FIXEDTEXT_HEIGHT ); + Text [ en-US ] = "Number of objects"; + }; + NumericField NF_OLECACHE + { + Border = TRUE ; + Pos = MAP_APPFONT( COL3, ROW7 ); + Size = MAP_APPFONT( WIDTH2, RSC_CD_TEXTBOX_HEIGHT ); + Minimum = 1; + Maximum = 1024; + Spin = TRUE ; + Repeat = TRUE ; + }; + FixedLine FL_QUICKLAUNCH + { + Pos = MAP_APPFONT( COL0, ROW8 ); + Size = MAP_APPFONT( WHOLE_WIDTH, RSC_CD_FIXEDLINE_HEIGHT ); + Text [ en-US ] = "%PRODUCTNAME Quickstarter"; + }; + CheckBox CB_QUICKLAUNCH + { + Pos = MAP_APPFONT( COL1, ROW9 ); + Size = MAP_APPFONT( WHOLE_WIDTH - COL1, RSC_CD_CHECKBOX_HEIGHT ); + Text [ en-US ] = "Load %PRODUCTNAME during system start-up"; + }; + String STR_QUICKLAUNCH_UNX + { + Text[ en-US ] = "Enable systray Quickstarter"; + }; +}; + -- cgit