xref: /AOO41X/main/sw/source/ui/misc/redlndlg.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/* StarView ressource file */
24
25#include "redlndlg.hrc"
26#include "misc.hrc"
27#include "helpid.h"
28
29#define WIDTH 297
30#define HEIGHT 169
31
32#define REDLNDLG \
33    OutputSize = TRUE ; \
34    SVLook = TRUE ; \
35    Size = MAP_APPFONT ( WIDTH , HEIGHT ) ; \
36    Moveable = TRUE ; \
37    Closeable = TRUE ; \
38    Sizeable = TRUE ; \
39    Hide = TRUE ; \
40    Control CTRL_TABPAGES\
41    {\
42        Pos = MAP_APPFONT ( XBORDER , YBORDER ) ; \
43        Size = MAP_APPFONT ( WIDTH - XBORDER * 2 , HEIGHT - YBORDER * 2 ) ; \
44        HelpID = HID_REDLINE_CTRL ; \
45        TabStop = TRUE ; \
46    };
47
48ModelessDialog DLG_REDLINE_ACCEPT
49{
50    HelpID = HID_REDLINE_ACCEPT ;
51    /* ### ACHTUNG: Neuer Text in Resource? �nderungen akzeptieren oder verwerfen : Redlining */
52    Text [ en-US ] = "Accept or Reject Changes" ;
53    REDLNDLG
54};
55
56ModalDialog DLG_MOD_REDLINE_ACCEPT
57{
58    HelpID = HID_REDLINE_AUTOFMT_ACCEPT ;
59    REDLNDLG
60    Text [ en-US ] = "Accept or Reject AutoCorrect Changes";
61};
62
63Menu MN_REDLINE_POPUP
64{
65    ItemList =
66    {
67        MenuItem
68        {
69            Identifier = MN_EDIT_COMMENT ;
70            HelpID = HID_EDIT_COMMENT ;
71            Text [ en-US ] = "Edit Comment..." ;
72        };
73        MenuItem
74        {
75            Identifier = MN_SUB_SORT ;
76            RadioCheck = TRUE ;
77            SubMenu = Menu
78            {
79                ItemList =
80                {
81                    MenuItem
82                    {
83                        Identifier = MN_SORT_ACTION ;
84                        HelpID = HID_SORT_ACTION ;
85                        RadioCheck = TRUE ;
86                        Text [ en-US ] = "Action" ;
87                    };
88                    MenuItem
89                    {
90                        Identifier = MN_SORT_AUTHOR ;
91                        HelpID = HID_SORT_AUTHOR ;
92                        RadioCheck = TRUE ;
93                        Text [ en-US ] = "Author" ;
94                    };
95                    MenuItem
96                    {
97                        Identifier = MN_SORT_DATE ;
98                        HelpID = HID_SORT_DATE ;
99                        RadioCheck = TRUE ;
100                        Text [ en-US ] = "Date" ;
101                    };
102                    MenuItem
103                    {
104                        Identifier = MN_SORT_COMMENT ;
105                        HelpID = HID_SORT_COMMENT ;
106                        RadioCheck = TRUE ;
107                        Text [ en-US ] = "Comment" ;
108                    };
109                    MenuItem
110                    {
111                        Identifier = MN_SORT_POSITION ;
112                        HelpID = HID_SW_SORT_POSITION ;
113                        RadioCheck = TRUE ;
114                        Text [ en-US ] = "Document position" ;
115                    };
116                };
117            };
118            Text [ en-US ] = "Sort By" ;
119        };
120    };
121};
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145