xref: /aoo42x/main/sc/source/ui/dbgui/imoptdlg.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
29#include "imoptdlg.hrc"
30
31ModalDialog RID_SCDLG_IMPORTOPT
32{
33	HelpId = HID_SC_INPORTOPT ;
34	OutputSize = TRUE ;
35	SVLook = TRUE ;
36    Size = MAP_APPFONT ( 256 , 66 ) ;
37	Moveable = TRUE ;
38	Closeable = FALSE ;
39	Text [ en-US ] = "Import File" ;
40	FixedText FT_FIELDSEP
41	{
42        Pos = MAP_APPFONT ( 12 , 32 ) ;
43        Size = MAP_APPFONT ( 55 , 8 ) ;
44		Text [ en-US ] = "~Field delimiter" ;
45	};
46	ComboBox ED_FIELDSEP
47	{
48	    HelpID = "sc:ComboBox:RID_SCDLG_IMPORTOPT:ED_FIELDSEP";
49        Pos = MAP_APPFONT ( 70 , 30 ) ;
50        Size = MAP_APPFONT ( 121 , 60 ) ;
51		DropDown = TRUE ;
52	};
53	FixedText FT_TEXTSEP
54	{
55        Pos = MAP_APPFONT ( 12 , 48 ) ;
56        Size = MAP_APPFONT ( 55 , 8 ) ;
57		Text [ en-US ] = "~Text delimiter" ;
58	};
59	ComboBox ED_TEXTSEP
60	{
61	    HelpID = "sc:ComboBox:RID_SCDLG_IMPORTOPT:ED_TEXTSEP";
62        Pos = MAP_APPFONT ( 70 , 46 ) ;
63        Size = MAP_APPFONT ( 121 , 60 ) ;
64		DropDown = TRUE ;
65	};
66	FixedText FT_FONT
67	{
68		Pos = MAP_APPFONT ( 12 , 16 ) ;
69        Size = MAP_APPFONT ( 55 , 8 ) ;
70		Text [ en-US ] = "~Character set" ;
71	};
72	ListBox DDLB_FONT
73	{
74	    HelpID = "sc:ListBox:RID_SCDLG_IMPORTOPT:DDLB_FONT";
75		Border = TRUE;
76		Sort = TRUE;
77		DropDown = TRUE ;
78		Pos = MAP_APPFONT ( 70 , 14 ) ;
79        Size = MAP_APPFONT ( 121 , 52 ) ;
80	};
81	ListBox LB_FONT
82	{
83	    HelpID = "sc:ListBox:RID_SCDLG_IMPORTOPT:LB_FONT";
84		Border = TRUE;
85		Sort = TRUE;
86		DropDown = FALSE ;
87        Pos = MAP_APPFONT ( 12 , 14 ) ;
88		Size = MAP_APPFONT ( 179 , 50 ) ;
89	};
90    FixedLine FL_FIELDOPT
91	{
92		Pos = MAP_APPFONT ( 6 , 3 ) ;
93        Size = MAP_APPFONT ( 188 , 8 ) ;
94		Text [ en-US ] = "Field options" ;
95	};
96    CheckBox CB_FIXEDWIDTH
97    {
98        HelpID = "sc:CheckBox:RID_SCDLG_IMPORTOPT:CB_FIXEDWIDTH";
99        Pos = MAP_APPFONT( 12, 92 );
100        Size = MAP_APPFONT( 172, 10 );
101        Hide = TRUE;
102        Text [ en-US ] = "Fixed column ~width";
103	};
104	CheckBox CB_SAVESHOWN
105	{
106	    HelpID = "sc:CheckBox:RID_SCDLG_IMPORTOPT:CB_SAVESHOWN";
107		Pos = MAP_APPFONT( 12, 78 );
108		Size = MAP_APPFONT( 172, 10 );
109		TabStop = TRUE;
110		Hide = TRUE;
111		Text [ en-US ] = "Save cell content as ~shown";
112	};
113    CheckBox CB_QUOTEALL
114    {
115        HelpID = "sc:CheckBox:RID_SCDLG_IMPORTOPT:CB_QUOTEALL";
116        Pos = MAP_APPFONT( 20, 64 );
117        Size = MAP_APPFONT( 164, 10 );
118        Hide = TRUE;
119        Text [ en-US ] = "~Quote all text cells";
120    };
121	OKButton BTN_OK
122	{
123		Pos = MAP_APPFONT ( 202 , 6 ) ;
124		Size = MAP_APPFONT ( 50 , 14 ) ;
125		DefButton = TRUE ;
126	};
127	CancelButton BTN_CANCEL
128	{
129		Pos = MAP_APPFONT ( 202 , 24 ) ;
130		Size = MAP_APPFONT ( 50 , 14 ) ;
131	};
132	HelpButton BTN_HELP
133	{
134		Pos = MAP_APPFONT ( 202 , 43 ) ;
135		Size = MAP_APPFONT ( 50 , 14 ) ;
136	};
137};
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156