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