xref: /AOO41X/main/sw/source/ui/ribbar/tbxanchr.src (revision 8660f102e0dedad7df9a3fe0f3e5d0f91bcf072b)
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 "ribbar.hrc"
25#include "cmdid.h"
26Menu MN_ANCHOR_POPUP
27{
28    ItemList =
29    {
30        MenuItem
31        {
32            _MenuItemFlags = MIB_RADIOCHECK ;
33            RadioCheck = TRUE ;
34            Identifier = FN_TOOL_ANKER_PAGE ;
35            Text [ en-US ] = "To Page" ;
36        };
37        MenuItem
38        {
39            _MenuItemFlags = MIB_RADIOCHECK ;
40            RadioCheck = TRUE ;
41            Identifier = FN_TOOL_ANKER_PARAGRAPH ;
42            Text [ en-US ] = "To Paragraph" ;
43        };
44        MenuItem
45        {
46            _MenuItemFlags = MIB_RADIOCHECK ;
47            RadioCheck = TRUE ;
48            Identifier = FN_TOOL_ANKER_AT_CHAR ;
49            Text [ en-US ] = "To Character" ;
50        };
51        MenuItem
52        {
53            _MenuItemFlags = MIB_RADIOCHECK ;
54            RadioCheck = TRUE ;
55            Identifier = FN_TOOL_ANKER_CHAR ;
56            Text [ en-US ] = "As Character" ;
57        };
58        MenuItem
59        {
60            _MenuItemFlags = MIB_RADIOCHECK ;
61            RadioCheck = TRUE ;
62            Identifier = FN_TOOL_ANKER_FRAME ;
63            Text [ en-US ] = "To Frame" ;
64        };
65    };
66};
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104