Update ooo320-m1
[ooovba.git] / extensions / source / propctrlr / formlinkdialog.src
blobdbfa5a5e52271da3680a626d6560e0676a5b1e07
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: formlinkdialog.src,v $
10  * $Revision: 1.9 $
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 _EXTENSIONS_FORMCTRLR_PROPRESID_HRC_
32 #include "formresid.hrc"
33 #endif
34 #ifndef EXTENSIONS_INC_EXTENSIO_HRC
35 #include "extensio.hrc"
36 #endif
37 #ifndef EXTENSIONS_SOURCE_PROPCTRLR_FORMLINKDIALOG_HRC
38 #include "formlinkdialog.hrc"
39 #endif
41 ModalDialog RID_DLG_FORMLINKS
43     OutputSize = TRUE ;
44     Moveable = TRUE ;
45     Closeable = TRUE ;
46     SVLook = TRUE ;
47     Size = MAP_APPFONT ( 252, 110 ) ;
49     Text [ en-US ] = "Link fields";
51     FixedText FT_EXPLANATION
52     {
53         Pos = MAP_APPFONT( 6, 6 );
54         Size = MAP_APPFONT( 187, 24 );
56         WordBreak = TRUE;
58         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.";
59     };
61     FixedText FT_DETAIL_LABEL
62     {
63         Pos = MAP_APPFONT( 6, 36 );
64         Size = MAP_APPFONT( 85, 8 );
65     };
67     FixedText FT_MASTER_LABEL
68     {
69         Pos = MAP_APPFONT( 102, 36 );
70         Size = MAP_APPFONT( 85, 8 );
71     };
73 #define ROW( n ) \
74     Window n \
75     { \
76         Pos  = MAP_APPFONT( 6, 47 + 15 * ( n - 1 ) ); \
77         Size = MAP_APPFONT( 181, 13 );                \
78                                                       \
79         Hide          = FALSE;                        \
80         DialogControl = TRUE;                         \
81                                                       \
82         ComboBox 1                                    \
83         {                                             \
84             Pos  = MAP_APPFONT( 0, 0 );               \
85             Size = MAP_APPFONT( 85, 12 );             \
86                                                       \
87             DropDown = TRUE;                          \
88             TabStop  = TRUE;                          \
89                                                       \
90             HelpId   = HID_FIELDLINK_DETAIL_COLUMN;   \
91             UniqueId = UID_FIELDLINK_DETAIL#n;        \
92         };                                            \
93         FixedText 1                                   \
94         {                                             \
95             Pos  = MAP_APPFONT( 85, 0 );              \
96             Size = MAP_APPFONT( 10, 12 );             \
97             Center = TRUE;                            \
98         };                                            \
99         ComboBox 2                                    \
100         {                                             \
101             Pos  = MAP_APPFONT( 95, 0 );              \
102             Size = MAP_APPFONT( 85, 12 );             \
103                                                       \
104             DropDown = TRUE;                          \
105             TabStop  = TRUE;                          \
106                                                       \
107             HelpId   = HID_FIELDLINK_MASTER_COLUMN;   \
108             UniqueId = UID_FIELDLINK_MASTER#n;        \
109         };                                            \
110     }
112     ROW( 1 );
113     ROW( 2 );
114     ROW( 3 );
115     ROW( 4 );
117     OKButton PB_OK
118     {
119         Pos = MAP_APPFONT( 199, 6 );
120         Size = MAP_APPFONT( 50, 14 );
121         TabStop   = TRUE;
122         DefButton = TRUE;
123     };
125     CancelButton PB_CANCEL
126     {
127         Pos = MAP_APPFONT( 199, 23 );
128         Size = MAP_APPFONT( 50, 14 );
129         TabStop = TRUE;
130     };
132     HelpButton PB_HELP
133     {
134         Pos = MAP_APPFONT( 199, 43 );
135         Size = MAP_APPFONT( 50, 14 );
136         TabStop = TRUE;
137     };
139     PushButton PB_SUGGEST
140     {
141         Pos = MAP_APPFONT( 199, 90 );
142         Size = MAP_APPFONT( 50, 14 );
143         TabStop =  TRUE;
144         Hide    = FALSE;
145         Disable =  TRUE;
147         Text [ en-US ] = "Suggest";
148     };
150     String STR_DETAIL_FORM
151     {
152         Text [ en-US ] = "Sub Form";
153     };
155     String STR_MASTER_FORM
156     {
157         Text [ en-US ] = "Master Form";
158     };
160     String STR_ERROR_RETRIEVING_COLUMNS
161     {
162         Text [ en-US ] = "The columns of '#' could not be retrieved.";
163         Text [ x-comment ] ="# will be replace with a name.";
164     };