bump product version to 4.1.6.2
[LibreOffice.git] / extensions / source / dbpilots / gridpages.src
blob099eb90b1dec07be918bde41b9381aa63cd911c4
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 "dbpresid.hrc"
22 TabPage RID_PAGE_GW_FIELDSELECTION
24     HelpID = "extensions:TabPage:RID_PAGE_GW_FIELDSELECTION";
25     SVLook = TRUE ;
26     Size = MAP_APPFONT ( WINDOW_SIZE_X , WINDOW_SIZE_Y ) ;
28     Text [ en-US ] = "Field Selection";
30     FixedLine FL_FRAME
31     {
32         Pos = MAP_APPFONT ( 4 , 40  ) ;
33         Size = MAP_APPFONT ( WINDOW_SIZE_X - 8 , 8 ) ;
34         Text [ en-US ] = "Table element";
35     };
37     FixedText FT_EXISTING_FIELDS
38     {
39         Pos = MAP_APPFONT ( 7, 52 );
40         Size = MAP_APPFONT ( WINDOW_HALF_SIZE_X - ITEM_BUTTON_SIZE_X / 2 - 13, 8 );
41         Text [ en-US ] = "Existing fields";
42     };
43     ListBox LB_EXISTING_FIELDS
44     {
45         HelpID = "extensions:ListBox:RID_PAGE_GW_FIELDSELECTION:LB_EXISTING_FIELDS";
46         Pos = MAP_APPFONT ( 7 , 63  ) ;
47         Size = MAP_APPFONT ( WINDOW_HALF_SIZE_X - ITEM_BUTTON_SIZE_X / 2 - 13, WINDOW_SIZE_Y - 63 - 6 ) ;
48         SVLook = TRUE ;
49         Border = TRUE ;
50         AutoHScroll = TRUE ;
51         Sort = FALSE;
52         DropDown = FALSE;
53     };
54     PushButton PB_FIELDRIGHT
55     {
56         HelpID = "extensions:PushButton:RID_PAGE_GW_FIELDSELECTION:PB_FIELDRIGHT";
57         Pos = MAP_APPFONT ( WINDOW_HALF_SIZE_X - ITEM_BUTTON_SIZE_X / 2, 63 );
58         Size = MAP_APPFONT ( ITEM_BUTTON_SIZE_X, ITEM_BUTTON_SIZE_Y );
59         Text = "->";
60     };
61     PushButton PB_ALLFIELDSRIGHT
62     {
63         HelpID = "extensions:PushButton:RID_PAGE_GW_FIELDSELECTION:PB_ALLFIELDSRIGHT";
64         Pos = MAP_APPFONT ( WINDOW_HALF_SIZE_X - ITEM_BUTTON_SIZE_X / 2, 63 + ITEM_BUTTON_SIZE_Y + 3 );
65         Size = MAP_APPFONT ( ITEM_BUTTON_SIZE_X, ITEM_BUTTON_SIZE_Y );
66         Text = "=>>";
67     };
68     PushButton PB_FIELDLEFT
69     {
70         HelpID = "extensions:PushButton:RID_PAGE_GW_FIELDSELECTION:PB_FIELDLEFT";
71         Pos = MAP_APPFONT ( WINDOW_HALF_SIZE_X - ITEM_BUTTON_SIZE_X / 2, 63 + ITEM_BUTTON_SIZE_Y + 3 + ITEM_BUTTON_SIZE_Y + 12 );
72         Size = MAP_APPFONT ( ITEM_BUTTON_SIZE_X, ITEM_BUTTON_SIZE_Y );
73         Text = "<-";
74     };
75     PushButton PB_ALLFIELDSLEFT
76     {
77         HelpID = "extensions:PushButton:RID_PAGE_GW_FIELDSELECTION:PB_ALLFIELDSLEFT";
78         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 );
79         Size = MAP_APPFONT ( ITEM_BUTTON_SIZE_X, ITEM_BUTTON_SIZE_Y );
80         Text = "<<=";
81     };
82     FixedText FT_SELECTED_FIELDS
83     {
84         Pos = MAP_APPFONT ( WINDOW_HALF_SIZE_X + ITEM_BUTTON_SIZE_X / 2 + 6, 52 );
85         Size = MAP_APPFONT ( WINDOW_HALF_SIZE_X - ITEM_BUTTON_SIZE_X / 2 - 13, 8 );
86         Text [ en-US ] = "Selected fields";
87     };
88     ListBox LB_SELECTED_FIELDS
89     {
90         HelpID = "extensions:ListBox:RID_PAGE_GW_FIELDSELECTION:LB_SELECTED_FIELDS";
91         Pos = MAP_APPFONT ( WINDOW_HALF_SIZE_X + ITEM_BUTTON_SIZE_X / 2 + 6 , 63  ) ;
92         Size = MAP_APPFONT ( WINDOW_HALF_SIZE_X - ITEM_BUTTON_SIZE_X / 2 - 13, WINDOW_SIZE_Y - 63 - 6 ) ;
93         SVLook = TRUE ;
94         Border = TRUE ;
95         AutoHScroll = TRUE ;
96         Sort = FALSE;
97         DropDown = FALSE;
98     };
101 String RID_STR_DATEPOSTFIX
103     Text [ en-US ] = " (Date)";
106 String RID_STR_TIMEPOSTFIX
108     Text [ en-US ] = " (Time)";
111 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */