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