merge the formfield patch from ooo-build
[ooovba.git] / dbaccess / source / ui / dlg / paramdialog.src
blob4527eb9c1c6400c929540f7f71b8160af9a42589
1 /*************************************************************************
2  *
3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4  * 
5  * Copyright 2008 by Sun Microsystems, Inc.
6  *
7  * OpenOffice.org - a multi-platform office productivity suite
8  *
9  * $RCSfile: paramdialog.src,v $
10  * $Revision: 1.37 $
11  *
12  * This file is part of OpenOffice.org.
13  *
14  * OpenOffice.org is free software: you can redistribute it and/or modify
15  * it under the terms of the GNU Lesser General Public License version 3
16  * only, as published by the Free Software Foundation.
17  *
18  * OpenOffice.org is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU Lesser General Public License version 3 for more details
22  * (a copy is included in the LICENSE file that accompanied this code).
23  *
24  * You should have received a copy of the GNU Lesser General Public License
25  * version 3 along with OpenOffice.org.  If not, see
26  * <http://www.openoffice.org/license.html>
27  * for a copy of the LGPLv3 License.
28  *
29  ************************************************************************/
31 #ifndef _DBAUI_PARAMDIALOG_HRC_
32 #include "paramdialog.hrc"
33 #endif
34 #ifndef _DBU_DLG_HRC_
35 #include "dbu_dlg.hrc"
36 #endif
38 #define LIST_WIDTH              100
39 #define LIST_HEIGHT             50
41 ModalDialog DLG_PARAMETERS
43     OutputSize = TRUE ;
44     SVLook = TRUE ;
45     Size = MAP_APPFONT ( 6 + LIST_WIDTH + 3 + 6 + BUTTON_WIDTH + 6, 98 ) ;
46     Moveable = TRUE ;
47     Closeable = TRUE ;
50     FixedLine FL_PARAMS
51     {
52         Pos = MAP_APPFONT ( 4 , 3 ) ;
53         Size = MAP_APPFONT ( 3 + LIST_WIDTH + 3 , 8 ) ;
54         Text [ en-US ] = "~Parameters";
55     };
56     ListBox LB_ALLPARAMS
57     {
58         Pos = MAP_APPFONT ( 7 , 12 ) ;
59         Size = MAP_APPFONT ( LIST_WIDTH , LIST_HEIGHT ) ;
60         Border = TRUE;
61         SVLook = TRUE;
62     };
63     FixedText FT_VALUE
64     {
65         Pos = MAP_APPFONT ( 7 , 12 + LIST_HEIGHT + 4 ) ;
66         Size = MAP_APPFONT ( LIST_WIDTH , 8 ) ;
67         Text [ en-US ] = "~Value";
68     };
69     Edit ET_PARAM
70     {
71         Border = TRUE ;
72         Pos = MAP_APPFONT ( 7 , 12 + LIST_HEIGHT + 4 + 8 + 3 ) ;
73         Size = MAP_APPFONT ( LIST_WIDTH , 12 ) ;
74         TabStop = TRUE ;
75     };
76     PushButton BT_TRAVELNEXT
77     {
78         Pos = MAP_APPFONT ( 4 + 3 + LIST_WIDTH + 3 + 6 , 12 + LIST_HEIGHT + 4 + 8 + 3 + ( 12 - BUTTON_HEIGHT ) / 2) ;
79         Size = MAP_APPFONT ( BUTTON_WIDTH , BUTTON_HEIGHT ) ;
80         TabStop = TRUE ;
81         Text [ en-US ] = "~Next";
82     };
83     OKButton BT_OK
84     {
85         Pos = MAP_APPFONT ( 4 + 3 + LIST_WIDTH + 3 + 6 , 3 ) ;
86         Size = MAP_APPFONT ( BUTTON_WIDTH , BUTTON_HEIGHT ) ;
87         TabStop = TRUE ;
88         DefButton = TRUE ;
89     };
90     CancelButton BT_CANCEL
91     {
92         Pos = MAP_APPFONT ( 4 + 3 + LIST_WIDTH + 3 + 6 , 3 + BUTTON_HEIGHT + 3 ) ;
93         Size = MAP_APPFONT ( BUTTON_WIDTH , BUTTON_HEIGHT ) ;
94         TabStop = TRUE ;
95     };
96     Text [ en-US ] = "Parameter Input" ;
98     String STR_COULD_NOT_CONVERT_PARAM
99     {
100         Text [ en-US ] = "The entry could not be converted to a valid value for the \"$name$\"column";
101     };