xref: /trunk/main/sw/source/ui/misc/bookmark.src (revision 1dc02f04)
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 "bookmark.hrc"
26#include "cmdid.h"
27#include "helpid.h"
28ModalDialog DLG_INSERT_BOOKMARK
29{
30	HelpID = CMD_FN_INSERT_BOOKMARK ;
31	OUTPUTSIZE = TRUE ;
32	Size = MAP_APPFONT ( 179, 96 ) ;
33	Text [ en-US ] = "Insert Bookmark" ;
34	MOVEABLE = TRUE ;
35	SVLOOK = TRUE ;
36	OkButton BT_OK
37	{
38		DISABLE = TRUE ;
39		Pos = MAP_APPFONT ( 123, 6 ) ;
40		Size = MAP_APPFONT ( 50, 14 ) ;
41		TABSTOP = TRUE ;
42		DefButton = TRUE ;
43	};
44	CancelButton BT_CANCEL
45	{
46		Pos = MAP_APPFONT ( 123, 23 ) ;
47		Size = MAP_APPFONT ( 50, 14 ) ;
48		TABSTOP = TRUE ;
49	};
50	ComboBox CB_BOOKMARK
51	{
52		HelpID = "sw:ComboBox:DLG_INSERT_BOOKMARK:CB_BOOKMARK" ;
53		Pos = MAP_APPFONT ( 12, 14 ) ;
54		Size = MAP_APPFONT ( 99, 76 ) ;
55		TABSTOP = TRUE ;
56		AutoHScroll = TRUE ;
57		SORT = TRUE ;
58	};
59	PushButton BT_DELETE
60	{
61		HelpID = "sw:PushButton:DLG_INSERT_BOOKMARK:BT_DELETE" ;
62		Pos = MAP_APPFONT ( 123, 40 ) ;
63		Size = MAP_APPFONT ( 50, 14 ) ;
64		Text [ en-US ] = "~Delete" ;
65		TABSTOP = TRUE ;
66		DISABLE = TRUE ;
67	};
68		FixedLine FL_BOOKMARK
69	{
70		Pos = MAP_APPFONT ( 6, 3 ) ;
71		Size = MAP_APPFONT ( 111, 8 ) ;
72		Text [ en-US ] = "Bookmarks" ;
73	};
74};
75String STR_REMOVE_WARNING
76{
77	Text [ en-US ] = "The following characters are not valid and have been removed: " ;
78};
79
80// ********************************************************************** EOF
81