xref: /trunk/main/sw/source/ui/dialog/ascfldlg.src (revision d8dff77764cb74143fabc617dc8ee25d946bae78)
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#include "dialog.hrc"
25#include "helpid.h"
26#include "ascfldlg.hrc"
27
28ModalDialog DLG_ASCII_FILTER
29{
30    HelpID = HID_ASCII_FILTER ;
31    OutputSize = TRUE ;
32    SVLook = TRUE ;
33    Size = MAP_APPFONT ( 239, 80 ) ;
34    Moveable = TRUE ;
35    FixedLine FL_1
36    {
37        OutputSize = TRUE ;
38        Pos = MAP_APPFONT ( 6, 3 ) ;
39        Size = MAP_APPFONT ( 170, 8 ) ;
40        Text [ en-US ] = "Properties" ;
41    };
42    FixedText FT_CHARSET
43    {
44        Pos = MAP_APPFONT ( 12, 15 ) ;
45        Size = MAP_APPFONT ( 66, 10 ) ;
46        Text [ en-US ] = "~Character set" ;
47    };
48    ListBox LB_CHARSET
49    {
50        HelpID = "sw:ListBox:DLG_ASCII_FILTER:LB_CHARSET" ;
51        Pos = MAP_APPFONT ( 80, 14 ) ;
52        Size = MAP_APPFONT ( 90, 61 ) ;
53        TabStop = TRUE ;
54        DropDown = TRUE ;
55        Sort = TRUE ;
56    };
57    FixedText FT_FONT
58    {
59        Pos = MAP_APPFONT ( 12, 31 ) ;
60        Size = MAP_APPFONT ( 66, 10 ) ;
61        Text [ en-US ] = "Default fonts" ;
62    };
63    ListBox LB_FONT
64    {
65        HelpID = "sw:ListBox:DLG_ASCII_FILTER:LB_FONT" ;
66        Pos = MAP_APPFONT ( 80, 30 ) ;
67        Size = MAP_APPFONT ( 90, 61 ) ;
68        TabStop = TRUE ;
69        DropDown = TRUE ;
70        Sort = TRUE ;
71    };
72    FixedText FT_LANGUAGE
73    {
74        Pos = MAP_APPFONT ( 12, 47 ) ;
75        Size = MAP_APPFONT ( 66, 10 ) ;
76        Text [ en-US ] = "Lan~guage" ;
77    };
78    ListBox LB_LANGUAGE
79    {
80        HelpID = "sw:ListBox:DLG_ASCII_FILTER:LB_LANGUAGE" ;
81        Pos = MAP_APPFONT ( 80, 46 ) ;
82        Size = MAP_APPFONT ( 90, 61 ) ;
83        TabStop = TRUE ;
84        DropDown = TRUE ;
85        Sort = TRUE ;
86    };
87    FixedText FT_CRLF
88    {
89        Pos = MAP_APPFONT ( 12, 64 ) ;
90        Size = MAP_APPFONT ( 66, 8 ) ;
91        Text [ en-US ] = "~Paragraph break" ;
92    };
93    RadioButton RB_CRLF
94    {
95        HelpID = "sw:RadioButton:DLG_ASCII_FILTER:RB_CRLF" ;
96        Pos = MAP_APPFONT ( 80, 64 ) ;
97        Size = MAP_APPFONT ( 40, 10 ) ;
98        TabStop = TRUE ;
99        Check = TRUE ;
100        Text [ en-US ] = "~CR & LF" ;
101    };
102    RadioButton RB_CR
103    {
104        HelpID = "sw:RadioButton:DLG_ASCII_FILTER:RB_CR" ;
105        Pos = MAP_APPFONT ( 121, 64 ) ;
106        Size = MAP_APPFONT ( 20, 10 ) ;
107//      TabStop = TRUE ;
108        Text [ en-US ] = "C~R" ;
109    };
110    RadioButton RB_LF
111    {
112        HelpID = "sw:RadioButton:DLG_ASCII_FILTER:RB_LF" ;
113        Pos = MAP_APPFONT ( 155, 64 ) ;
114        Size = MAP_APPFONT ( 20, 10 ) ;
115//      TabStop = TRUE ;
116        Text [ en-US ] = "~LF" ;
117    };
118
119    OKButton PB_OK
120    {
121        Pos = MAP_APPFONT ( 183, 6 ) ;
122        Size = MAP_APPFONT ( 50, 14 ) ;
123        TabStop = TRUE ;
124        DefButton = TRUE ;
125    };
126    CancelButton PB_CANCEL
127    {
128        Pos = MAP_APPFONT ( 183, 23 ) ;
129        Size = MAP_APPFONT ( 50, 14 ) ;
130        TabStop = TRUE ;
131    };
132    HelpButton PB_HELP
133    {
134        Pos = MAP_APPFONT ( 183, 43 ) ;
135        Size = MAP_APPFONT ( 50, 14 ) ;
136        TabStop = TRUE ;
137    };
138    String STR_SYS_CHARSET
139    {
140        Text [ en-US ] = "System" ;
141    };
142    Text [ en-US ] = "ASCII Filter Options" ;
143};
144
145// ********************************************************************** EOF
146