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 // include --------------------------------------------------------------- 28#include "sc.hrc" 29#include "dwfunctr.hrc" 30 // pragma ---------------------------------------------------------------- 31 32 // RID_SVXDLG_CALCFUNC -------------------------------------------------- 33DockingWindow FID_FUNCTION_BOX 34{ 35 Border = TRUE ; 36 Hide = TRUE ; 37 SVLook = TRUE ; 38 Sizeable = TRUE ; 39 Moveable = TRUE ; 40 Closeable = TRUE ; 41 Zoomable = TRUE ; 42 Dockable = TRUE ; 43 EnableResizing = TRUE ; 44 Size = MAP_APPFONT ( 130 , 160 ) ; 45 HelpId = HID_FUNCTION_BOX ; 46 ListBox CB_CAT 47 { 48 HelpID = "sc:ListBox:FID_FUNCTION_BOX:CB_CAT"; 49 Border = TRUE ; 50 Pos = MAP_APPFONT ( 20 , 4 ) ; 51 Size = MAP_APPFONT ( 56 , 80 ) ; 52 DropDown = TRUE ; 53 AutoSize = TRUE ; 54 TabStop = TRUE ; 55 DropDown = TRUE ; 56 AutoHScroll = TRUE ; 57 StringList [ en-US ] = 58 { 59 < "Last Used" ; Default ; > ; 60 < "All" ; Default ; > ; 61 < "Database" ; Default ; > ; 62 < "Date&Time" ; Default ; > ; 63 < "Financial" ; Default ; > ; 64 < "Information" ; Default ; > ; 65 < "Logical" ; Default ; > ; 66 < "Mathematical" ; Default ; > ; 67 < "Array" ; Default ; > ; 68 < "Statistical" ; Default ; > ; 69 < "Spreadsheet" ; Default ; > ; 70 < "Text" ; Default ; > ; 71 < "Add-in" ; Default ; > ; 72 }; 73 }; 74 ListBox DDLB_FUNC 75 { 76 HelpID = "sc:ListBox:FID_FUNCTION_BOX:DDLB_FUNC"; 77 Border = TRUE ; 78 Pos = MAP_APPFONT ( 103 , 4 ) ; 79 Size = MAP_APPFONT ( 56 , 80 ) ; 80 Hide = TRUE ; 81 TabStop = TRUE ; 82 DropDown = TRUE ; 83 AutoHScroll = TRUE ; 84 }; 85 ListBox LB_FUNC 86 { 87 HelpID = "sc:ListBox:FID_FUNCTION_BOX:LB_FUNC"; 88 Border = TRUE ; 89 Pos = MAP_APPFONT ( 3 , 19 ) ; 90 Size = MAP_APPFONT ( 72 , 90 ) ; 91 TabStop = TRUE ; 92 AutoHScroll = TRUE ; 93 }; 94 FixedText FI_FUNCDESC 95 { 96 WordBreak = TRUE ; 97 Border = TRUE ; 98 SVLook = TRUE ; 99 Pos = MAP_APPFONT ( 3 , 115 ) ; 100 Size = MAP_APPFONT ( 72 , 40 ) ; 101 }; 102 Control FT_SPLIT 103 { 104 Pos = MAP_APPFONT ( 3 , 110 ) ; 105 Size = MAP_APPFONT ( 72 , 3 ) ; 106 }; 107 ImageButton IMB_INSERT 108 { 109 HelpID = "sc:ImageButton:FID_FUNCTION_BOX:IMB_INSERT"; 110 Pos = MAP_APPFONT ( 3 , 4 ) ; 111 Size = MAP_APPFONT ( 13 , 13 ) ; 112 TabStop = TRUE ; 113 ButtonImage = Image 114 { 115 ImageBitmap = Bitmap 116 { 117 File = "fx.bmp" ; 118 }; 119 MaskColor = STD_MASKCOLOR; 120 }; 121 DefButton = TRUE ; 122 QuickHelpText [ en-US ] = "Insert Function into calculation sheet" ; 123 }; 124 Text [ en-US ] = "Functions" ; 125}; 126 // ********************************************************************** EOF 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160