xref: /trunk/main/sw/source/ui/envelp/envlop.src (revision 31d35622ee258902b338f9bfdfb2a2ed84b7bb6c)
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 // #pragma ******************************************************************
24
25 // #include *****************************************************************
26#include "envlop.hrc"
27#include "helpid.h"
28 // DLG_ENV ------------------------------------------------------------------
29TabDialog DLG_ENV
30{
31    OutputSize = TRUE ;
32    SVLook = TRUE ;
33    Text [ en-US ] = "Envelope" ;
34    Moveable = TRUE ;
35    TabControl 1
36    {
37        OutputSize = TRUE ;
38        PageList =
39        {
40            PageItem
41            {
42                Identifier = TP_ENV_ENV ;
43                Text [ en-US ] = "Envelope" ;
44                PageResID = TP_ENV_ENV ;
45            };
46            PageItem
47            {
48                Identifier = TP_ENV_FMT ;
49                PageResID = TP_ENV_FMT ;
50                Text [ en-US ] = "Format";
51            };
52            PageItem
53            {
54                Identifier = TP_ENV_PRT ;
55                Text [ en-US ] = "Printer" ;
56                PageResID = TP_ENV_PRT ;
57            };
58        };
59    };
60    String ST_INSERT
61    {
62        Text [ en-US ] = "~Insert" ;
63    };
64    String ST_CHANGE
65    {
66        Text [ en-US ] = "~Modify" ;
67    };
68};
69 // TP_ENV_ENV ---------------------------------------------------------------
70TabPage TP_ENV_ENV
71{
72    HelpID = HID_ENV_ENV ;
73    Size = MAP_APPFONT ( 260 , 185 ) ;
74    Hide = TRUE ;
75    FixedText TXT_ADDR
76    {
77        Pos = MAP_APPFONT ( 6 , 6 ) ;
78        Size = MAP_APPFONT ( 124 , 8 ) ;
79        Text [ en-US ] = "Addr~essee" ;
80        Group = TRUE ;
81        Left = TRUE ;
82    };
83    MultiLineEdit EDT_ADDR
84    {
85        HelpID = "sw:MultiLineEdit:TP_ENV_ENV:EDT_ADDR";
86        Border = TRUE ;
87        Pos = MAP_APPFONT ( 6 , 17 ) ;
88        Size = MAP_APPFONT ( 124 , 66 ) ;
89        TabStop = TRUE ;
90        Left = TRUE ;
91        HScroll = TRUE ;
92        VScroll = TRUE ;
93        IgnoreTab = TRUE;
94    };
95    FixedText FT_DATABASE
96    {
97        Pos = MAP_APPFONT ( 162 , 6 ) ;
98        Size = MAP_APPFONT ( 92 , 8 ) ;
99        Text [ en-US ] = "Database" ;
100    };
101    ListBox LB_DATABASE
102    {
103        HelpID = "sw:ListBox:TP_ENV_ENV:LB_DATABASE";
104        Border = TRUE ;
105        Pos = MAP_APPFONT ( 162 , 17 ) ;
106        Size = MAP_APPFONT ( 82 , 50 ) ;
107        TabStop = TRUE ;
108        DropDown = TRUE ;
109    };
110    FixedText FT_TABLE
111    {
112        Pos = MAP_APPFONT ( 162 , 33 ) ;
113        Size = MAP_APPFONT ( 92 , 8 ) ;
114        Text [ en-US ] = "Table" ;
115    };
116    ListBox LB_TABLE
117    {
118        HelpID = "sw:ListBox:TP_ENV_ENV:LB_TABLE";
119        Border = TRUE ;
120        Pos = MAP_APPFONT ( 162 , 44 ) ;
121        Size = MAP_APPFONT ( 82 , 50 ) ;
122        TabStop = TRUE ;
123        DropDown = TRUE ;
124    };
125    ImageButton BTN_INSERT
126    {
127        HelpID = "sw:ImageButton:TP_ENV_ENV:BTN_INSERT";
128        Pos = MAP_APPFONT ( 137 , 71 ) ;
129        Size = MAP_APPFONT ( 18 , 12 ) ;
130        SYMBOL = IMAGEBUTTON_ARROW_LEFT ;
131        TabStop = TRUE ;
132    };
133    FixedText FT_DBFIELD
134    {
135        Pos = MAP_APPFONT ( 162 , 60 ) ;
136        Size = MAP_APPFONT ( 92 , 8 ) ;
137        Text [ en-US ] = "~Database field" ;
138    };
139    ListBox LB_DBFIELD
140    {
141        HelpID = "sw:ListBox:TP_ENV_ENV:LB_DBFIELD";
142        Border = TRUE ;
143        Pos = MAP_APPFONT ( 162 , 71 ) ;
144        Size = MAP_APPFONT ( 82 , 50 ) ;
145        TabStop = TRUE ;
146        DropDown = TRUE ;
147    };
148    CheckBox BOX_SEND
149    {
150        HelpID = "sw:CheckBox:TP_ENV_ENV:BOX_SEND";
151        Pos = MAP_APPFONT ( 6 , 105 ) ;
152        Size = MAP_APPFONT ( 124 , 8 ) ;
153        Text [ en-US ] = "~Sender" ;
154        TabStop = TRUE ;
155    };
156    MultiLineEdit EDT_SEND
157    {
158        HelpID = "sw:MultiLineEdit:TP_ENV_ENV:EDT_SEND";
159        Border = TRUE ;
160        Pos = MAP_APPFONT ( 6 , 116) ;
161        Size = MAP_APPFONT ( 124 , 63 ) ;
162        TabStop = TRUE ;
163        Left = TRUE ;
164        HScroll = TRUE ;
165        VScroll = TRUE ;
166        IgnoreTab = TRUE;
167    };
168    Window WIN_PREVIEW
169    {
170        Border = TRUE ;
171        Pos = MAP_APPFONT ( 160 , 116 ) ;
172        Size = MAP_APPFONT ( 84 , 63 ) ;
173    };
174};
175 // Strings ******************************************************************
176String STR_DOC_TITLE
177{
178    Text [ en-US ] = "Envelope" ;
179};
180