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