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 "newtabledlg.hrc"
25#include "cuires.hrc"
26
27ModalDialog RID_SVX_NEWTABLE_DLG
28{
29    HelpID = "cui:ModalDialog:RID_SVX_NEWTABLE_DLG";
30	OutputSize = TRUE;
31	SVLook = TRUE ;
32	Moveable = TRUE ;
33	Size = MAP_APPFONT ( 181 , 6+15+15+15+14+6 ) ;
34	Text [ en-US ] = "Insert Table" ;
35
36	FixedText FT_COLUMNS
37	{
38        Pos = MAP_APPFONT ( 6 , 8 ) ;
39        Size = MAP_APPFONT ( 60 , 8 ) ;
40		Text [ en-US ] = "Number of columns:" ;
41	};
42    NumericField NF_COLUMNS
43	{
44        HelpID = "cui:NumericField:RID_SVX_NEWTABLE_DLG:NF_COLUMNS";
45		Border = TRUE ;
46        Pos = MAP_APPFONT ( 80 , 6 ) ;
47        Size = MAP_APPFONT ( 40 , 12 ) ;
48		TabStop = TRUE ;
49		Repeat = TRUE ;
50		Spin = TRUE ;
51        Minimum = 1 ;
52        Maximum = 75 ;
53        SpinSize = 1 ;
54        StrictFormat = TRUE ;
55	};
56	FixedText FT_ROWS
57	{
58        Pos = MAP_APPFONT ( 6 , 8+15 ) ;
59		Size = MAP_APPFONT ( 60 , 8 ) ;
60		Text [ en-US ] = "Number of rows:" ;
61	};
62    NumericField NF_ROWS
63	{
64        HelpID = "cui:NumericField:RID_SVX_NEWTABLE_DLG:NF_ROWS";
65		Border = TRUE ;
66        Pos = MAP_APPFONT ( 80 , 6+15 ) ;
67        Size = MAP_APPFONT ( 40 , 12 ) ;
68		TabStop = TRUE ;
69		Repeat = TRUE ;
70		Spin = TRUE ;
71        Minimum = 1 ;
72        Maximum = 75 ;
73        SpinSize = 1 ;
74        StrictFormat = TRUE ;
75	};
76	FixedLine FL_SEP
77	{
78		Pos = MAP_APPFONT ( 0 , 6+15+15 ) ;
79        Size = MAP_APPFONT ( 181 , 12 ) ;
80	};
81	HelpButton BTN_HELP
82	{
83		Pos = MAP_APPFONT ( 6 , 6+15+15+15 ) ;
84		Size = MAP_APPFONT ( 50 , 14 ) ;
85		TabStop = TRUE ;
86	};
87	OKButton BTN_OK
88	{
89		Pos = MAP_APPFONT ( 69 , 6+15+15+15 ) ;
90		Size = MAP_APPFONT ( 50 , 14 ) ;
91		TabStop = TRUE ;
92		DefButton = TRUE ;
93	};
94	CancelButton BTN_CANCEL
95	{
96		Pos = MAP_APPFONT ( 125 , 6+15+15+15 ) ;
97		Size = MAP_APPFONT ( 50 , 14 ) ;
98		TabStop = TRUE ;
99	};
100};
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135