18660f102SAndrew Rist/************************************************************** 2cdf0e10cSrcweir * 38660f102SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 48660f102SAndrew Rist * or more contributor license agreements. See the NOTICE file 58660f102SAndrew Rist * distributed with this work for additional information 68660f102SAndrew Rist * regarding copyright ownership. The ASF licenses this file 78660f102SAndrew Rist * to you under the Apache License, Version 2.0 (the 88660f102SAndrew Rist * "License"); you may not use this file except in compliance 98660f102SAndrew Rist * with the License. You may obtain a copy of the License at 10cdf0e10cSrcweir * 118660f102SAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12cdf0e10cSrcweir * 138660f102SAndrew Rist * Unless required by applicable law or agreed to in writing, 148660f102SAndrew Rist * software distributed under the License is distributed on an 158660f102SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 168660f102SAndrew Rist * KIND, either express or implied. See the License for the 178660f102SAndrew Rist * specific language governing permissions and limitations 188660f102SAndrew Rist * under the License. 19cdf0e10cSrcweir * 208660f102SAndrew Rist *************************************************************/ 218660f102SAndrew Rist 228660f102SAndrew Rist 23*dfe4b789Smseidel 24cdf0e10cSrcweir// include --------------------------------------------------------------- 25cdf0e10cSrcweir#include "javaedit.hrc" 26cdf0e10cSrcweir#include "fldui.hrc" 27cdf0e10cSrcweir#include "helpid.h" 28cdf0e10cSrcweir// pragma ---------------------------------------------------------------- 29cdf0e10cSrcweir 30cdf0e10cSrcweir// RID_SVXDLG_POSTIT ----------------------------------------------------- 31cdf0e10cSrcweirModalDialog DLG_JAVAEDIT 32cdf0e10cSrcweir{ 33cdf0e10cSrcweir HelpID = "sw:ModalDialog:DLG_JAVAEDIT" ; 34cdf0e10cSrcweir OutputSize = TRUE ; 35cdf0e10cSrcweir SvLook = TRUE ; 36cdf0e10cSrcweir Size = MAP_APPFONT ( 248, 157 ) ; 37cdf0e10cSrcweir Moveable = TRUE ; 38cdf0e10cSrcweir FixedText FT_TYPE 39cdf0e10cSrcweir { 40cdf0e10cSrcweir Pos = MAP_APPFONT ( 12, 15 ) ; 41cdf0e10cSrcweir Size = MAP_APPFONT ( 55, 10 ) ; 42cdf0e10cSrcweir Text [ en-US ] = "Script type" ; 43cdf0e10cSrcweir }; 44cdf0e10cSrcweir Edit ED_TYPE 45cdf0e10cSrcweir { 46cdf0e10cSrcweir HelpID = "sw:Edit:DLG_JAVAEDIT:ED_TYPE" ; 47cdf0e10cSrcweir Border = TRUE ; 48cdf0e10cSrcweir Text = "JavaScript" ; 49*dfe4b789Smseidel // Do not translate!!! 50cdf0e10cSrcweir Pos = MAP_APPFONT ( 70, 14 ) ; 51cdf0e10cSrcweir Size = MAP_APPFONT ( 87, 12 ) ; 52cdf0e10cSrcweir TabStop = TRUE ; 53cdf0e10cSrcweir }; 54cdf0e10cSrcweir RadioButton RB_URL 55cdf0e10cSrcweir { 56cdf0e10cSrcweir HelpID = "sw:RadioButton:DLG_JAVAEDIT:RB_URL" ; 57cdf0e10cSrcweir Pos = MAP_APPFONT ( 12, 28 ) ; 58cdf0e10cSrcweir Size = MAP_APPFONT ( 55, 10 ) ; 59cdf0e10cSrcweir TabStop = TRUE ; 60cdf0e10cSrcweir Text [ en-US ] = "URL" ; 61cdf0e10cSrcweir }; 62cdf0e10cSrcweir Edit ED_URL 63cdf0e10cSrcweir { 64cdf0e10cSrcweir HelpID = "sw:Edit:DLG_JAVAEDIT:ED_URL" ; 65cdf0e10cSrcweir Border = TRUE ; 66cdf0e10cSrcweir Pos = MAP_APPFONT ( 70, 27 ) ; 67cdf0e10cSrcweir Size = MAP_APPFONT ( 87, 12 ) ; 68cdf0e10cSrcweir TabStop = TRUE ; 69cdf0e10cSrcweir }; 70cdf0e10cSrcweir PushButton PB_URL 71cdf0e10cSrcweir { 72cdf0e10cSrcweir HelpID = "sw:PushButton:DLG_JAVAEDIT:PB_URL" ; 73cdf0e10cSrcweir Pos = MAP_APPFONT ( 163, 26 ) ; 74cdf0e10cSrcweir Size = MAP_APPFONT ( 14, 14 ) ; 75cdf0e10cSrcweir Text = "~..." ; 76cdf0e10cSrcweir TabStop = TRUE ; 77cdf0e10cSrcweir }; 78cdf0e10cSrcweir RadioButton RB_EDIT 79cdf0e10cSrcweir { 80cdf0e10cSrcweir HelpID = "sw:RadioButton:DLG_JAVAEDIT:RB_EDIT" ; 81cdf0e10cSrcweir Pos = MAP_APPFONT ( 12, 40 ) ; 82cdf0e10cSrcweir Size = MAP_APPFONT ( 140, 10 ) ; 83cdf0e10cSrcweir Text [ en-US ] = "~Text" ; 84cdf0e10cSrcweir TabStop = TRUE ; 85cdf0e10cSrcweir Check = TRUE ; 86cdf0e10cSrcweir }; 87cdf0e10cSrcweir MultiLineEdit ED_EDIT 88cdf0e10cSrcweir { 89cdf0e10cSrcweir HelpID = "sw:MultiLineEdit:DLG_JAVAEDIT:ED_EDIT" ; 90cdf0e10cSrcweir Border = TRUE ; 91cdf0e10cSrcweir Pos = MAP_APPFONT ( 23, 54 ) ; 92cdf0e10cSrcweir Size = MAP_APPFONT ( 155, 91 ) ; 93cdf0e10cSrcweir Left = TRUE ; 94cdf0e10cSrcweir VScroll = TRUE ; 95cdf0e10cSrcweir HScroll = TRUE ; 96cdf0e10cSrcweir IgnoreTab = TRUE ; 97cdf0e10cSrcweir TabStop = TRUE ; 98cdf0e10cSrcweir }; 99cdf0e10cSrcweir FixedLine FL_POSTIT 100cdf0e10cSrcweir { 101cdf0e10cSrcweir Pos = MAP_APPFONT ( 6, 3 ) ; 102cdf0e10cSrcweir Size = MAP_APPFONT ( 179, 8 ) ; 103cdf0e10cSrcweir Text [ en-US ] = "Contents" ; 104cdf0e10cSrcweir }; 105cdf0e10cSrcweir OKButton BTN_POST_OK 106cdf0e10cSrcweir { 107cdf0e10cSrcweir Pos = MAP_APPFONT ( 191, 6 ) ; 108cdf0e10cSrcweir Size = MAP_APPFONT ( 50, 15 ) ; 109cdf0e10cSrcweir DefButton = TRUE ; 110cdf0e10cSrcweir }; 111cdf0e10cSrcweir CancelButton BTN_POST_CANCEL 112cdf0e10cSrcweir { 113cdf0e10cSrcweir Pos = MAP_APPFONT ( 191, 23 ) ; 114cdf0e10cSrcweir Size = MAP_APPFONT ( 50, 15 ) ; 115cdf0e10cSrcweir }; 116cdf0e10cSrcweir HelpButton BTN_POST_HELP 117cdf0e10cSrcweir { 118cdf0e10cSrcweir Pos = MAP_APPFONT ( 191, 40 ) ; 119cdf0e10cSrcweir Size = MAP_APPFONT ( 50, 15 ) ; 120cdf0e10cSrcweir }; 121cdf0e10cSrcweir ImageButton BTN_PREV 122cdf0e10cSrcweir { 123cdf0e10cSrcweir HelpID = "sw:ImageButton:DLG_JAVAEDIT:BTN_PREV" ; 124cdf0e10cSrcweir Pos = MAP_APPFONT ( 191, 60 ) ; 125cdf0e10cSrcweir Size = MAP_APPFONT ( 24, 14 ) ; 126cdf0e10cSrcweir Symbol = IMAGEBUTTON_ARROW_LEFT ; 127cdf0e10cSrcweir }; 128cdf0e10cSrcweir ImageButton BTN_NEXT 129cdf0e10cSrcweir { 130cdf0e10cSrcweir HelpID = "sw:ImageButton:DLG_JAVAEDIT:BTN_NEXT" ; 131cdf0e10cSrcweir Pos = MAP_APPFONT ( 217, 60 ) ; 132cdf0e10cSrcweir Size = MAP_APPFONT ( 24, 14 ) ; 133cdf0e10cSrcweir Symbol = IMAGEBUTTON_ARROW_RIGHT ; 134cdf0e10cSrcweir }; 135*dfe4b789Smseidel // local strings 136cdf0e10cSrcweir String STR_JAVA_EDIT 137cdf0e10cSrcweir { 138cdf0e10cSrcweir Text [ en-US ] = "Edit Script" ; 139cdf0e10cSrcweir }; 140cdf0e10cSrcweir String STR_JAVA_INSERT 141cdf0e10cSrcweir { 142cdf0e10cSrcweir Text [ en-US ] = "Insert Script" ; 143cdf0e10cSrcweir }; 144cdf0e10cSrcweir Text [ en-US ] = "Edit Script" ; 145cdf0e10cSrcweir}; 146*dfe4b789Smseidel 147cdf0e10cSrcweir// ********************************************************************** EOF 148