1/************************************************************************* 2 * 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 * 5 * Copyright 2000, 2010 Oracle and/or its affiliates. 6 * 7 * OpenOffice.org - a multi-platform office productivity suite 8 * 9 * This file is part of OpenOffice.org. 10 * 11 * OpenOffice.org is free software: you can redistribute it and/or modify 12 * it under the terms of the GNU Lesser General Public License version 3 13 * only, as published by the Free Software Foundation. 14 * 15 * OpenOffice.org is distributed in the hope that it will be useful, 16 * but WITHOUT ANY WARRANTY; without even the implied warranty of 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 * GNU Lesser General Public License version 3 for more details 19 * (a copy is included in the LICENSE file that accompanied this code). 20 * 21 * You should have received a copy of the GNU Lesser General Public License 22 * version 3 along with OpenOffice.org. If not, see 23 * <http://www.openoffice.org/license.html> 24 * for a copy of the LGPLv3 License. 25 * 26 ************************************************************************/ 27 // include --------------------------------------------------------------- 28#include "javaedit.hrc" 29#include "fldui.hrc" 30#include "helpid.h" 31 // pragma ---------------------------------------------------------------- 32 33 // RID_SVXDLG_POSTIT ----------------------------------------------------- 34ModalDialog DLG_JAVAEDIT 35{ 36 HelpID = "sw:ModalDialog:DLG_JAVAEDIT"; 37 OutputSize = TRUE ; 38 SvLook = TRUE ; 39 Size = MAP_APPFONT ( 248 , 157 ) ; 40 Moveable = TRUE ; 41 FixedText FT_TYPE 42 { 43 Pos = MAP_APPFONT ( 12 , 15 ) ; 44 Size = MAP_APPFONT ( 55 , 10 ) ; 45 Text [ en-US ] = "Script type" ; 46 }; 47 Edit ED_TYPE 48 { 49 HelpID = "sw:Edit:DLG_JAVAEDIT:ED_TYPE"; 50 Border = TRUE ; 51 Text = "JavaScript" ; 52 // Nicht uebersetzen!!! 53 Pos = MAP_APPFONT ( 70 , 14 ) ; 54 Size = MAP_APPFONT ( 87 , 12 ) ; 55 TabStop = TRUE ; 56 }; 57 RadioButton RB_URL 58 { 59 HelpID = "sw:RadioButton:DLG_JAVAEDIT:RB_URL"; 60 Pos = MAP_APPFONT ( 12 , 28 ) ; 61 Size = MAP_APPFONT ( 55 , 10 ) ; 62 TabStop = TRUE ; 63 Text [ en-US ] = "URL" ; 64 }; 65 Edit ED_URL 66 { 67 HelpID = "sw:Edit:DLG_JAVAEDIT:ED_URL"; 68 Border = TRUE ; 69 Pos = MAP_APPFONT ( 70 , 27 ) ; 70 Size = MAP_APPFONT ( 87 , 12 ) ; 71 TabStop = TRUE ; 72 }; 73 PushButton PB_URL 74 { 75 HelpID = "sw:PushButton:DLG_JAVAEDIT:PB_URL"; 76 Pos = MAP_APPFONT ( 163 , 26 ) ; 77 Size = MAP_APPFONT ( 14 , 14 ) ; 78 Text = "~..." ; 79 TabStop = TRUE ; 80 }; 81 RadioButton RB_EDIT 82 { 83 HelpID = "sw:RadioButton:DLG_JAVAEDIT:RB_EDIT"; 84 Pos = MAP_APPFONT ( 12 , 40 ) ; 85 Size = MAP_APPFONT ( 140 , 10 ) ; 86 Text [ en-US ] = "~Text" ; 87 TabStop = TRUE ; 88 Check = TRUE ; 89 }; 90 MultiLineEdit ED_EDIT 91 { 92 HelpID = "sw:MultiLineEdit:DLG_JAVAEDIT:ED_EDIT"; 93 Border = TRUE ; 94 Pos = MAP_APPFONT ( 23 , 54 ) ; 95 Size = MAP_APPFONT ( 155 , 91 ) ; 96 Left = TRUE ; 97 VScroll = TRUE ; 98 HScroll = TRUE ; 99 IgnoreTab = TRUE ; 100 TabStop = TRUE ; 101 }; 102 FixedLine FL_POSTIT 103 { 104 Pos = MAP_APPFONT ( 6 , 3 ) ; 105 Size = MAP_APPFONT ( 179 , 8 ) ; 106 Text [ en-US ] = "Contents" ; 107 }; 108 OKButton BTN_POST_OK 109 { 110 Pos = MAP_APPFONT ( 191 , 6 ) ; 111 Size = MAP_APPFONT ( 50 , 15 ) ; 112 DefButton = TRUE ; 113 }; 114 CancelButton BTN_POST_CANCEL 115 { 116 Pos = MAP_APPFONT ( 191 , 23 ) ; 117 Size = MAP_APPFONT ( 50 , 15 ) ; 118 }; 119 HelpButton BTN_POST_HELP 120 { 121 Pos = MAP_APPFONT ( 191 , 40 ) ; 122 Size = MAP_APPFONT ( 50 , 15 ) ; 123 }; 124 ImageButton BTN_PREV 125 { 126 HelpID = "sw:ImageButton:DLG_JAVAEDIT:BTN_PREV"; 127 Pos = MAP_APPFONT ( 191 , 60 ) ; 128 Size = MAP_APPFONT ( 24 , 14 ) ; 129 Symbol = IMAGEBUTTON_ARROW_LEFT ; 130 }; 131 ImageButton BTN_NEXT 132 { 133 HelpID = "sw:ImageButton:DLG_JAVAEDIT:BTN_NEXT"; 134 Pos = MAP_APPFONT ( 217 , 60 ) ; 135 Size = MAP_APPFONT ( 24 , 14 ) ; 136 Symbol = IMAGEBUTTON_ARROW_RIGHT ; 137 }; 138 // lokale Strings 139 String STR_JAVA_EDIT 140 { 141 Text [ en-US ] = "Edit Script" ; 142 }; 143 String STR_JAVA_INSERT 144 { 145 /* ### ACHTUNG: Neuer Text in Resource? Script einf�gen : Script einf�gen */ 146 Text [ en-US ] = "Insert Script" ; 147 }; 148 Text [ en-US ] = "Edit Script" ; 149}; 150 // ********************************************************************** EOF 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 181 182