xref: /trunk/main/sw/source/ui/table/rowht.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 "table.hrc"
29#include "rowht.hrc"
30#include "cmdid.h"
31#include "helpid.h"
32ModalDialog DLG_ROW_HEIGHT
33{
34	HelpID = CMD_FN_TABLE_SET_ROW_HEIGHT ;
35	OutputSize = TRUE ;
36	SVLook = TRUE ;
37	Size = MAP_APPFONT ( 157 , 60 ) ;
38	/* ### ACHTUNG: Neuer Text in Resource? Zeilenh�he : Zellenh�he */
39	Text [ en-US ] = "Row Height" ;
40	Moveable = TRUE ;
41	OKButton BT_OK
42	{
43		Pos = MAP_APPFONT ( 101 , 6 ) ;
44		Size = MAP_APPFONT ( 50 , 14 ) ;
45		TabStop = TRUE ;
46		DefButton = TRUE ;
47	};
48	CancelButton BT_CANCEL
49	{
50		Pos = MAP_APPFONT ( 101 , 23 ) ;
51		Size = MAP_APPFONT ( 50 , 14 ) ;
52		TabStop = TRUE ;
53	};
54	HelpButton BT_HELP
55	{
56		Pos = MAP_APPFONT ( 101 , 43 ) ;
57		Size = MAP_APPFONT ( 50 , 14 ) ;
58		TabStop = TRUE ;
59	};
60	MetricField ED_HEIGHT
61	{
62	    HelpID = "sw:MetricField:DLG_ROW_HEIGHT:ED_HEIGHT";
63		Border = TRUE ;
64		Pos = MAP_APPFONT ( 12 , 16 ) ;
65		Size = MAP_APPFONT ( 38 , 12 ) ;
66		TabStop = TRUE ;
67		Left = TRUE ;
68		Repeat = TRUE ;
69		Spin = TRUE ;
70		Minimum = 5 ;
71		Maximum = 990 ;
72		DecimalDigits = 1 ;
73		Value = 10 ;
74		Unit = FUNIT_CM ;
75		First = 100 ;
76		Last = 9999 ;
77	};
78	CheckBox CB_AUTOHEIGHT
79	{
80	    HelpID = "sw:CheckBox:DLG_ROW_HEIGHT:CB_AUTOHEIGHT";
81        Pos = MAP_APPFONT ( 12 , 34 ) ;
82        Size = MAP_APPFONT ( 80 , 10 ) ;
83		/* ### ACHTUNG: Neuer Text in Resource? ~dynamisch anpassen : auto. H~�he */
84		TabStop = TRUE ;
85		Text [ en-US ] = "~Fit to size" ;
86	};
87    FixedLine FL_HEIGHT
88	{
89		Pos = MAP_APPFONT ( 6 , 3 ) ;
90        Size = MAP_APPFONT ( 89 , 8 ) ;
91		Text [ en-US ] = "Height" ;
92	};
93};
94
95
96
97
98
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