bump product version to 4.1.6.2
[LibreOffice.git] / extensions / source / propctrlr / formlinkdialog.src
blobd20dd78c292396e7e1a14ec07125a35dd9711473
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3  * This file is part of the LibreOffice project.
4  *
5  * This Source Code Form is subject to the terms of the Mozilla Public
6  * License, v. 2.0. If a copy of the MPL was not distributed with this
7  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8  *
9  * This file incorporates work covered by the following license notice:
10  *
11  *   Licensed to the Apache Software Foundation (ASF) under one or more
12  *   contributor license agreements. See the NOTICE file distributed
13  *   with this work for additional information regarding copyright
14  *   ownership. The ASF licenses this file to you under the Apache
15  *   License, Version 2.0 (the "License"); you may not use this file
16  *   except in compliance with the License. You may obtain a copy of
17  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
18  */
20 #include "formresid.hrc"
21 #include "propctrlr.hrc"
22 #include "formlinkdialog.hrc"
24 ModalDialog RID_DLG_FORMLINKS
26     HelpID = "extensions:ModalDialog:RID_DLG_FORMLINKS";
27     OutputSize = TRUE ;
28     Moveable = TRUE ;
29     Closeable = TRUE ;
30     SVLook = TRUE ;
31     Size = MAP_APPFONT ( 252, 110 ) ;
33     Text [ en-US ] = "Link fields";
35     FixedText FT_EXPLANATION
36     {
37         Pos = MAP_APPFONT( 6, 6 );
38         Size = MAP_APPFONT( 187, 24 );
40         WordBreak = TRUE;
42         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.";
43     };
45     FixedText FT_DETAIL_LABEL
46     {
47         Pos = MAP_APPFONT( 6, 36 );
48         Size = MAP_APPFONT( 85, 8 );
49     };
51     FixedText FT_MASTER_LABEL
52     {
53         Pos = MAP_APPFONT( 102, 36 );
54         Size = MAP_APPFONT( 85, 8 );
55     };
57 #define ROW( n ) \
58     Window n \
59     { \
60         Pos  = MAP_APPFONT( 6, 47 + 15 * ( n - 1 ) ); \
61         Size = MAP_APPFONT( 181, 13 );                \
62                                                       \
63         Hide          = FALSE;                        \
64         DialogControl = TRUE;                         \
65                                                       \
66         ComboBox 1                                    \
67         {                                             \
68             Pos  = MAP_APPFONT( 0, 0 );               \
69             Size = MAP_APPFONT( 85, 12 );             \
70                                                       \
71             DropDown = TRUE;                          \
72             TabStop  = TRUE;                          \
73                                                       \
74             HelpId   = HID_FIELDLINK_DETAIL_COLUMN;   \
75             UniqueId = UID_FIELDLINK_DETAIL#n;        \
76         };                                            \
77         FixedText 1                                   \
78         {                                             \
79             Pos  = MAP_APPFONT( 85, 0 );              \
80             Size = MAP_APPFONT( 10, 12 );             \
81             Center = TRUE;                            \
82         };                                            \
83         ComboBox 2                                    \
84         {                                             \
85             Pos  = MAP_APPFONT( 95, 0 );              \
86             Size = MAP_APPFONT( 85, 12 );             \
87                                                       \
88             DropDown = TRUE;                          \
89             TabStop  = TRUE;                          \
90                                                       \
91             HelpId   = HID_FIELDLINK_MASTER_COLUMN;   \
92             UniqueId = UID_FIELDLINK_MASTER#n;        \
93         };                                            \
94     }
96     ROW( 1 );
97     ROW( 2 );
98     ROW( 3 );
99     ROW( 4 );
101     OKButton PB_OK
102     {
103         Pos = MAP_APPFONT( 199, 6 );
104         Size = MAP_APPFONT( 50, 14 );
105         TabStop   = TRUE;
106         DefButton = TRUE;
107     };
109     CancelButton PB_CANCEL
110     {
111         Pos = MAP_APPFONT( 199, 23 );
112         Size = MAP_APPFONT( 50, 14 );
113         TabStop = TRUE;
114     };
116     HelpButton PB_HELP
117     {
118         Pos = MAP_APPFONT( 199, 43 );
119         Size = MAP_APPFONT( 50, 14 );
120         TabStop = TRUE;
121     };
123     PushButton PB_SUGGEST
124     {
125         HelpID = "extensions:PushButton:RID_DLG_FORMLINKS:PB_SUGGEST";
126         Pos = MAP_APPFONT( 199, 90 );
127         Size = MAP_APPFONT( 50, 14 );
128         TabStop =  TRUE;
129         Hide    = FALSE;
130         Disable =  TRUE;
132         Text [ en-US ] = "Suggest";
133     };
135     String STR_DETAIL_FORM
136     {
137         Text [ en-US ] = "Sub Form";
138     };
140     String STR_MASTER_FORM
141     {
142         Text [ en-US ] = "Master Form";
143     };
145     String STR_ERROR_RETRIEVING_COLUMNS
146     {
147         Text [ en-US ] = "The columns of '#' could not be retrieved.";
148         Text [ x-comment ] ="# will be replace with a name.";
149     };
152 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */