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 "insfnote.hrc" 26#include "helpid.h" 27 // #define DLG_INS_FOOTNOTE 257 28ModalDialog DLG_INS_FOOTNOTE 29{ 30 HelpID = "sw:ModalDialog:DLG_INS_FOOTNOTE"; 31 OutputSize = TRUE ; 32 SVLook = TRUE ; 33 Size = MAP_APPFONT ( 160 , 100 ) ; 34 /* ### ACHTUNG: Neuer Text in Resource? Fu�note einf�gen : Fu�note einf�gen */ 35 Text [ en-US ] = "Insert Footnote/Endnote" ; 36 Moveable = TRUE ; 37 Edit ED_NUMBER_CHAR 38 { 39 HelpID = "sw:Edit:DLG_INS_FOOTNOTE:ED_NUMBER_CHAR"; 40 Disable = TRUE ; 41 Border = TRUE ; 42 Pos = MAP_APPFONT ( 69 , 27 ) ; 43 Size = MAP_APPFONT ( 23 , 12 ) ; 44 TabStop = TRUE ; 45 Group = TRUE ; 46 Left = TRUE ; 47 }; 48 String STR_CHAR 49 { 50 Text [ en-US ] = "Character" ; 51 }; 52 OKButton BT_OK 53 { 54 Pos = MAP_APPFONT ( 104 , 6 ) ; 55 Size = MAP_APPFONT ( 50 , 14 ) ; 56 TabStop = TRUE ; 57 Group = TRUE ; 58 DefButton = TRUE ; 59 }; 60 CancelButton BT_CANCEL 61 { 62 Pos = MAP_APPFONT ( 104 , 23 ) ; 63 Size = MAP_APPFONT ( 50 , 14 ) ; 64 TabStop = TRUE ; 65 Group = TRUE ; 66 }; 67 HelpButton BT_HELP 68 { 69 Pos = MAP_APPFONT ( 104 , 43 ) ; 70 Size = MAP_APPFONT ( 50 , 14 ) ; 71 TabStop = TRUE ; 72 Group = TRUE ; 73 }; 74 ImageButton BT_PREV 75 { 76 HelpID = "sw:ImageButton:DLG_INS_FOOTNOTE:BT_PREV"; 77 Pos = MAP_APPFONT ( 104 , 82 ) ; 78 Size = MAP_APPFONT ( 24 , 14 ) ; 79 TabStop = TRUE ; 80 Hide = TRUE ; 81 SYMBOL = IMAGEBUTTON_PREV ; 82 }; 83 ImageButton BT_NEXT 84 { 85 HelpID = "sw:ImageButton:DLG_INS_FOOTNOTE:BT_NEXT"; 86 Pos = MAP_APPFONT ( 130 , 82 ) ; 87 Size = MAP_APPFONT ( 24 , 14 ) ; 88 TabStop = TRUE ; 89 Hide = TRUE ; 90 SYMBOL = IMAGEBUTTON_NEXT ; 91 }; 92 RadioButton RB_NUMBER_AUTO 93 { 94 HelpID = "sw:RadioButton:DLG_INS_FOOTNOTE:RB_NUMBER_AUTO"; 95 Pos = MAP_APPFONT ( 12 , 14 ) ; 96 Size = MAP_APPFONT ( 79 , 10 ) ; 97 Text [ en-US ] = "~Automatic" ; 98 TabStop = TRUE ; 99 Group = TRUE ; 100 Check = TRUE ; 101 }; 102 RadioButton RB_NUMBER_CHAR 103 { 104 HelpID = "sw:RadioButton:DLG_INS_FOOTNOTE:RB_NUMBER_CHAR"; 105 Pos = MAP_APPFONT ( 12 , 27 ) ; 106 Size = MAP_APPFONT ( 54 , 10 ) ; 107 Text [ en-US ] = "~Character" ; 108 }; 109 FixedLine FL_NUMBER 110 { 111 Pos = MAP_APPFONT ( 6 , 3 ) ; 112 Size = MAP_APPFONT ( 92 , 8 ) ; 113 Text [ en-US ] = "Numbering" ; 114 }; 115 PushButton BT_NUMBER_CHAR 116 { 117 HelpID = "sw:PushButton:DLG_INS_FOOTNOTE:BT_NUMBER_CHAR"; 118 Pos = MAP_APPFONT ( 69 , 42 ) ; 119 Size = MAP_APPFONT ( 12 , 12 ) ; 120 Text = "..." ; 121 }; 122 RadioButton RB_TYPE_FTN 123 { 124 HelpID = "sw:RadioButton:DLG_INS_FOOTNOTE:RB_TYPE_FTN"; 125 Pos = MAP_APPFONT ( 12 , 70 ) ; 126 Size = MAP_APPFONT ( 79 , 10 ) ; 127 TabStop = TRUE ; 128 Group = TRUE ; 129 Check = TRUE ; 130 Text [ en-US ] = "~Footnote" ; 131 }; 132 RadioButton RB_TYPE_ENDNOTE 133 { 134 HelpID = "sw:RadioButton:DLG_INS_FOOTNOTE:RB_TYPE_ENDNOTE"; 135 Pos = MAP_APPFONT ( 12 , 83 ) ; 136 Size = MAP_APPFONT ( 79 , 10 ) ; 137 Text [ en-US ] = "~Endnote" ; 138 }; 139 FixedLine FL_TYPE 140 { 141 Pos = MAP_APPFONT ( 6 , 60 ) ; 142 Size = MAP_APPFONT ( 92 , 8 ) ; 143 Text [ en-US ] = "Type" ; 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