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 "xmlfileview.hrc"
25#include "xmlfilterhelpids.hrc"
26
27#define DIALOG_WIDTH	500
28#define	DIALOG_HEIGHT	400
29
30WorkWindow DLG_XML_SOURCE_FILE_DIALOG
31{
32	Size					= MAP_APPFONT( DIALOG_WIDTH, DIALOG_HEIGHT );
33	HelpId					= HID_XML_SOURCE_FILE_DIALOG;
34	OutputSize				= TRUE ;
35	SVLook					= TRUE ;
36	Sizeable				= TRUE ;
37	Minable					= TRUE ;
38	Maxable					= TRUE ;
39	Moveable				= TRUE ;
40	Closeable				= TRUE ;
41	Text [ en-US ]		= "XML Filter output" ;
42
43	PushButton PB_VALIDATE
44	{
45		Pos					= MAP_APPFONT ( 6 , 6 ) ;
46		Size				= MAP_APPFONT ( 60 , 14 ) ;
47		TabStop				= TRUE ;
48		HelpId				= HID_XML_SOURCE_FILE_VALIDATE;
49		Text [ en-US ]	= "~Validate";
50	};
51};
52
53
54
55
56
57
58
59
60
61