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 "misc.hrc" 25#include "bookmark.hrc" 26#include "cmdid.h" 27#include "helpid.h" 28ModalDialog DLG_INSERT_BOOKMARK 29{ 30 HelpID = CMD_FN_INSERT_BOOKMARK ; 31 OUTPUTSIZE = TRUE ; 32 Size = MAP_APPFONT ( 179 , 96 ) ; 33 /* ### ACHTUNG: Neuer Text in Resource? Textmarke einf�gen : Textmarke einf�gen */ 34 Text [ en-US ] = "Insert Bookmark" ; 35 MOVEABLE = TRUE ; 36 SVLOOK = TRUE ; 37 OkButton BT_OK 38 { 39 DISABLE = TRUE ; 40 Pos = MAP_APPFONT ( 123 , 6 ) ; 41 Size = MAP_APPFONT ( 50 , 14 ) ; 42 TABSTOP = TRUE ; 43 DefButton = TRUE ; 44 }; 45 CancelButton BT_CANCEL 46 { 47 Pos = MAP_APPFONT ( 123 , 23 ) ; 48 Size = MAP_APPFONT ( 50 , 14 ) ; 49 TABSTOP = TRUE ; 50 }; 51 ComboBox CB_BOOKMARK 52 { 53 HelpID = "sw:ComboBox:DLG_INSERT_BOOKMARK:CB_BOOKMARK"; 54 Pos = MAP_APPFONT ( 12 , 14 ) ; 55 Size = MAP_APPFONT ( 99 , 76 ) ; 56 TABSTOP = TRUE ; 57 AutoHScroll = TRUE ; 58 SORT = TRUE ; 59 }; 60 PushButton BT_DELETE 61 { 62 HelpID = "sw:PushButton:DLG_INSERT_BOOKMARK:BT_DELETE"; 63 Pos = MAP_APPFONT ( 123 , 40 ) ; 64 Size = MAP_APPFONT ( 50 , 14 ) ; 65 /* ### ACHTUNG: Neuer Text in Resource? ~L�schen : ~L�schen */ 66 Text [ en-US ] = "~Delete" ; 67 TABSTOP = TRUE ; 68 DISABLE = TRUE ; 69 }; 70 FixedLine FL_BOOKMARK 71 { 72 Pos = MAP_APPFONT ( 6 , 3 ) ; 73 Size = MAP_APPFONT ( 111 , 8 ) ; 74 Text [ en-US ] = "Bookmarks" ; 75 }; 76}; 77String STR_REMOVE_WARNING 78{ 79 Text [ en-US ] = "The following characters are not valid and have been removed: "; 80}; 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115