xref: /aoo42x/main/cui/source/dialogs/newtabledlg.src (revision cdf0e10c)
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
28#include "newtabledlg.hrc"
29#include "cuires.hrc"
30
31ModalDialog RID_SVX_NEWTABLE_DLG
32{
33    HelpID = "cui:ModalDialog:RID_SVX_NEWTABLE_DLG";
34	OutputSize = TRUE;
35	SVLook = TRUE ;
36	Moveable = TRUE ;
37	Size = MAP_APPFONT ( 181 , 6+15+15+15+14+6 ) ;
38	Text [ en-US ] = "Insert Table" ;
39
40	FixedText FT_COLUMNS
41	{
42        Pos = MAP_APPFONT ( 6 , 8 ) ;
43        Size = MAP_APPFONT ( 60 , 8 ) ;
44		Text [ en-US ] = "Number of columns:" ;
45	};
46    NumericField NF_COLUMNS
47	{
48        HelpID = "cui:NumericField:RID_SVX_NEWTABLE_DLG:NF_COLUMNS";
49		Border = TRUE ;
50        Pos = MAP_APPFONT ( 80 , 6 ) ;
51        Size = MAP_APPFONT ( 40 , 12 ) ;
52		TabStop = TRUE ;
53		Repeat = TRUE ;
54		Spin = TRUE ;
55        Minimum = 1 ;
56        Maximum = 75 ;
57        SpinSize = 1 ;
58        StrictFormat = TRUE ;
59	};
60	FixedText FT_ROWS
61	{
62        Pos = MAP_APPFONT ( 6 , 8+15 ) ;
63		Size = MAP_APPFONT ( 60 , 8 ) ;
64		Text [ en-US ] = "Number of rows:" ;
65	};
66    NumericField NF_ROWS
67	{
68        HelpID = "cui:NumericField:RID_SVX_NEWTABLE_DLG:NF_ROWS";
69		Border = TRUE ;
70        Pos = MAP_APPFONT ( 80 , 6+15 ) ;
71        Size = MAP_APPFONT ( 40 , 12 ) ;
72		TabStop = TRUE ;
73		Repeat = TRUE ;
74		Spin = TRUE ;
75        Minimum = 1 ;
76        Maximum = 75 ;
77        SpinSize = 1 ;
78        StrictFormat = TRUE ;
79	};
80	FixedLine FL_SEP
81	{
82		Pos = MAP_APPFONT ( 0 , 6+15+15 ) ;
83        Size = MAP_APPFONT ( 181 , 12 ) ;
84	};
85	HelpButton BTN_HELP
86	{
87		Pos = MAP_APPFONT ( 6 , 6+15+15+15 ) ;
88		Size = MAP_APPFONT ( 50 , 14 ) ;
89		TabStop = TRUE ;
90	};
91	OKButton BTN_OK
92	{
93		Pos = MAP_APPFONT ( 69 , 6+15+15+15 ) ;
94		Size = MAP_APPFONT ( 50 , 14 ) ;
95		TabStop = TRUE ;
96		DefButton = TRUE ;
97	};
98	CancelButton BTN_CANCEL
99	{
100		Pos = MAP_APPFONT ( 125 , 6+15+15+15 ) ;
101		Size = MAP_APPFONT ( 50 , 14 ) ;
102		TabStop = TRUE ;
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
136
137
138
139