merged tag ooo/OOO330_m14
[LibreOffice.git] / extensions / source / propctrlr / formlinkdialog.src
blobf319675d7c42824d82c2510290c634b48175729b
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 _EXTENSIONS_FORMCTRLR_PROPRESID_HRC_
29 #include "formresid.hrc"
30 #endif
31 #include "propctrlr.hrc"
32 #ifndef EXTENSIONS_SOURCE_PROPCTRLR_FORMLINKDIALOG_HRC
33 #include "formlinkdialog.hrc"
34 #endif
36 ModalDialog RID_DLG_FORMLINKS
38     OutputSize = TRUE ;
39     Moveable = TRUE ;
40     Closeable = TRUE ;
41     SVLook = TRUE ;
42     Size = MAP_APPFONT ( 252, 110 ) ;
44     Text [ en-US ] = "Link fields";
46     FixedText FT_EXPLANATION
47     {
48         Pos = MAP_APPFONT( 6, 6 );
49         Size = MAP_APPFONT( 187, 24 );
51         WordBreak = TRUE;
53         Text [ en-US ] = "Sub forms can be used to display detailed data about the current record of the master form. To do this, you can specify which columns in the sub form match which columns in the master form.";
54     };
56     FixedText FT_DETAIL_LABEL
57     {
58         Pos = MAP_APPFONT( 6, 36 );
59         Size = MAP_APPFONT( 85, 8 );
60     };
62     FixedText FT_MASTER_LABEL
63     {
64         Pos = MAP_APPFONT( 102, 36 );
65         Size = MAP_APPFONT( 85, 8 );
66     };
68 #define ROW( n ) \
69     Window n \
70     { \
71         Pos  = MAP_APPFONT( 6, 47 + 15 * ( n - 1 ) ); \
72         Size = MAP_APPFONT( 181, 13 );                \
73                                                       \
74         Hide          = FALSE;                        \
75         DialogControl = TRUE;                         \
76                                                       \
77         ComboBox 1                                    \
78         {                                             \
79             Pos  = MAP_APPFONT( 0, 0 );               \
80             Size = MAP_APPFONT( 85, 12 );             \
81                                                       \
82             DropDown = TRUE;                          \
83             TabStop  = TRUE;                          \
84                                                       \
85             HelpId   = HID_FIELDLINK_DETAIL_COLUMN;   \
86             UniqueId = UID_FIELDLINK_DETAIL#n;        \
87         };                                            \
88         FixedText 1                                   \
89         {                                             \
90             Pos  = MAP_APPFONT( 85, 0 );              \
91             Size = MAP_APPFONT( 10, 12 );             \
92             Center = TRUE;                            \
93         };                                            \
94         ComboBox 2                                    \
95         {                                             \
96             Pos  = MAP_APPFONT( 95, 0 );              \
97             Size = MAP_APPFONT( 85, 12 );             \
98                                                       \
99             DropDown = TRUE;                          \
100             TabStop  = TRUE;                          \
101                                                       \
102             HelpId   = HID_FIELDLINK_MASTER_COLUMN;   \
103             UniqueId = UID_FIELDLINK_MASTER#n;        \
104         };                                            \
105     }
107     ROW( 1 );
108     ROW( 2 );
109     ROW( 3 );
110     ROW( 4 );
112     OKButton PB_OK
113     {
114         Pos = MAP_APPFONT( 199, 6 );
115         Size = MAP_APPFONT( 50, 14 );
116         TabStop   = TRUE;
117         DefButton = TRUE;
118     };
120     CancelButton PB_CANCEL
121     {
122         Pos = MAP_APPFONT( 199, 23 );
123         Size = MAP_APPFONT( 50, 14 );
124         TabStop = TRUE;
125     };
127     HelpButton PB_HELP
128     {
129         Pos = MAP_APPFONT( 199, 43 );
130         Size = MAP_APPFONT( 50, 14 );
131         TabStop = TRUE;
132     };
134     PushButton PB_SUGGEST
135     {
136         Pos = MAP_APPFONT( 199, 90 );
137         Size = MAP_APPFONT( 50, 14 );
138         TabStop =  TRUE;
139         Hide    = FALSE;
140         Disable =  TRUE;
142         Text [ en-US ] = "Suggest";
143     };
145     String STR_DETAIL_FORM
146     {
147         Text [ en-US ] = "Sub Form";
148     };
150     String STR_MASTER_FORM
151     {
152         Text [ en-US ] = "Master Form";
153     };
155     String STR_ERROR_RETRIEVING_COLUMNS
156     {
157         Text [ en-US ] = "The columns of '#' could not be retrieved.";
158         Text [ x-comment ] ="# will be replace with a name.";
159     };