xref: /aoo4110/main/sc/source/ui/formdlg/dwfunctr.src (revision b1cdbd2c)
1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements.  See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership.  The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance
9 * with the License.  You may obtain a copy of the License at
10 *
11 *   http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing,
14 * software distributed under the License is distributed on an
15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 * KIND, either express or implied.  See the License for the
17 * specific language governing permissions and limitations
18 * under the License.
19 *
20 *************************************************************/
21
22
23 // include ---------------------------------------------------------------
24#include "sc.hrc"
25#include "dwfunctr.hrc"
26 // pragma ----------------------------------------------------------------
27
28 // RID_SVXDLG_CALCFUNC --------------------------------------------------
29DockingWindow FID_FUNCTION_BOX
30{
31	Border = TRUE ;
32	Hide = TRUE ;
33	SVLook = TRUE ;
34	Sizeable = TRUE ;
35	Moveable = TRUE ;
36	Closeable = TRUE ;
37	Zoomable = TRUE ;
38	Dockable = TRUE ;
39	EnableResizing = TRUE ;
40	Size = MAP_APPFONT ( 130 , 160 ) ;
41	HelpId = HID_FUNCTION_BOX ;
42	ListBox CB_CAT
43	{
44	    HelpID = "sc:ListBox:FID_FUNCTION_BOX:CB_CAT";
45		Border = TRUE ;
46		Pos = MAP_APPFONT ( 20 , 4 ) ;
47		Size = MAP_APPFONT ( 56 , 80 ) ;
48		DropDown = TRUE ;
49		AutoSize = TRUE ;
50		TabStop = TRUE ;
51		DropDown = TRUE ;
52		AutoHScroll = TRUE ;
53		StringList [ en-US ] =
54		{
55			< "Last Used" ; Default ; > ;
56			< "All" ; Default ; > ;
57			< "Database" ; Default ; > ;
58			< "Date&Time" ; Default ; > ;
59			< "Financial" ; Default ; > ;
60			< "Information" ; Default ; > ;
61			< "Logical" ; Default ; > ;
62			< "Mathematical" ; Default ; > ;
63			< "Array" ; Default ; > ;
64			< "Statistical" ; Default ; > ;
65			< "Spreadsheet" ; Default ; > ;
66			< "Text" ; Default ; > ;
67			< "Add-in" ; Default ; > ;
68		};
69	};
70	ListBox DDLB_FUNC
71	{
72	    HelpID = "sc:ListBox:FID_FUNCTION_BOX:DDLB_FUNC";
73		Border = TRUE ;
74		Pos = MAP_APPFONT ( 103 , 4 ) ;
75		Size = MAP_APPFONT ( 56 , 80 ) ;
76		Hide = TRUE ;
77		TabStop = TRUE ;
78		DropDown = TRUE ;
79		AutoHScroll = TRUE ;
80	};
81	ListBox LB_FUNC
82	{
83	    HelpID = "sc:ListBox:FID_FUNCTION_BOX:LB_FUNC";
84		Border = TRUE ;
85		Pos = MAP_APPFONT ( 3 , 19 ) ;
86		Size = MAP_APPFONT ( 72 , 90 ) ;
87		TabStop = TRUE ;
88		AutoHScroll = TRUE ;
89	};
90	FixedText FI_FUNCDESC
91	{
92		WordBreak = TRUE ;
93		Border = TRUE ;
94		SVLook = TRUE ;
95		Pos = MAP_APPFONT ( 3 , 115 ) ;
96		Size = MAP_APPFONT ( 72 , 40 ) ;
97	};
98	Control FT_SPLIT
99	{
100		Pos = MAP_APPFONT ( 3 , 110 ) ;
101		Size = MAP_APPFONT ( 72 , 3 ) ;
102	};
103	ImageButton IMB_INSERT
104	{
105	    HelpID = "sc:ImageButton:FID_FUNCTION_BOX:IMB_INSERT";
106		Pos = MAP_APPFONT ( 3 , 4 ) ;
107		Size = MAP_APPFONT ( 13 , 13 ) ;
108		TabStop = TRUE ;
109		ButtonImage = Image
110		{
111			ImageBitmap = Bitmap
112			{
113				File = "fx.bmp" ;
114			};
115            MaskColor = STD_MASKCOLOR;
116		};
117		DefButton = TRUE ;
118		QuickHelpText [ en-US ] = "Insert Function into calculation sheet" ;
119	};
120	Text [ en-US ] = "Functions" ;
121};
122 // ********************************************************************** EOF
123
124
125
126
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