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#include <customizeaddresslistdialog.hrc> 23#include <dbui.hrc> 24#include <helpid.h> 25 26ModalDialog DLG_MM_CUSTOMIZE_ADDRESS_LIST 27{ 28 OutputSize = TRUE ; 29 SVLook = TRUE ; 30 HelpID = HID_MM_CUSTOMIZE_ADDRESS_LIST ; 31 Size = MAP_APPFONT ( 200, 171 ) ; 32 Moveable = TRUE ; 33 34 Text [ en-US ] = "Customize Address List" ; 35 36 FixedText FT_FIELDS 37 { 38 Pos = MAP_APPFONT ( 6, 3 ) ; 39 Size = MAP_APPFONT ( 100, 8 ) ; 40 Text [ en-US ] = "A~ddress list elements" ; 41 }; 42 ListBox LB_FIELDS 43 { 44 HelpID = "sw:ListBox:DLG_MM_CUSTOMIZE_ADDRESS_LIST:LB_FIELDS" ; 45 Pos = MAP_APPFONT ( 6, 14 ) ; 46 Size = MAP_APPFONT ( 112, 120 ) ; 47 Border = TRUE ; 48 }; 49 PushButton PB_ADD 50 { 51 HelpID = "sw:PushButton:DLG_MM_CUSTOMIZE_ADDRESS_LIST:PB_ADD" ; 52 Pos = MAP_APPFONT ( 144, 3 ) ; 53 Size = MAP_APPFONT ( 50, 14 ) ; 54 Text [ en-US ] = "~Add..." ; 55 }; 56 PushButton PB_DELETE 57 { 58 HelpID = "sw:PushButton:DLG_MM_CUSTOMIZE_ADDRESS_LIST:PB_DELETE" ; 59 Pos = MAP_APPFONT ( 144, 20 ) ; 60 Size = MAP_APPFONT ( 50, 14 ) ; 61 Text [ en-US ] = "~Delete" ; 62 }; 63 PushButton PB_RENAME 64 { 65 HelpID = "sw:PushButton:DLG_MM_CUSTOMIZE_ADDRESS_LIST:PB_RENAME" ; 66 Pos = MAP_APPFONT ( 144, 37 ) ; 67 Size = MAP_APPFONT ( 50, 14 ) ; 68 Text [ en-US ] = "~Rename..." ; 69 }; 70 ImageButton PB_UP 71 { 72 HelpID = "sw:ImageButton:DLG_MM_CUSTOMIZE_ADDRESS_LIST:PB_UP" ; 73 Pos = MAP_APPFONT ( 124, 58 ) ; 74 Size = MAP_APPFONT ( 14, 14 ) ; 75 SYMBOL = IMAGEBUTTON_ARROW_UP; 76 QuickHelpText [ en-US ] = "Move up" ; 77 }; 78 ImageButton PB_DOWN 79 { 80 HelpID = "sw:ImageButton:DLG_MM_CUSTOMIZE_ADDRESS_LIST:PB_DOWN" ; 81 Pos = MAP_APPFONT ( 124, 75 ) ; 82 Size = MAP_APPFONT ( 14, 14 ) ; 83 SYMBOL = IMAGEBUTTON_ARROW_DOWN; 84 QuickHelpText [ en-US ] = "Move down" ; 85 }; 86 FixedLine FL_SEPARATOR 87 { 88 Pos = MAP_APPFONT ( 0, 140 ) ; 89 Size = MAP_APPFONT ( 200, 8 ) ; 90 }; 91 OKButton PB_OK 92 { 93 Pos = MAP_APPFONT ( 35, 151 ) ; 94 Size = MAP_APPFONT ( 50, 14 ) ; 95 DefButton = TRUE ; 96 }; 97 CancelButton PB_CANCEL 98 { 99 Pos = MAP_APPFONT ( 88, 151 ) ; 100 Size = MAP_APPFONT ( 50, 14 ) ; 101 }; 102 HelpButton PB_HELP 103 { 104 Pos = MAP_APPFONT ( 144, 151 ) ; 105 Size = MAP_APPFONT ( 50, 14 ) ; 106 }; 107}; 108 109ModalDialog DLG_MM_ADD_RENAME_ENTRY 110{ 111 OutputSize = TRUE ; 112 SVLook = TRUE ; 113 HelpID = HID_MM_ADD_RENAME_ENTRY ; 114 Size = MAP_APPFONT ( 188, 60 ) ; 115 Moveable = TRUE ; 116 117 Text [ en-US ] = "Add Element" ; 118 119 FixedText FT_FIELDNAME 120 { 121 Pos = MAP_APPFONT ( 6, 3 ) ; 122 Size = MAP_APPFONT ( 50, 8 ) ; 123 Text [ en-US ] = "Element ~name" ; 124 }; 125 Edit ED_FIELDNAME 126 { 127 HelpID = "sw:Edit:DLG_MM_ADD_RENAME_ENTRY:ED_FIELDNAME" ; 128 Pos = MAP_APPFONT ( 6, 14 ) ; 129 Size = MAP_APPFONT ( 120, 12 ) ; 130 Border = TRUE ; 131 }; 132 133 OKButton PB_OK 134 { 135 Pos = MAP_APPFONT ( 132, 3 ) ; 136 Size = MAP_APPFONT ( 50, 14 ) ; 137 DefButton = TRUE ; 138 }; 139 CancelButton PB_CANCEL 140 { 141 Pos = MAP_APPFONT ( 132, 20 ) ; 142 Size = MAP_APPFONT ( 50, 14 ) ; 143 }; 144 HelpButton PB_HELP 145 { 146 Pos = MAP_APPFONT ( 132, 40 ) ; 147 Size = MAP_APPFONT ( 50, 14 ) ; 148 }; 149 String ST_RENAME_TITLE 150 { 151 Text [ en-US ] = "Rename Element" ; 152 }; 153 String ST_ADD_BUTTON 154 { 155 Text [ en-US ] = "Add" ; 156 }; 157}; 158 159// ********************************************************************** EOF 160