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 --------------------------------------------------------------- 25#include "javaedit.hrc" 26#include "fldui.hrc" 27#include "helpid.h" 28// pragma ---------------------------------------------------------------- 29 30// RID_SVXDLG_POSTIT ----------------------------------------------------- 31ModalDialog DLG_JAVAEDIT 32{ 33 HelpID = "sw:ModalDialog:DLG_JAVAEDIT" ; 34 OutputSize = TRUE ; 35 SvLook = TRUE ; 36 Size = MAP_APPFONT ( 248, 157 ) ; 37 Moveable = TRUE ; 38 FixedText FT_TYPE 39 { 40 Pos = MAP_APPFONT ( 12, 15 ) ; 41 Size = MAP_APPFONT ( 55, 10 ) ; 42 Text [ en-US ] = "Script type" ; 43 }; 44 Edit ED_TYPE 45 { 46 HelpID = "sw:Edit:DLG_JAVAEDIT:ED_TYPE" ; 47 Border = TRUE ; 48 Text = "JavaScript" ; 49 // Do not translate!!! 50 Pos = MAP_APPFONT ( 70, 14 ) ; 51 Size = MAP_APPFONT ( 87, 12 ) ; 52 TabStop = TRUE ; 53 }; 54 RadioButton RB_URL 55 { 56 HelpID = "sw:RadioButton:DLG_JAVAEDIT:RB_URL" ; 57 Pos = MAP_APPFONT ( 12, 28 ) ; 58 Size = MAP_APPFONT ( 55, 10 ) ; 59 TabStop = TRUE ; 60 Text [ en-US ] = "URL" ; 61 }; 62 Edit ED_URL 63 { 64 HelpID = "sw:Edit:DLG_JAVAEDIT:ED_URL" ; 65 Border = TRUE ; 66 Pos = MAP_APPFONT ( 70, 27 ) ; 67 Size = MAP_APPFONT ( 87, 12 ) ; 68 TabStop = TRUE ; 69 }; 70 PushButton PB_URL 71 { 72 HelpID = "sw:PushButton:DLG_JAVAEDIT:PB_URL" ; 73 Pos = MAP_APPFONT ( 163, 26 ) ; 74 Size = MAP_APPFONT ( 14, 14 ) ; 75 Text = "~..." ; 76 TabStop = TRUE ; 77 }; 78 RadioButton RB_EDIT 79 { 80 HelpID = "sw:RadioButton:DLG_JAVAEDIT:RB_EDIT" ; 81 Pos = MAP_APPFONT ( 12, 40 ) ; 82 Size = MAP_APPFONT ( 140, 10 ) ; 83 Text [ en-US ] = "~Text" ; 84 TabStop = TRUE ; 85 Check = TRUE ; 86 }; 87 MultiLineEdit ED_EDIT 88 { 89 HelpID = "sw:MultiLineEdit:DLG_JAVAEDIT:ED_EDIT" ; 90 Border = TRUE ; 91 Pos = MAP_APPFONT ( 23, 54 ) ; 92 Size = MAP_APPFONT ( 155, 91 ) ; 93 Left = TRUE ; 94 VScroll = TRUE ; 95 HScroll = TRUE ; 96 IgnoreTab = TRUE ; 97 TabStop = TRUE ; 98 }; 99 FixedLine FL_POSTIT 100 { 101 Pos = MAP_APPFONT ( 6, 3 ) ; 102 Size = MAP_APPFONT ( 179, 8 ) ; 103 Text [ en-US ] = "Contents" ; 104 }; 105 OKButton BTN_POST_OK 106 { 107 Pos = MAP_APPFONT ( 191, 6 ) ; 108 Size = MAP_APPFONT ( 50, 15 ) ; 109 DefButton = TRUE ; 110 }; 111 CancelButton BTN_POST_CANCEL 112 { 113 Pos = MAP_APPFONT ( 191, 23 ) ; 114 Size = MAP_APPFONT ( 50, 15 ) ; 115 }; 116 HelpButton BTN_POST_HELP 117 { 118 Pos = MAP_APPFONT ( 191, 40 ) ; 119 Size = MAP_APPFONT ( 50, 15 ) ; 120 }; 121 ImageButton BTN_PREV 122 { 123 HelpID = "sw:ImageButton:DLG_JAVAEDIT:BTN_PREV" ; 124 Pos = MAP_APPFONT ( 191, 60 ) ; 125 Size = MAP_APPFONT ( 24, 14 ) ; 126 Symbol = IMAGEBUTTON_ARROW_LEFT ; 127 }; 128 ImageButton BTN_NEXT 129 { 130 HelpID = "sw:ImageButton:DLG_JAVAEDIT:BTN_NEXT" ; 131 Pos = MAP_APPFONT ( 217, 60 ) ; 132 Size = MAP_APPFONT ( 24, 14 ) ; 133 Symbol = IMAGEBUTTON_ARROW_RIGHT ; 134 }; 135 // local strings 136 String STR_JAVA_EDIT 137 { 138 Text [ en-US ] = "Edit Script" ; 139 }; 140 String STR_JAVA_INSERT 141 { 142 Text [ en-US ] = "Insert Script" ; 143 }; 144 Text [ en-US ] = "Edit Script" ; 145}; 146 147// ********************************************************************** EOF 148