1*80fe9c7bSAndrew Rist/**************************************************************
2cdf0e10cSrcweir *
3*80fe9c7bSAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
4*80fe9c7bSAndrew Rist * or more contributor license agreements.  See the NOTICE file
5*80fe9c7bSAndrew Rist * distributed with this work for additional information
6*80fe9c7bSAndrew Rist * regarding copyright ownership.  The ASF licenses this file
7*80fe9c7bSAndrew Rist * to you under the Apache License, Version 2.0 (the
8*80fe9c7bSAndrew Rist * "License"); you may not use this file except in compliance
9*80fe9c7bSAndrew Rist * with the License.  You may obtain a copy of the License at
10*80fe9c7bSAndrew Rist *
11*80fe9c7bSAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
12*80fe9c7bSAndrew Rist *
13*80fe9c7bSAndrew Rist * Unless required by applicable law or agreed to in writing,
14*80fe9c7bSAndrew Rist * software distributed under the License is distributed on an
15*80fe9c7bSAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*80fe9c7bSAndrew Rist * KIND, either express or implied.  See the License for the
17*80fe9c7bSAndrew Rist * specific language governing permissions and limitations
18*80fe9c7bSAndrew Rist * under the License.
19*80fe9c7bSAndrew Rist *
20*80fe9c7bSAndrew Rist *************************************************************/
21*80fe9c7bSAndrew Rist
22*80fe9c7bSAndrew Rist
23cdf0e10cSrcweir
24cdf0e10cSrcweir#ifndef _EXTENSIONS_FORMCTRLR_PROPRESID_HRC_
25cdf0e10cSrcweir#include "formresid.hrc"
26cdf0e10cSrcweir#endif
27cdf0e10cSrcweir#include "propctrlr.hrc"
28cdf0e10cSrcweir#ifndef EXTENSIONS_SOURCE_PROPCTRLR_FORMLINKDIALOG_HRC
29cdf0e10cSrcweir#include "formlinkdialog.hrc"
30cdf0e10cSrcweir#endif
31cdf0e10cSrcweir
32cdf0e10cSrcweirModalDialog RID_DLG_FORMLINKS
33cdf0e10cSrcweir{
34cdf0e10cSrcweir    HelpID = "extensions:ModalDialog:RID_DLG_FORMLINKS";
35cdf0e10cSrcweir	OutputSize = TRUE ;
36cdf0e10cSrcweir	Moveable = TRUE ;
37cdf0e10cSrcweir	Closeable = TRUE ;
38cdf0e10cSrcweir	SVLook = TRUE ;
39cdf0e10cSrcweir    Size = MAP_APPFONT ( 252, 110 ) ;
40cdf0e10cSrcweir
41cdf0e10cSrcweir    Text [ en-US ] = "Link fields";
42cdf0e10cSrcweir
43cdf0e10cSrcweir    FixedText FT_EXPLANATION
44cdf0e10cSrcweir    {
45cdf0e10cSrcweir        Pos = MAP_APPFONT( 6, 6 );
46cdf0e10cSrcweir        Size = MAP_APPFONT( 187, 24 );
47cdf0e10cSrcweir
48cdf0e10cSrcweir        WordBreak = TRUE;
49cdf0e10cSrcweir
50cdf0e10cSrcweir        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.";
51cdf0e10cSrcweir    };
52cdf0e10cSrcweir
53cdf0e10cSrcweir    FixedText FT_DETAIL_LABEL
54cdf0e10cSrcweir    {
55cdf0e10cSrcweir        Pos = MAP_APPFONT( 6, 36 );
56cdf0e10cSrcweir        Size = MAP_APPFONT( 85, 8 );
57cdf0e10cSrcweir    };
58cdf0e10cSrcweir
59cdf0e10cSrcweir    FixedText FT_MASTER_LABEL
60cdf0e10cSrcweir    {
61cdf0e10cSrcweir        Pos = MAP_APPFONT( 102, 36 );
62cdf0e10cSrcweir        Size = MAP_APPFONT( 85, 8 );
63cdf0e10cSrcweir    };
64cdf0e10cSrcweir
65cdf0e10cSrcweir#define ROW( n ) \
66cdf0e10cSrcweir    Window n \
67cdf0e10cSrcweir    { \
68cdf0e10cSrcweir        Pos  = MAP_APPFONT( 6, 47 + 15 * ( n - 1 ) ); \
69cdf0e10cSrcweir        Size = MAP_APPFONT( 181, 13 );                \
70cdf0e10cSrcweir                                                      \
71cdf0e10cSrcweir        Hide          = FALSE;                        \
72cdf0e10cSrcweir        DialogControl = TRUE;                         \
73cdf0e10cSrcweir                                                      \
74cdf0e10cSrcweir        ComboBox 1                                    \
75cdf0e10cSrcweir        {                                             \
76cdf0e10cSrcweir            Pos  = MAP_APPFONT( 0, 0 );               \
77cdf0e10cSrcweir            Size = MAP_APPFONT( 85, 12 );             \
78cdf0e10cSrcweir                                                      \
79cdf0e10cSrcweir            DropDown = TRUE;                          \
80cdf0e10cSrcweir            TabStop  = TRUE;                          \
81cdf0e10cSrcweir                                                      \
82cdf0e10cSrcweir            HelpId   = HID_FIELDLINK_DETAIL_COLUMN;   \
83cdf0e10cSrcweir            UniqueId = UID_FIELDLINK_DETAIL#n;        \
84cdf0e10cSrcweir        };                                            \
85cdf0e10cSrcweir        FixedText 1                                   \
86cdf0e10cSrcweir        {                                             \
87cdf0e10cSrcweir            Pos  = MAP_APPFONT( 85, 0 );              \
88cdf0e10cSrcweir            Size = MAP_APPFONT( 10, 12 );             \
89cdf0e10cSrcweir            Center = TRUE;                            \
90cdf0e10cSrcweir        };                                            \
91cdf0e10cSrcweir        ComboBox 2                                    \
92cdf0e10cSrcweir        {                                             \
93cdf0e10cSrcweir            Pos  = MAP_APPFONT( 95, 0 );              \
94cdf0e10cSrcweir            Size = MAP_APPFONT( 85, 12 );             \
95cdf0e10cSrcweir                                                      \
96cdf0e10cSrcweir            DropDown = TRUE;                          \
97cdf0e10cSrcweir            TabStop  = TRUE;                          \
98cdf0e10cSrcweir                                                      \
99cdf0e10cSrcweir            HelpId   = HID_FIELDLINK_MASTER_COLUMN;   \
100cdf0e10cSrcweir            UniqueId = UID_FIELDLINK_MASTER#n;        \
101cdf0e10cSrcweir        };                                            \
102cdf0e10cSrcweir    }
103cdf0e10cSrcweir
104cdf0e10cSrcweir    ROW( 1 );
105cdf0e10cSrcweir    ROW( 2 );
106cdf0e10cSrcweir    ROW( 3 );
107cdf0e10cSrcweir    ROW( 4 );
108cdf0e10cSrcweir
109cdf0e10cSrcweir    OKButton PB_OK
110cdf0e10cSrcweir    {
111cdf0e10cSrcweir        Pos = MAP_APPFONT( 199, 6 );
112cdf0e10cSrcweir        Size = MAP_APPFONT( 50, 14 );
113cdf0e10cSrcweir        TabStop   = TRUE;
114cdf0e10cSrcweir        DefButton = TRUE;
115cdf0e10cSrcweir    };
116cdf0e10cSrcweir
117cdf0e10cSrcweir    CancelButton PB_CANCEL
118cdf0e10cSrcweir    {
119cdf0e10cSrcweir        Pos = MAP_APPFONT( 199, 23 );
120cdf0e10cSrcweir        Size = MAP_APPFONT( 50, 14 );
121cdf0e10cSrcweir        TabStop = TRUE;
122cdf0e10cSrcweir    };
123cdf0e10cSrcweir
124cdf0e10cSrcweir    HelpButton PB_HELP
125cdf0e10cSrcweir    {
126cdf0e10cSrcweir        Pos = MAP_APPFONT( 199, 43 );
127cdf0e10cSrcweir        Size = MAP_APPFONT( 50, 14 );
128cdf0e10cSrcweir        TabStop = TRUE;
129cdf0e10cSrcweir    };
130cdf0e10cSrcweir
131cdf0e10cSrcweir    PushButton PB_SUGGEST
132cdf0e10cSrcweir    {
133cdf0e10cSrcweir        HelpID = "extensions:PushButton:RID_DLG_FORMLINKS:PB_SUGGEST";
134cdf0e10cSrcweir        Pos = MAP_APPFONT( 199, 90 );
135cdf0e10cSrcweir        Size = MAP_APPFONT( 50, 14 );
136cdf0e10cSrcweir        TabStop =  TRUE;
137cdf0e10cSrcweir        Hide    = FALSE;
138cdf0e10cSrcweir        Disable =  TRUE;
139cdf0e10cSrcweir
140cdf0e10cSrcweir        Text [ en-US ] = "Suggest";
141cdf0e10cSrcweir    };
142cdf0e10cSrcweir
143cdf0e10cSrcweir    String STR_DETAIL_FORM
144cdf0e10cSrcweir    {
145cdf0e10cSrcweir        Text [ en-US ] = "Sub Form";
146cdf0e10cSrcweir    };
147cdf0e10cSrcweir
148cdf0e10cSrcweir    String STR_MASTER_FORM
149cdf0e10cSrcweir    {
150cdf0e10cSrcweir        Text [ en-US ] = "Master Form";
151cdf0e10cSrcweir    };
152cdf0e10cSrcweir
153cdf0e10cSrcweir    String STR_ERROR_RETRIEVING_COLUMNS
154cdf0e10cSrcweir    {
155cdf0e10cSrcweir        Text [ en-US ] = "The columns of '#' could not be retrieved.";
156cdf0e10cSrcweir        Text [ x-comment ] ="# will be replace with a name.";
157cdf0e10cSrcweir    };
158cdf0e10cSrcweir};
159