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