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#ifndef _EXTENSIONS_FORMCTRLR_PROPRESID_HRC_
23#include "formresid.hrc"
24#endif
25#include "propctrlr.hrc"
26#ifndef EXTENSIONS_SOURCE_PROPCTRLR_LISTSELECTIONDLG_HRC
27#include "listselectiondlg.hrc"
28#endif
29
30ModalDialog RID_DLG_SELECTION
31{
32	HelpID = "extensions:ModalDialog:RID_DLG_SELECTION" ;
33	OutputSize = TRUE ;
34	Moveable = TRUE ;
35	Closeable = TRUE ;
36	SVLook = TRUE ;
37	Size = MAP_APPFONT ( 150, 120 ) ;
38
39	FixedText FT_ENTRIES
40	{
41		Pos = MAP_APPFONT ( 6, 6 ) ;
42		Size = MAP_APPFONT ( 85, 8 ) ;
43	};
44
45	ListBox LB_ENTRIES
46	{
47		HelpID = "extensions:ListBox:RID_DLG_SELECTION:LB_ENTRIES" ;
48		Pos = MAP_APPFONT ( 6, 17 ) ;
49		Size = MAP_APPFONT ( 85, 97 ) ;
50
51		Border = TRUE ;
52		DropDown = FALSE ;
53	};
54
55	OKButton PB_OK
56	{
57		Pos = MAP_APPFONT ( 97, 6 ) ;
58		Size = MAP_APPFONT ( 50, 14 ) ;
59		TabStop = TRUE ;
60		DefButton = TRUE ;
61	};
62
63	CancelButton PB_CANCEL
64	{
65		Pos = MAP_APPFONT ( 97, 23 ) ;
66		Size = MAP_APPFONT ( 50, 14 ) ;
67		TabStop = TRUE ;
68	};
69
70	HelpButton PB_HELP
71	{
72		Pos = MAP_APPFONT ( 97, 43 ) ;
73		Size = MAP_APPFONT ( 50, 14 ) ;
74		TabStop = TRUE ;
75	};
76};
77
78// ******************************************************************* EOF
79