xref: /aoo4110/main/sc/source/ui/src/tabopdlg.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
24#include "tabopdlg.hrc"
25ModelessDialog RID_SCDLG_TABOP
26{
27	OutputSize = TRUE ;
28	HelpId = CMD_SID_OPENDLG_TABOP ;
29	Hide = TRUE ;
30	SVLook = TRUE ;
31    Size = MAP_APPFONT ( 240 , 64 ) ;
32	Text [ en-US ] = "Multiple operations" ;
33	Moveable = TRUE ;
34	Closeable = FALSE ;
35	FixedText FT_FORMULARANGE
36	{
37		Pos = MAP_APPFONT ( 12 , 16 ) ;
38        Size = MAP_APPFONT ( 68 , 8 ) ;
39		Text [ en-US ] = "~Formulas" ;
40	};
41	Edit ED_FORMULARANGE
42	{
43	    HelpID = "sc:Edit:RID_SCDLG_TABOP:ED_FORMULARANGE";
44		Border = TRUE ;
45        Pos = MAP_APPFONT ( 82 , 14 ) ;
46        Size = MAP_APPFONT ( 79 , 12 ) ;
47	};
48	ImageButton RB_FORMULARANGE
49	{
50	    HelpID = "sc:ImageButton:RID_SCDLG_TABOP:RB_FORMULARANGE";
51        Pos = MAP_APPFONT ( 163 , 13 ) ;
52		Size = MAP_APPFONT ( 13 , 15 ) ;
53		TabStop = FALSE ;
54		QuickHelpText [ en-US ] = "Shrink" ;
55	};
56	FixedText FT_ROWCELL
57	{
58        Pos = MAP_APPFONT ( 12 , 32 ) ;
59        Size = MAP_APPFONT ( 70 , 8 ) ;
60		Text [ en-US ] = "~Row input cell" ;
61	};
62	Edit ED_ROWCELL
63	{
64	    HelpID = "sc:Edit:RID_SCDLG_TABOP:ED_ROWCELL";
65		Border = TRUE ;
66        Pos = MAP_APPFONT ( 82 , 30 ) ;
67        Size = MAP_APPFONT ( 79 , 12 ) ;
68	};
69	ImageButton RB_ROWCELL
70	{
71	    HelpID = "sc:ImageButton:RID_SCDLG_TABOP:RB_ROWCELL";
72        Pos = MAP_APPFONT ( 163 , 29 ) ;
73		Size = MAP_APPFONT ( 13 , 15 ) ;
74		TabStop = FALSE ;
75		QuickHelpText [ en-US ] = "Shrink" ;
76	};
77	FixedText FT_COLCELL
78	{
79        Pos = MAP_APPFONT ( 12 , 48 ) ;
80        Size = MAP_APPFONT ( 70 , 8 ) ;
81		Text [ en-US ] = "~Column input cell" ;
82	};
83	Edit ED_COLCELL
84	{
85	    HelpID = "sc:Edit:RID_SCDLG_TABOP:ED_COLCELL";
86		Border = TRUE ;
87        Pos = MAP_APPFONT ( 82 , 46 ) ;
88        Size = MAP_APPFONT ( 79 , 12 ) ;
89	};
90	ImageButton RB_COLCELL
91	{
92	    HelpID = "sc:ImageButton:RID_SCDLG_TABOP:RB_COLCELL";
93        Pos = MAP_APPFONT ( 163 , 45 ) ;
94		Size = MAP_APPFONT ( 13 , 15 ) ;
95		TabStop = FALSE ;
96		QuickHelpText [ en-US ] = "Shrink" ;
97	};
98    FixedLine FL_VARIABLES
99	{
100		Pos = MAP_APPFONT ( 6 , 3 ) ;
101        Size = MAP_APPFONT ( 172 , 8 ) ;
102		Text [ en-US ] = "Default settings" ;
103	};
104	OKButton BTN_OK
105	{
106        Pos = MAP_APPFONT ( 184 , 6 ) ;
107		Size = MAP_APPFONT ( 50 , 14 ) ;
108		DefButton = TRUE ;
109	};
110	CancelButton BTN_CANCEL
111	{
112        Pos = MAP_APPFONT ( 184 , 23 ) ;
113		Size = MAP_APPFONT ( 50 , 14 ) ;
114	};
115	HelpButton BTN_HELP
116	{
117        Pos = MAP_APPFONT ( 184 , 43 ) ;
118		Size = MAP_APPFONT ( 50 , 14 ) ;
119	};
120	String STR_NOFORMULA
121	{
122		Text [ en-US ] = "No formula specified." ;
123	};
124	String STR_NOCOLROW
125	{
126		Text [ en-US ] = "Neither row or column specified." ;
127	};
128	String STR_WRONGFORMULA
129	{
130		Text [ en-US ] = "Undefined name or range." ;
131	};
132	String STR_WRONGROWCOL
133	{
134		Text [ en-US ] = "Undefined name or wrong cell reference." ;
135	};
136	String STR_NOCOLFORMULA
137	{
138		Text [ en-US ] = "Formulas don't form a column." ;
139	};
140	String STR_NOROWFORMULA
141	{
142		Text [ en-US ] = "Formulas don't form a row." ;
143	};
144};
145