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#ifndef _EXTENSIONS_DBP_DBPRESID_HRC_ 23#include "dbpresid.hrc" 24#endif 25 26TabPage RID_PAGE_GW_FIELDSELECTION 27{ 28 HelpID = "extensions:TabPage:RID_PAGE_GW_FIELDSELECTION" ; 29 SVLook = TRUE ; 30 Size = MAP_APPFONT ( WINDOW_SIZE_X, WINDOW_SIZE_Y ) ; 31 32 Text [ en-US ] = "Field Selection" ; 33 34 FixedLine FL_FRAME 35 { 36 Pos = MAP_APPFONT ( 4, 40 ) ; 37 Size = MAP_APPFONT ( WINDOW_SIZE_X - 8, 8 ) ; 38 Text [ en-US ] = "Table element" ; 39 }; 40 41 FixedText FT_EXISTING_FIELDS 42 { 43 Pos = MAP_APPFONT ( 7, 52 ) ; 44 Size = MAP_APPFONT ( WINDOW_HALF_SIZE_X - ITEM_BUTTON_SIZE_X / 2 - 13, 8 ) ; 45 Text [ en-US ] = "Existing fields" ; 46 }; 47 ListBox LB_EXISTING_FIELDS 48 { 49 HelpID = "extensions:ListBox:RID_PAGE_GW_FIELDSELECTION:LB_EXISTING_FIELDS" ; 50 Pos = MAP_APPFONT ( 7, 63 ) ; 51 Size = MAP_APPFONT ( WINDOW_HALF_SIZE_X - ITEM_BUTTON_SIZE_X / 2 - 13, WINDOW_SIZE_Y - 63 - 6 ) ; 52 SVLook = TRUE ; 53 Border = TRUE ; 54 AutoHScroll = TRUE ; 55 Sort = FALSE ; 56 DropDown = FALSE ; 57 }; 58 PushButton PB_FIELDRIGHT 59 { 60 HelpID = "extensions:PushButton:RID_PAGE_GW_FIELDSELECTION:PB_FIELDRIGHT" ; 61 Pos = MAP_APPFONT ( WINDOW_HALF_SIZE_X - ITEM_BUTTON_SIZE_X / 2, 63 ) ; 62 Size = MAP_APPFONT ( ITEM_BUTTON_SIZE_X, ITEM_BUTTON_SIZE_Y ) ; 63 Text = ">" ; 64 }; 65 PushButton PB_ALLFIELDSRIGHT 66 { 67 HelpID = "extensions:PushButton:RID_PAGE_GW_FIELDSELECTION:PB_ALLFIELDSRIGHT" ; 68 Pos = MAP_APPFONT ( WINDOW_HALF_SIZE_X - ITEM_BUTTON_SIZE_X / 2, 63 + ITEM_BUTTON_SIZE_Y + 3 ) ; 69 Size = MAP_APPFONT ( ITEM_BUTTON_SIZE_X, ITEM_BUTTON_SIZE_Y ) ; 70 Text = ">>" ; 71 }; 72 PushButton PB_FIELDLEFT 73 { 74 HelpID = "extensions:PushButton:RID_PAGE_GW_FIELDSELECTION:PB_FIELDLEFT" ; 75 Pos = MAP_APPFONT ( WINDOW_HALF_SIZE_X - ITEM_BUTTON_SIZE_X / 2, 63 + ITEM_BUTTON_SIZE_Y + 3 + ITEM_BUTTON_SIZE_Y + 12 ) ; 76 Size = MAP_APPFONT ( ITEM_BUTTON_SIZE_X, ITEM_BUTTON_SIZE_Y ) ; 77 Text = "<" ; 78 }; 79 PushButton PB_ALLFIELDSLEFT 80 { 81 HelpID = "extensions:PushButton:RID_PAGE_GW_FIELDSELECTION:PB_ALLFIELDSLEFT" ; 82 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 ) ; 83 Size = MAP_APPFONT ( ITEM_BUTTON_SIZE_X, ITEM_BUTTON_SIZE_Y ) ; 84 Text = "<<" ; 85 }; 86 FixedText FT_SELECTED_FIELDS 87 { 88 Pos = MAP_APPFONT ( WINDOW_HALF_SIZE_X + ITEM_BUTTON_SIZE_X / 2 + 6, 52 ) ; 89 Size = MAP_APPFONT ( WINDOW_HALF_SIZE_X - ITEM_BUTTON_SIZE_X / 2 - 13, 8 ) ; 90 Text [ en-US ] = "Selected fields" ; 91 }; 92 ListBox LB_SELECTED_FIELDS 93 { 94 HelpID = "extensions:ListBox:RID_PAGE_GW_FIELDSELECTION:LB_SELECTED_FIELDS" ; 95 Pos = MAP_APPFONT ( WINDOW_HALF_SIZE_X + ITEM_BUTTON_SIZE_X / 2 + 6, 63 ) ; 96 Size = MAP_APPFONT ( WINDOW_HALF_SIZE_X - ITEM_BUTTON_SIZE_X / 2 - 13, WINDOW_SIZE_Y - 63 - 6 ) ; 97 SVLook = TRUE ; 98 Border = TRUE ; 99 AutoHScroll = TRUE ; 100 Sort = FALSE ; 101 DropDown = FALSE ; 102 }; 103}; 104 105String RID_STR_DATEPOSTFIX 106{ 107 Text [ en-US ] = " (Date)" ; 108}; 109 110String RID_STR_TIMEPOSTFIX 111{ 112 Text [ en-US ] = " (Time)" ; 113}; 114 115// ********************************************************************** EOF 116