xref: /aoo41x/main/sw/source/ui/envelp/envlop.src (revision 8660f102)
1*8660f102SAndrew Rist/**************************************************************
2cdf0e10cSrcweir *
3*8660f102SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
4*8660f102SAndrew Rist * or more contributor license agreements.  See the NOTICE file
5*8660f102SAndrew Rist * distributed with this work for additional information
6*8660f102SAndrew Rist * regarding copyright ownership.  The ASF licenses this file
7*8660f102SAndrew Rist * to you under the Apache License, Version 2.0 (the
8*8660f102SAndrew Rist * "License"); you may not use this file except in compliance
9*8660f102SAndrew Rist * with the License.  You may obtain a copy of the License at
10*8660f102SAndrew Rist *
11*8660f102SAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
12*8660f102SAndrew Rist *
13*8660f102SAndrew Rist * Unless required by applicable law or agreed to in writing,
14*8660f102SAndrew Rist * software distributed under the License is distributed on an
15*8660f102SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*8660f102SAndrew Rist * KIND, either express or implied.  See the License for the
17*8660f102SAndrew Rist * specific language governing permissions and limitations
18*8660f102SAndrew Rist * under the License.
19*8660f102SAndrew Rist *
20*8660f102SAndrew Rist *************************************************************/
21*8660f102SAndrew Rist
22*8660f102SAndrew Rist
23cdf0e10cSrcweir // #pragma ******************************************************************
24cdf0e10cSrcweir
25cdf0e10cSrcweir // #include *****************************************************************
26cdf0e10cSrcweir#include "envlop.hrc"
27cdf0e10cSrcweir#include "helpid.h"
28cdf0e10cSrcweir // DLG_ENV ------------------------------------------------------------------
29cdf0e10cSrcweirTabDialog DLG_ENV
30cdf0e10cSrcweir{
31cdf0e10cSrcweir	OutputSize = TRUE ;
32cdf0e10cSrcweir	SVLook = TRUE ;
33cdf0e10cSrcweir	Text [ en-US ] = "Envelope" ;
34cdf0e10cSrcweir	Moveable = TRUE ;
35cdf0e10cSrcweir	TabControl 1
36cdf0e10cSrcweir	{
37cdf0e10cSrcweir		OutputSize = TRUE ;
38cdf0e10cSrcweir		PageList =
39cdf0e10cSrcweir		{
40cdf0e10cSrcweir			PageItem
41cdf0e10cSrcweir			{
42cdf0e10cSrcweir				Identifier = TP_ENV_ENV ;
43cdf0e10cSrcweir				Text [ en-US ] = "Envelope" ;
44cdf0e10cSrcweir				PageResID = TP_ENV_ENV ;
45cdf0e10cSrcweir			};
46cdf0e10cSrcweir			PageItem
47cdf0e10cSrcweir			{
48cdf0e10cSrcweir				Identifier = TP_ENV_FMT ;
49cdf0e10cSrcweir				PageResID = TP_ENV_FMT ;
50cdf0e10cSrcweir				Text [ en-US ] = "Format";
51cdf0e10cSrcweir			};
52cdf0e10cSrcweir			PageItem
53cdf0e10cSrcweir			{
54cdf0e10cSrcweir				Identifier = TP_ENV_PRT ;
55cdf0e10cSrcweir				Text [ en-US ] = "Printer" ;
56cdf0e10cSrcweir				PageResID = TP_ENV_PRT ;
57cdf0e10cSrcweir			};
58cdf0e10cSrcweir		};
59cdf0e10cSrcweir	};
60cdf0e10cSrcweir	String ST_INSERT
61cdf0e10cSrcweir	{
62cdf0e10cSrcweir		Text [ en-US ] = "~Insert" ;
63cdf0e10cSrcweir	};
64cdf0e10cSrcweir	String ST_CHANGE
65cdf0e10cSrcweir	{
66cdf0e10cSrcweir		Text [ en-US ] = "~Modify" ;
67cdf0e10cSrcweir	};
68cdf0e10cSrcweir};
69cdf0e10cSrcweir // TP_ENV_ENV ---------------------------------------------------------------
70cdf0e10cSrcweirTabPage TP_ENV_ENV
71cdf0e10cSrcweir{
72cdf0e10cSrcweir	HelpID = HID_ENV_ENV ;
73cdf0e10cSrcweir	Size = MAP_APPFONT ( 260 , 185 ) ;
74cdf0e10cSrcweir	Hide = TRUE ;
75cdf0e10cSrcweir	FixedText TXT_ADDR
76cdf0e10cSrcweir	{
77cdf0e10cSrcweir		Pos = MAP_APPFONT ( 6 , 6 ) ;
78cdf0e10cSrcweir		Size = MAP_APPFONT ( 124 , 8 ) ;
79cdf0e10cSrcweir		Text [ en-US ] = "Addr~essee" ;
80cdf0e10cSrcweir		Group = TRUE ;
81cdf0e10cSrcweir		Left = TRUE ;
82cdf0e10cSrcweir	};
83cdf0e10cSrcweir	MultiLineEdit EDT_ADDR
84cdf0e10cSrcweir	{
85cdf0e10cSrcweir	    HelpID = "sw:MultiLineEdit:TP_ENV_ENV:EDT_ADDR";
86cdf0e10cSrcweir		Border = TRUE ;
87cdf0e10cSrcweir		Pos = MAP_APPFONT ( 6 , 17 ) ;
88cdf0e10cSrcweir        Size = MAP_APPFONT ( 124 , 66 ) ;
89cdf0e10cSrcweir		TabStop = TRUE ;
90cdf0e10cSrcweir		Left = TRUE ;
91cdf0e10cSrcweir		HScroll = TRUE ;
92cdf0e10cSrcweir		VScroll = TRUE ;
93cdf0e10cSrcweir		IgnoreTab = TRUE;
94cdf0e10cSrcweir	};
95cdf0e10cSrcweir	FixedText FT_DATABASE
96cdf0e10cSrcweir	{
97cdf0e10cSrcweir        Pos = MAP_APPFONT ( 162 , 6 ) ;
98cdf0e10cSrcweir		Size = MAP_APPFONT ( 92 , 8 ) ;
99cdf0e10cSrcweir		Text [ en-US ] = "Database" ;
100cdf0e10cSrcweir	};
101cdf0e10cSrcweir	ListBox LB_DATABASE
102cdf0e10cSrcweir	{
103cdf0e10cSrcweir	    HelpID = "sw:ListBox:TP_ENV_ENV:LB_DATABASE";
104cdf0e10cSrcweir		Border = TRUE ;
105cdf0e10cSrcweir        Pos = MAP_APPFONT ( 162 , 17 ) ;
106cdf0e10cSrcweir        Size = MAP_APPFONT ( 82 , 50 ) ;
107cdf0e10cSrcweir		TabStop = TRUE ;
108cdf0e10cSrcweir		DropDown = TRUE ;
109cdf0e10cSrcweir	};
110cdf0e10cSrcweir	FixedText FT_TABLE
111cdf0e10cSrcweir	{
112cdf0e10cSrcweir        Pos = MAP_APPFONT ( 162 , 33 ) ;
113cdf0e10cSrcweir		Size = MAP_APPFONT ( 92 , 8 ) ;
114cdf0e10cSrcweir		Text [ en-US ] = "Table" ;
115cdf0e10cSrcweir	};
116cdf0e10cSrcweir	ListBox LB_TABLE
117cdf0e10cSrcweir	{
118cdf0e10cSrcweir	    HelpID = "sw:ListBox:TP_ENV_ENV:LB_TABLE";
119cdf0e10cSrcweir		Border = TRUE ;
120cdf0e10cSrcweir        Pos = MAP_APPFONT ( 162 , 44 ) ;
121cdf0e10cSrcweir        Size = MAP_APPFONT ( 82 , 50 ) ;
122cdf0e10cSrcweir		TabStop = TRUE ;
123cdf0e10cSrcweir		DropDown = TRUE ;
124cdf0e10cSrcweir	};
125cdf0e10cSrcweir	ImageButton BTN_INSERT
126cdf0e10cSrcweir	{
127cdf0e10cSrcweir	    HelpID = "sw:ImageButton:TP_ENV_ENV:BTN_INSERT";
128cdf0e10cSrcweir        Pos = MAP_APPFONT ( 137 , 71 ) ;
129cdf0e10cSrcweir        Size = MAP_APPFONT ( 18 , 12 ) ;
130cdf0e10cSrcweir		SYMBOL = IMAGEBUTTON_ARROW_LEFT ;
131cdf0e10cSrcweir		TabStop = TRUE ;
132cdf0e10cSrcweir	};
133cdf0e10cSrcweir	FixedText FT_DBFIELD
134cdf0e10cSrcweir	{
135cdf0e10cSrcweir        Pos = MAP_APPFONT ( 162 , 60 ) ;
136cdf0e10cSrcweir		Size = MAP_APPFONT ( 92 , 8 ) ;
137cdf0e10cSrcweir		Text [ en-US ] = "~Database field" ;
138cdf0e10cSrcweir	};
139cdf0e10cSrcweir	ListBox LB_DBFIELD
140cdf0e10cSrcweir	{
141cdf0e10cSrcweir	    HelpID = "sw:ListBox:TP_ENV_ENV:LB_DBFIELD";
142cdf0e10cSrcweir		Border = TRUE ;
143cdf0e10cSrcweir        Pos = MAP_APPFONT ( 162 , 71 ) ;
144cdf0e10cSrcweir        Size = MAP_APPFONT ( 82 , 50 ) ;
145cdf0e10cSrcweir		TabStop = TRUE ;
146cdf0e10cSrcweir		DropDown = TRUE ;
147cdf0e10cSrcweir	};
148cdf0e10cSrcweir	CheckBox BOX_SEND
149cdf0e10cSrcweir	{
150cdf0e10cSrcweir	    HelpID = "sw:CheckBox:TP_ENV_ENV:BOX_SEND";
151cdf0e10cSrcweir		Pos = MAP_APPFONT ( 6 , 105 ) ;
152cdf0e10cSrcweir		Size = MAP_APPFONT ( 124 , 8 ) ;
153cdf0e10cSrcweir		Text [ en-US ] = "~Sender" ;
154cdf0e10cSrcweir		TabStop = TRUE ;
155cdf0e10cSrcweir	};
156cdf0e10cSrcweir	MultiLineEdit EDT_SEND
157cdf0e10cSrcweir	{
158cdf0e10cSrcweir	    HelpID = "sw:MultiLineEdit:TP_ENV_ENV:EDT_SEND";
159cdf0e10cSrcweir		Border = TRUE ;
160cdf0e10cSrcweir		Pos = MAP_APPFONT ( 6 , 116) ;
161cdf0e10cSrcweir		Size = MAP_APPFONT ( 124 , 63 ) ;
162cdf0e10cSrcweir		TabStop = TRUE ;
163cdf0e10cSrcweir		Left = TRUE ;
164cdf0e10cSrcweir		HScroll = TRUE ;
165cdf0e10cSrcweir		VScroll = TRUE ;
166cdf0e10cSrcweir		IgnoreTab = TRUE;
167cdf0e10cSrcweir	};
168cdf0e10cSrcweir	Window WIN_PREVIEW
169cdf0e10cSrcweir	{
170cdf0e10cSrcweir		Border = TRUE ;
171cdf0e10cSrcweir        Pos = MAP_APPFONT ( 160 , 116 ) ;
172cdf0e10cSrcweir		Size = MAP_APPFONT ( 84 , 63 ) ;
173cdf0e10cSrcweir	};
174cdf0e10cSrcweir};
175cdf0e10cSrcweir // Strings ******************************************************************
176cdf0e10cSrcweirString STR_DOC_TITLE
177cdf0e10cSrcweir{
178cdf0e10cSrcweir	Text [ en-US ] = "Envelope" ;
179cdf0e10cSrcweir};
180cdf0e10cSrcweir
181cdf0e10cSrcweir
182cdf0e10cSrcweir
183cdf0e10cSrcweir
184cdf0e10cSrcweir
185cdf0e10cSrcweir
186cdf0e10cSrcweir
187cdf0e10cSrcweir
188cdf0e10cSrcweir
189cdf0e10cSrcweir
190cdf0e10cSrcweir
191cdf0e10cSrcweir
192cdf0e10cSrcweir
193cdf0e10cSrcweir
194cdf0e10cSrcweir
195cdf0e10cSrcweir
196cdf0e10cSrcweir
197cdf0e10cSrcweir
198cdf0e10cSrcweir
199cdf0e10cSrcweir
200cdf0e10cSrcweir
201cdf0e10cSrcweir
202cdf0e10cSrcweir
203cdf0e10cSrcweir
204cdf0e10cSrcweir
205cdf0e10cSrcweir
206cdf0e10cSrcweir
207cdf0e10cSrcweir
208cdf0e10cSrcweir
209cdf0e10cSrcweir
210