xref: /aoo4110/main/uui/source/fltdlg.src (revision b1cdbd2c)
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#define __RSC
25
26#ifndef UUI_IDS_HRC
27#include "ids.hrc"
28#endif
29
30#ifndef UUI_FLTDLG_HRC
31#include "fltdlg.hrc"
32#endif
33
34ModalDialog DLG_FILTER_SELECT
35{
36	HelpId 		= HID_DLG_FILTER_SELECT ;
37	OutputSize 	= TRUE ;
38	SVLook 		= TRUE ;
39	Size 		= MAP_APPFONT ( 250 , 200 ) ;
40	Moveable 	= TRUE ;
41	Text [ en-US ] = "Filter Selection" ;
42
43	FixedText FT_URL
44	{
45		Pos       = MAP_APPFONT (   6 ,  6 ) ;
46		Size      = MAP_APPFONT ( 238 , 10 ) ;
47		WordBreak = FALSE ;
48	};
49
50	ListBox LB_FILTERS
51	{
52	    HelpID = "uui:ListBox:DLG_FILTER_SELECT:LB_FILTERS";
53		Border 		= TRUE ;
54		Pos 		= MAP_APPFONT (   6 ,  19 ) ;
55		Size 		= MAP_APPFONT ( 182 , 175 ) ;
56		TabStop 	= TRUE ;
57		Sort 		= TRUE ;
58		AutoHScroll = TRUE;
59	};
60
61	OKButton BTN_OK
62	{
63		Pos 		= MAP_APPFONT ( 194 , 19 ) ;
64		Size 		= MAP_APPFONT (  50 , 14 ) ;
65		TabStop 	= TRUE ;
66		DefButton 	= TRUE ;
67	};
68
69	CancelButton BTN_CANCEL
70	{
71		Pos 	= MAP_APPFONT ( 194 , 36 ) ;
72		Size 	= MAP_APPFONT (  50 , 14 ) ;
73		TabStop = TRUE ;
74	};
75
76	HelpButton BTN_HELP
77	{
78		Pos 	= MAP_APPFONT ( 194 , 56 ) ;
79		Size 	= MAP_APPFONT (  50 , 14 ) ;
80		TabStop = TRUE ;
81	};
82};
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117