xref: /trunk/main/sc/source/ui/miscdlgs/instbdlg.src (revision 82177cdb)
1*82177cdbSAndrew Rist/**************************************************************
2cdf0e10cSrcweir *
3*82177cdbSAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
4*82177cdbSAndrew Rist * or more contributor license agreements.  See the NOTICE file
5*82177cdbSAndrew Rist * distributed with this work for additional information
6*82177cdbSAndrew Rist * regarding copyright ownership.  The ASF licenses this file
7*82177cdbSAndrew Rist * to you under the Apache License, Version 2.0 (the
8*82177cdbSAndrew Rist * "License"); you may not use this file except in compliance
9*82177cdbSAndrew Rist * with the License.  You may obtain a copy of the License at
10*82177cdbSAndrew Rist *
11*82177cdbSAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
12*82177cdbSAndrew Rist *
13*82177cdbSAndrew Rist * Unless required by applicable law or agreed to in writing,
14*82177cdbSAndrew Rist * software distributed under the License is distributed on an
15*82177cdbSAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*82177cdbSAndrew Rist * KIND, either express or implied.  See the License for the
17*82177cdbSAndrew Rist * specific language governing permissions and limitations
18*82177cdbSAndrew Rist * under the License.
19*82177cdbSAndrew Rist *
20*82177cdbSAndrew Rist *************************************************************/
21*82177cdbSAndrew Rist
22*82177cdbSAndrew Rist
23cdf0e10cSrcweir
24cdf0e10cSrcweir#include "instbdlg.hrc"
25cdf0e10cSrcweirModalDialog RID_SCDLG_INSERT_TABLE
26cdf0e10cSrcweir{
27cdf0e10cSrcweir    HelpID = "sc:ModalDialog:RID_SCDLG_INSERT_TABLE";
28cdf0e10cSrcweir	OutputSize = TRUE ;
29cdf0e10cSrcweir	SVLook = TRUE ;
30cdf0e10cSrcweir	Size = MAP_APPFONT ( 274 , 190 ) ;
31cdf0e10cSrcweir	/* ### ACHTUNG: Neuer Text in Resource? Tabelle einf�gen : Tabelle einf�gen */
32cdf0e10cSrcweir	Text [ en-US ] = "Insert Sheet" ;
33cdf0e10cSrcweir	Moveable = TRUE ;
34cdf0e10cSrcweir	Closeable = TRUE ;
35cdf0e10cSrcweir	OKButton BTN_OK
36cdf0e10cSrcweir	{
37cdf0e10cSrcweir        Pos = MAP_APPFONT ( 218 , 6 ) ;
38cdf0e10cSrcweir		Size = MAP_APPFONT ( 50 , 14 ) ;
39cdf0e10cSrcweir		DefButton = TRUE ;
40cdf0e10cSrcweir	};
41cdf0e10cSrcweir	CancelButton BTN_CANCEL
42cdf0e10cSrcweir	{
43cdf0e10cSrcweir        Pos = MAP_APPFONT ( 218 , 23 ) ;
44cdf0e10cSrcweir		Size = MAP_APPFONT ( 50 , 14 ) ;
45cdf0e10cSrcweir	};
46cdf0e10cSrcweir	HelpButton BTN_HELP
47cdf0e10cSrcweir	{
48cdf0e10cSrcweir        Pos = MAP_APPFONT ( 218 , 43 ) ;
49cdf0e10cSrcweir		Size = MAP_APPFONT ( 50 , 14 ) ;
50cdf0e10cSrcweir	};
51cdf0e10cSrcweir	FixedLine FL_POSITION
52cdf0e10cSrcweir	{
53cdf0e10cSrcweir        Pos = MAP_APPFONT ( 6 , 3 ) ;
54cdf0e10cSrcweir		Size = MAP_APPFONT ( 206 , 8 ) ;
55cdf0e10cSrcweir		Text [ en-US ] = "Position" ;
56cdf0e10cSrcweir	};
57cdf0e10cSrcweir	RadioButton RB_BEFORE
58cdf0e10cSrcweir	{
59cdf0e10cSrcweir	    HelpID = "sc:RadioButton:RID_SCDLG_INSERT_TABLE:RB_BEFORE";
60cdf0e10cSrcweir        Pos = MAP_APPFONT ( 12 , 14 ) ;
61cdf0e10cSrcweir        Size = MAP_APPFONT ( 197 , 10 ) ;
62cdf0e10cSrcweir		TabStop = TRUE ;
63cdf0e10cSrcweir		Text [ en-US ] = "B~efore current sheet" ;
64cdf0e10cSrcweir	};
65cdf0e10cSrcweir	RadioButton RB_BEHIND
66cdf0e10cSrcweir	{
67cdf0e10cSrcweir	    HelpID = "sc:RadioButton:RID_SCDLG_INSERT_TABLE:RB_BEHIND";
68cdf0e10cSrcweir		Pos = MAP_APPFONT ( 12 , 28 ) ;
69cdf0e10cSrcweir        Size = MAP_APPFONT ( 197 , 10 ) ;
70cdf0e10cSrcweir		TabStop = TRUE ;
71cdf0e10cSrcweir		Text [ en-US ] = "~After current sheet" ;
72cdf0e10cSrcweir	};
73cdf0e10cSrcweir	FixedLine FL_TABLE
74cdf0e10cSrcweir	{
75cdf0e10cSrcweir        Pos = MAP_APPFONT ( 6 , 44 ) ;
76cdf0e10cSrcweir		Size = MAP_APPFONT ( 206 , 8 ) ;
77cdf0e10cSrcweir		Text [ en-US ] = "Sheet" ;
78cdf0e10cSrcweir	};
79cdf0e10cSrcweir	RadioButton RB_NEW
80cdf0e10cSrcweir	{
81cdf0e10cSrcweir	    HelpID = "sc:RadioButton:RID_SCDLG_INSERT_TABLE:RB_NEW";
82cdf0e10cSrcweir        Pos = MAP_APPFONT ( 12 , 55 ) ;
83cdf0e10cSrcweir        Size = MAP_APPFONT ( 197 , 10 ) ;
84cdf0e10cSrcweir		Text [ en-US ] = "~New sheet" ;
85cdf0e10cSrcweir	};
86cdf0e10cSrcweir	FixedText FT_COUNT
87cdf0e10cSrcweir	{
88cdf0e10cSrcweir        Pos = MAP_APPFONT ( 20 , 68 ) ;
89cdf0e10cSrcweir        Size = MAP_APPFONT ( 52 , 8 ) ;
90cdf0e10cSrcweir		Text [ en-US ] = "N~o. of sheets" ;
91cdf0e10cSrcweir	};
92cdf0e10cSrcweir	NumericField NF_COUNT
93cdf0e10cSrcweir	{
94cdf0e10cSrcweir	    HelpID = "sc:NumericField:RID_SCDLG_INSERT_TABLE:NF_COUNT";
95cdf0e10cSrcweir		Border = TRUE ;
96cdf0e10cSrcweir        Pos = MAP_APPFONT ( 72 , 66 ) ;
97cdf0e10cSrcweir        Size = MAP_APPFONT ( 30 , 12 ) ;
98cdf0e10cSrcweir		TabStop = TRUE ;
99cdf0e10cSrcweir		Spin = TRUE ;
100cdf0e10cSrcweir        SpinSize = 1 ;
101cdf0e10cSrcweir		Repeat = TRUE ;
102cdf0e10cSrcweir        Minimum = 1 ;
103cdf0e10cSrcweir		Maximum = 256 ;
104cdf0e10cSrcweir	};
105cdf0e10cSrcweir	FixedText FT_NAME
106cdf0e10cSrcweir	{
107cdf0e10cSrcweir        Pos = MAP_APPFONT ( 20 , 84 ) ;
108cdf0e10cSrcweir        Size = MAP_APPFONT ( 50 , 8 ) ;
109cdf0e10cSrcweir		Text [ en-US ] = "Na~me";
110cdf0e10cSrcweir	};
111cdf0e10cSrcweir	Edit ED_TABNAME
112cdf0e10cSrcweir	{
113cdf0e10cSrcweir	    HelpID = "sc:Edit:RID_SCDLG_INSERT_TABLE:ED_TABNAME";
114cdf0e10cSrcweir		Border = TRUE ;
115cdf0e10cSrcweir        Pos = MAP_APPFONT ( 72 , 82 ) ;
116cdf0e10cSrcweir        Size = MAP_APPFONT ( 137 , 12 ) ;
117cdf0e10cSrcweir	};
118cdf0e10cSrcweir	RadioButton RB_FROMFILE
119cdf0e10cSrcweir	{
120cdf0e10cSrcweir	    HelpID = "sc:RadioButton:RID_SCDLG_INSERT_TABLE:RB_FROMFILE";
121cdf0e10cSrcweir		Pos = MAP_APPFONT ( 12 , 100 ) ;
122cdf0e10cSrcweir        Size = MAP_APPFONT ( 197 , 10 ) ;
123cdf0e10cSrcweir		Text [ en-US ] = "~From file" ;
124cdf0e10cSrcweir	};
125cdf0e10cSrcweir	MultiListBox LB_TABLES
126cdf0e10cSrcweir	{
127cdf0e10cSrcweir	    HelpID = "sc:MultiListBox:RID_SCDLG_INSERT_TABLE:LB_TABLES";
128cdf0e10cSrcweir		SimpleMode = TRUE ;
129cdf0e10cSrcweir		Border = TRUE ;
130cdf0e10cSrcweir        Pos = MAP_APPFONT ( 20 , 113 ) ;
131cdf0e10cSrcweir        Size = MAP_APPFONT ( 123 , 59 ) ;
132cdf0e10cSrcweir		AutoHScroll = TRUE ;
133cdf0e10cSrcweir	};
134cdf0e10cSrcweir	PushButton BTN_BROWSE
135cdf0e10cSrcweir	{
136cdf0e10cSrcweir	    HelpID = "sc:PushButton:RID_SCDLG_INSERT_TABLE:BTN_BROWSE";
137cdf0e10cSrcweir        Pos = MAP_APPFONT ( 149 , 113 ) ;
138cdf0e10cSrcweir		Size = MAP_APPFONT ( 60 , 14 ) ;
139cdf0e10cSrcweir		Text [ en-US ] = "~Browse..." ;
140cdf0e10cSrcweir	};
141cdf0e10cSrcweir	CheckBox CB_LINK
142cdf0e10cSrcweir	{
143cdf0e10cSrcweir	    HelpID = "sc:CheckBox:RID_SCDLG_INSERT_TABLE:CB_LINK";
144cdf0e10cSrcweir        Pos = MAP_APPFONT ( 149 , 131 ) ;
145cdf0e10cSrcweir        Size = MAP_APPFONT ( 60 , 10 ) ;
146cdf0e10cSrcweir		/* ### ACHTUNG: Neuer Text in Resource? Ver~kn�pfen : Ver~kn�pfen */
147cdf0e10cSrcweir		Text [ en-US ] = "Lin~k" ;
148cdf0e10cSrcweir	};
149cdf0e10cSrcweir	FixedText FT_PATH
150cdf0e10cSrcweir	{
151cdf0e10cSrcweir        Pos = MAP_APPFONT ( 20 , 176 ) ;
152cdf0e10cSrcweir        Size = MAP_APPFONT ( 192 , 8 ) ;
153cdf0e10cSrcweir	};
154cdf0e10cSrcweir};
155cdf0e10cSrcweir
156cdf0e10cSrcweir
157cdf0e10cSrcweir
158cdf0e10cSrcweir
159cdf0e10cSrcweir
160cdf0e10cSrcweir
161cdf0e10cSrcweir
162cdf0e10cSrcweir
163cdf0e10cSrcweir
164cdf0e10cSrcweir
165cdf0e10cSrcweir
166cdf0e10cSrcweir
167cdf0e10cSrcweir
168cdf0e10cSrcweir
169cdf0e10cSrcweir
170cdf0e10cSrcweir
171cdf0e10cSrcweir
172cdf0e10cSrcweir
173cdf0e10cSrcweir
174cdf0e10cSrcweir
175cdf0e10cSrcweir
176cdf0e10cSrcweir
177cdf0e10cSrcweir
178cdf0e10cSrcweir
179cdf0e10cSrcweir
180cdf0e10cSrcweir
181cdf0e10cSrcweir
182cdf0e10cSrcweir
183cdf0e10cSrcweir
184cdf0e10cSrcweir
185cdf0e10cSrcweir
186cdf0e10cSrcweir
187cdf0e10cSrcweir
188cdf0e10cSrcweir
189cdf0e10cSrcweir
190cdf0e10cSrcweir
191