xref: /AOO41X/main/extensions/source/dbpilots/gridpages.src (revision 80fe9c7b564a9025e6038407fc7761ef01b3ff19)
1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements.  See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership.  The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance
9 * with the License.  You may obtain a copy of the License at
10 *
11 *   http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing,
14 * software distributed under the License is distributed on an
15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 * KIND, either express or implied.  See the License for the
17 * specific language governing permissions and limitations
18 * under the License.
19 *
20 *************************************************************/
21
22
23
24#ifndef _EXTENSIONS_DBP_DBPRESID_HRC_
25#include "dbpresid.hrc"
26#endif
27
28TabPage RID_PAGE_GW_FIELDSELECTION
29{
30    HelpID = "extensions:TabPage:RID_PAGE_GW_FIELDSELECTION";
31    SVLook = TRUE ;
32    Size = MAP_APPFONT ( WINDOW_SIZE_X , WINDOW_SIZE_Y ) ;
33
34    Text [ en-US ] = "Field Selection";
35
36    FixedLine FL_FRAME
37    {
38        Pos = MAP_APPFONT ( 4 , 40  ) ;
39        Size = MAP_APPFONT ( WINDOW_SIZE_X - 8 , 8 ) ;
40        Text [ en-US ] = "Table element";
41    };
42
43    FixedText FT_EXISTING_FIELDS
44    {
45        Pos = MAP_APPFONT ( 7, 52 );
46        Size = MAP_APPFONT ( WINDOW_HALF_SIZE_X - ITEM_BUTTON_SIZE_X / 2 - 13, 8 );
47        Text [ en-US ] = "Existing fields";
48    };
49    ListBox LB_EXISTING_FIELDS
50    {
51        HelpID = "extensions:ListBox:RID_PAGE_GW_FIELDSELECTION:LB_EXISTING_FIELDS";
52        Pos = MAP_APPFONT ( 7 , 63  ) ;
53        Size = MAP_APPFONT ( WINDOW_HALF_SIZE_X - ITEM_BUTTON_SIZE_X / 2 - 13, WINDOW_SIZE_Y - 63 - 6 ) ;
54        SVLook = TRUE ;
55        Border = TRUE ;
56        AutoHScroll = TRUE ;
57        Sort = FALSE;
58        DropDown = FALSE;
59    };
60    PushButton PB_FIELDRIGHT
61    {
62        HelpID = "extensions:PushButton:RID_PAGE_GW_FIELDSELECTION:PB_FIELDRIGHT";
63        Pos = MAP_APPFONT ( WINDOW_HALF_SIZE_X - ITEM_BUTTON_SIZE_X / 2, 63 );
64        Size = MAP_APPFONT ( ITEM_BUTTON_SIZE_X, ITEM_BUTTON_SIZE_Y );
65        Text = "->";
66    };
67    PushButton PB_ALLFIELDSRIGHT
68    {
69        HelpID = "extensions:PushButton:RID_PAGE_GW_FIELDSELECTION:PB_ALLFIELDSRIGHT";
70        Pos = MAP_APPFONT ( WINDOW_HALF_SIZE_X - ITEM_BUTTON_SIZE_X / 2, 63 + ITEM_BUTTON_SIZE_Y + 3 );
71        Size = MAP_APPFONT ( ITEM_BUTTON_SIZE_X, ITEM_BUTTON_SIZE_Y );
72        Text = "=>>";
73    };
74    PushButton PB_FIELDLEFT
75    {
76        HelpID = "extensions:PushButton:RID_PAGE_GW_FIELDSELECTION:PB_FIELDLEFT";
77        Pos = MAP_APPFONT ( WINDOW_HALF_SIZE_X - ITEM_BUTTON_SIZE_X / 2, 63 + ITEM_BUTTON_SIZE_Y + 3 + ITEM_BUTTON_SIZE_Y + 12 );
78        Size = MAP_APPFONT ( ITEM_BUTTON_SIZE_X, ITEM_BUTTON_SIZE_Y );
79        Text = "<-";
80    };
81    PushButton PB_ALLFIELDSLEFT
82    {
83        HelpID = "extensions:PushButton:RID_PAGE_GW_FIELDSELECTION:PB_ALLFIELDSLEFT";
84        Pos = MAP_APPFONT ( WINDOW_HALF_SIZE_X - ITEM_BUTTON_SIZE_X / 2, 63 + ITEM_BUTTON_SIZE_Y + 3 + ITEM_BUTTON_SIZE_Y + 12 + ITEM_BUTTON_SIZE_Y + 3 );
85        Size = MAP_APPFONT ( ITEM_BUTTON_SIZE_X, ITEM_BUTTON_SIZE_Y );
86        Text = "<<=";
87    };
88    FixedText FT_SELECTED_FIELDS
89    {
90        Pos = MAP_APPFONT ( WINDOW_HALF_SIZE_X + ITEM_BUTTON_SIZE_X / 2 + 6, 52 );
91        Size = MAP_APPFONT ( WINDOW_HALF_SIZE_X - ITEM_BUTTON_SIZE_X / 2 - 13, 8 );
92        Text [ en-US ] = "Selected fields";
93    };
94    ListBox LB_SELECTED_FIELDS
95    {
96        HelpID = "extensions:ListBox:RID_PAGE_GW_FIELDSELECTION:LB_SELECTED_FIELDS";
97        Pos = MAP_APPFONT ( WINDOW_HALF_SIZE_X + ITEM_BUTTON_SIZE_X / 2 + 6 , 63  ) ;
98        Size = MAP_APPFONT ( WINDOW_HALF_SIZE_X - ITEM_BUTTON_SIZE_X / 2 - 13, WINDOW_SIZE_Y - 63 - 6 ) ;
99        SVLook = TRUE ;
100        Border = TRUE ;
101        AutoHScroll = TRUE ;
102        Sort = FALSE;
103        DropDown = FALSE;
104    };
105};
106
107String RID_STR_DATEPOSTFIX
108{
109    Text [ en-US ] = " (Date)";
110};
111
112String RID_STR_TIMEPOSTFIX
113{
114    Text [ en-US ] = " (Time)";
115};
116
117
118