Version 3.6.0.2, tag libreoffice-3.6.0.2
[LibreOffice.git] / dbaccess / source / ui / dlg / paramdialog.src
blob1f78123c60967f4904ef706edf13d936c0df1323
1 /*************************************************************************
2  *
3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4  *
5  * Copyright 2000, 2010 Oracle and/or its affiliates.
6  *
7  * OpenOffice.org - a multi-platform office productivity suite
8  *
9  * This file is part of OpenOffice.org.
10  *
11  * OpenOffice.org is free software: you can redistribute it and/or modify
12  * it under the terms of the GNU Lesser General Public License version 3
13  * only, as published by the Free Software Foundation.
14  *
15  * OpenOffice.org is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU Lesser General Public License version 3 for more details
19  * (a copy is included in the LICENSE file that accompanied this code).
20  *
21  * You should have received a copy of the GNU Lesser General Public License
22  * version 3 along with OpenOffice.org.  If not, see
23  * <http://www.openoffice.org/license.html>
24  * for a copy of the LGPLv3 License.
25  *
26  ************************************************************************/
28 #ifndef _DBAUI_PARAMDIALOG_HRC_
29 #include "paramdialog.hrc"
30 #endif
31 #ifndef _DBU_DLG_HRC_
32 #include "dbu_dlg.hrc"
33 #endif
35 #define LIST_WIDTH      100
36 #define LIST_HEIGHT     50
38 ModalDialog DLG_PARAMETERS
40     HelpID = "dbaccess:ModalDialog:DLG_PARAMETERS";
41     OutputSize = TRUE ;
42     SVLook = TRUE ;
43     Size = MAP_APPFONT ( 6 + LIST_WIDTH + 3 + 6 + BUTTON_WIDTH + 6, 98 ) ;
44     Moveable = TRUE ;
45     Closeable = TRUE ;
47     FixedLine FL_PARAMS
48     {
49         Pos = MAP_APPFONT ( 4 , 3 ) ;
50         Size = MAP_APPFONT ( 3 + LIST_WIDTH + 3 , 8 ) ;
51         Text [ en-US ] = "~Parameters";
52     };
53     ListBox LB_ALLPARAMS
54     {
55         HelpID = "dbaccess:ListBox:DLG_PARAMETERS:LB_ALLPARAMS";
56         Pos = MAP_APPFONT ( 7 , 12 ) ;
57         Size = MAP_APPFONT ( LIST_WIDTH , LIST_HEIGHT ) ;
58         Border = TRUE;
59         SVLook = TRUE;
60     };
61     FixedText FT_VALUE
62     {
63         Pos = MAP_APPFONT ( 7 , 12 + LIST_HEIGHT + 4 ) ;
64         Size = MAP_APPFONT ( LIST_WIDTH , 8 ) ;
65         Text [ en-US ] = "~Value";
66     };
67     Edit ET_PARAM
68     {
69         HelpID = "dbaccess:Edit:DLG_PARAMETERS:ET_PARAM";
70         Border = TRUE ;
71         Pos = MAP_APPFONT ( 7 , 12 + LIST_HEIGHT + 4 + 8 + 3 ) ;
72         Size = MAP_APPFONT ( LIST_WIDTH , 12 ) ;
73         TabStop = TRUE ;
74     };
75     PushButton BT_TRAVELNEXT
76     {
77         HelpID = "dbaccess:PushButton:DLG_PARAMETERS:BT_TRAVELNEXT";
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     };