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#include "glosbib.hrc" 25#include "misc.hrc" 26#include "helpid.h" 27ModalDialog DLG_BIB_BASE 28{ 29 HelpID = HID_BIB_BASE ; 30 OutputSize = TRUE ; 31 SVLook = TRUE ; 32 Size = MAP_APPFONT ( 349 , 121 ) ; 33 Moveable = TRUE ; 34 Text [ en-US ] = "Edit Categories" ; 35 PushButton PB_NEW 36 { 37 HelpID = "sw:PushButton:DLG_BIB_BASE:PB_NEW"; 38 Disable = TRUE ; 39 Pos = MAP_APPFONT ( 293 , 66 ) ; 40 Size = MAP_APPFONT ( 50 , 14 ) ; 41 Text [ en-US ] = "~New" ; 42 TabStop = TRUE ; 43 }; 44 PushButton PB_DELETE 45 { 46 HelpID = "sw:PushButton:DLG_BIB_BASE:PB_DELETE"; 47 Pos = MAP_APPFONT ( 293 , 83 ) ; 48 Size = MAP_APPFONT ( 50 , 14 ) ; 49 /* ### ACHTUNG: Neuer Text in Resource? ~L�schen : ~L�schen */ 50 Text [ en-US ] = "~Delete" ; 51 TabStop = TRUE ; 52 Disable = TRUE ; 53 }; 54 PushButton PB_RENAME 55 { 56 HelpID = "sw:PushButton:DLG_BIB_BASE:PB_RENAME"; 57 Disable = TRUE ; 58 Pos = MAP_APPFONT ( 293 , 100 ) ; 59 Size = MAP_APPFONT ( 50 , 14 ) ; 60 Text [ en-US ] = "~Rename" ; 61 TabStop = TRUE ; 62 }; 63 FixedText FT_BIB 64 { 65 Pos = MAP_APPFONT ( 12 , 3 ) ; 66 Size = MAP_APPFONT ( 100 , 8 ) ; 67 Text [ en-US ] = "Category" ; 68 }; 69 OKButton BT_OK 70 { 71 Pos = MAP_APPFONT ( 293 , 6 ) ; 72 Size = MAP_APPFONT ( 50 , 14 ) ; 73 TabStop = TRUE ; 74 DefButton = TRUE ; 75 }; 76 CancelButton BT_CANCEL 77 { 78 Pos = MAP_APPFONT ( 293 , 23 ) ; 79 Size = MAP_APPFONT ( 50 , 14 ) ; 80 TabStop = TRUE ; 81 }; 82 HelpButton BT_HELP 83 { 84 Pos = MAP_APPFONT ( 293 , 43 ) ; 85 Size = MAP_APPFONT ( 50 , 14 ) ; 86 TabStop = TRUE ; 87 }; 88 Edit ED_NAME 89 { 90 HelpID = "sw:Edit:DLG_BIB_BASE:ED_NAME"; 91 Pos = MAP_APPFONT ( 12 , 14 ) ; 92 Size = MAP_APPFONT ( 159 , 12 ) ; 93 TabStop = TRUE ; 94 Border = TRUE ; 95 MaxTextLength = 256 ; 96 }; 97 FixedText FT_PATH 98 { 99 Pos = MAP_APPFONT ( 174 , 3 ) ; 100 Size = MAP_APPFONT ( 60 , 8 ) ; 101 Text [ en-US ] = "Path"; 102 }; 103 ListBox LB_PATH 104 { 105 HelpID = "sw:ListBox:DLG_BIB_BASE:LB_PATH"; 106 Pos = MAP_APPFONT ( 174 , 14 ) ; 107 Size = MAP_APPFONT ( 107 , 50 ) ; 108 DropDown = TRUE ; 109 Border = TRUE ; 110 TabStop = TRUE ; 111 DDExtraWidth = TRUE ; 112 }; 113 FixedText FT_SELECT 114 { 115 Pos = MAP_APPFONT ( 12 , 30 ) ; 116 Size = MAP_APPFONT ( 100 , 8 ) ; 117 Text [ en-US ] = "Selection list"; 118 }; 119 Control TLB_GROUPS 120 { 121 Pos = MAP_APPFONT ( 12 , 41 ) ; 122 Size = MAP_APPFONT ( 269 , 73 ) ; 123 TabStop = TRUE ; 124 Border = TRUE ; 125 }; 126 /* ComboBox CO_NAME 127 { 128 Pos = MAP_APPFONT ( 12 , 14 ) ; 129 Size = MAP_APPFONT ( 89 , 76 ) ; 130 TabStop = TRUE ; 131#ifdef WIN 132 MaxTextLength = 8 ; 133#else 134 MaxTextLength = 32 ; 135#endif 136 Sort = TRUE ; 137 };*/ 138}; 139/* 140String STR_GLOSSARY_BIB_DLG 141{ 142 Text [ en-US ] = "Edit Categories" ; 143};*/ 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180