xref: /trunk/main/sd/source/ui/dlg/dlgfield.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 "dlgfield.hrc"
29ModalDialog DLG_FIELD_MODIFY
30{
31    HelpID = "sd:ModalDialog:DLG_FIELD_MODIFY";
32	OutputSize = TRUE ;
33	SVLook = TRUE ;
34	Size = MAP_APPFONT ( 138 , 154 ) ;
35	Moveable = TRUE ;
36	Closeable = TRUE ;
37	FixedLine GRP_TYPE
38	{
39		Pos = MAP_APPFONT ( 6 , 3 ) ;
40		Size = MAP_APPFONT ( 70 , 8 ) ;
41		Text [ en-US ] = "Field type" ;
42	};
43	RadioButton RBT_FIX
44	{
45	    HelpID = "sd:RadioButton:DLG_FIELD_MODIFY:RBT_FIX";
46		Pos = MAP_APPFONT ( 12 , 14 ) ;
47		Size = MAP_APPFONT ( 64 , 10 ) ;
48		TabStop = TRUE ;
49		Text [ en-US ] = "~Fixed" ;
50	};
51	RadioButton RBT_VAR
52	{
53	    HelpID = "sd:RadioButton:DLG_FIELD_MODIFY:RBT_VAR";
54		Pos = MAP_APPFONT ( 12 , 25 ) ;
55		Size = MAP_APPFONT ( 64 , 10 ) ;
56		TabStop = TRUE ;
57		Text [ en-US ] = "~Variable" ;
58	};
59	FixedText FT_LANGUAGE
60	{
61		Pos = MAP_APPFONT ( 6 , 67 ) ;
62		Size = MAP_APPFONT ( 40 , 10 ) ;
63		Text [ en-US ] = "~Language" ;
64	};
65
66	ListBox LB_LANGUAGE
67	{
68	    HelpID = "sd:ListBox:DLG_FIELD_MODIFY:LB_LANGUAGE";
69		Border = TRUE ;
70		Pos = MAP_APPFONT ( 52 , 65 ) ;
71		Size = MAP_APPFONT ( 80 , 70 ) ;
72		TabStop = TRUE ;
73		DropDown = TRUE ;
74	};
75
76	ListBox LB_FORMAT
77	{
78	    HelpID = "sd:ListBox:DLG_FIELD_MODIFY:LB_FORMAT";
79		Border = TRUE ;
80		Pos = MAP_APPFONT ( 6 , 94 ) ;
81		Size = MAP_APPFONT ( 126 , 54 ) ;
82		TabStop = TRUE ;
83	};
84	FixedText FT_FORMAT
85	{
86		Pos = MAP_APPFONT ( 6 , 83 ) ;
87		Size = MAP_APPFONT ( 70 , 10 ) ;
88		Text [ en-US ] = "F~ormat" ;
89	};
90	OKButton BTN_OK
91	{
92		Pos = MAP_APPFONT ( 82 , 6 ) ;
93		Size = MAP_APPFONT ( 50 , 14 ) ;
94		TabStop = TRUE ;
95		DefButton = TRUE ;
96	};
97	CancelButton BTN_CANCEL
98	{
99		Pos = MAP_APPFONT ( 82 , 23 ) ;
100		Size = MAP_APPFONT ( 50 , 14 ) ;
101		TabStop = TRUE ;
102	};
103	HelpButton BTN_HELP
104	{
105		Pos = MAP_APPFONT ( 82 , 43 ) ;
106		Size = MAP_APPFONT ( 50 , 14 ) ;
107		TabStop = TRUE ;
108	};
109	Text [ en-US ] = "Edit Field" ;
110};
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133