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 "acredlin.hrc" 25ModelessDialog RID_SCDLG_CHANGES 26{ 27 OutputSize = TRUE ; 28 HelpId = CMD_FID_CHG_ACCEPT ; 29 Hide = TRUE ; 30 SVLook = TRUE ; 31 Size = MAP_APPFONT ( 282, 142 ) ; 32 Moveable = TRUE ; 33 Sizeable = TRUE ; 34 Closeable = TRUE ; 35 // This dialog has a Cancel button! 36 Control CTR_REDLINING 37 { 38 HelpId = HID_SC_REDLIN_CTR ; 39 Pos = MAP_APPFONT ( 2, 2 ) ; 40 Size = MAP_APPFONT ( 270, 105 ) ; 41 }; 42 CancelButton BTN_CANCEL 43 { 44 Pos = MAP_APPFONT ( 271, 105 ) ; 45 Size = MAP_APPFONT ( 1, 1 ) ; 46 TabStop = FALSE ; 47 }; 48 FixedText FT_ASSIGN 49 { 50 Hide = TRUE ; 51 Border = TRUE ; 52 Pos = MAP_APPFONT ( 12, 105 ) ; 53 Size = MAP_APPFONT ( 128, 12 ) ; 54 TabStop = TRUE ; 55 Text [ en-US ] = "Range" ; 56 }; 57 Edit ED_ASSIGN 58 { 59 HelpID = "sc:Edit:RID_SCDLG_CHANGES:ED_ASSIGN" ; 60 Hide = TRUE ; 61 Border = TRUE ; 62 Pos = MAP_APPFONT ( 12, 119 ) ; 63 Size = MAP_APPFONT ( 128, 12 ) ; 64 TabStop = TRUE ; 65 }; 66 ImageButton RB_ASSIGN 67 { 68 HelpID = "sc:ImageButton:RID_SCDLG_CHANGES:RB_ASSIGN" ; 69 Hide = TRUE ; 70 Pos = MAP_APPFONT ( 142, 118 ) ; 71 Size = MAP_APPFONT ( 13, 15 ) ; 72 TabStop = FALSE ; 73 QuickHelpText [ en-US ] = "Minimize/Maximize" ; 74 }; 75 String STR_INSERT_COLS 76 { 77 Text [ en-US ] = "Column inserted" ; 78 }; 79 String STR_INSERT_ROWS 80 { 81 Text [ en-US ] = "Row inserted " ; 82 }; 83 String STR_INSERT_TABS 84 { 85 Text [ en-US ] = "Sheet inserted " ; 86 }; 87 String STR_DELETE_COLS 88 { 89 Text [ en-US ] = "Column deleted" ; 90 }; 91 String STR_DELETE_ROWS 92 { 93 Text [ en-US ] = "Row deleted" ; 94 }; 95 String STR_DELETE_TABS 96 { 97 Text [ en-US ] = "Sheet deleted" ; 98 }; 99 String STR_MOVE 100 { 101 Text [ en-US ] = "Range moved" ; 102 }; 103 String STR_CONTENT 104 { 105 Text [ en-US ] = "Changed contents" ; 106 }; 107 String STR_CONTENT_WITH_CHILD 108 { 109 Text [ en-US ] = "Changed contents" ; 110 }; 111 String STR_CHILD_CONTENT 112 { 113 Text [ en-US ] = "Changed to " ; 114 }; 115 String STR_CHILD_ORGCONTENT 116 { 117 Text [ en-US ] = "Original" ; 118 }; 119 String STR_REJECT 120 { 121 Text [ en-US ] = "Changes rejected" ; 122 }; 123 String STR_ACCEPTED 124 { 125 Text [ en-US ] = "Accepted" ; 126 }; 127 String STR_REJECTED 128 { 129 Text [ en-US ] = "Rejected" ; 130 }; 131 String STR_NO_ENTRY 132 { 133 Text [ en-US ] = "No Entry" ; 134 }; 135 String STR_EMPTY 136 { 137 Text [ en-US ] = "<empty>" ; 138 }; 139 Bitmap BMP_STR_CLOSE 140 { 141 File = "dir-clos.png" ; 142 }; 143 Bitmap BMP_STR_OPEN 144 { 145 File = "dir-open.png" ; 146 }; 147 Bitmap BMP_STR_END 148 { 149 File = "basobj2.png" ; 150 }; 151 Bitmap BMP_STR_ERROR 152 { 153 File = "basbrk.png" ; 154 }; 155 Text [ en-US ] = "Accept or Reject Changes" ; 156}; 157Menu RID_POPUP_CHANGES 158{ 159 ItemList = 160 { 161 MenuItem 162 { 163 Identifier = SC_CHANGES_COMMENT ; 164 HelpId = HID_SC_CHANGES_COMMENT ; 165 Text [ en-US ] = "Edit Comment..." ; 166 167 }; 168 MenuItem 169 { 170 Identifier = SC_SUB_SORT ; 171 SubMenu = Menu 172 { 173 ItemList = 174 { 175 MenuItem 176 { 177 Identifier = SC_SORT_ACTION ; 178 HelpID = HID_SC_SORT_ACTION ; 179 RadioCheck = TRUE ; 180 Text [ en-US ] = "Action" ; 181 }; 182 MenuItem 183 { 184 Identifier = SC_SORT_POSITION ; 185 HelpID = HID_SORT_POSITION ; 186 RadioCheck = TRUE ; 187 Text [ en-US ] = "Position" ; 188 }; 189 MenuItem 190 { 191 Identifier = SC_SORT_AUTHOR ; 192 HelpID = HID_SC_SORT_AUTHOR ; 193 RadioCheck = TRUE ; 194 Text [ en-US ] = "Author" ; 195 }; 196 MenuItem 197 { 198 Identifier = SC_SORT_DATE ; 199 HelpID = HID_SC_SORT_DATE ; 200 RadioCheck = TRUE ; 201 Text [ en-US ] = "Date" ; 202 }; 203 MenuItem 204 { 205 Identifier = SC_SORT_COMMENT ; 206 HelpID = HID_SC_SORT_COMMENT ; 207 RadioCheck = TRUE ; 208 Text [ en-US ] = "Description" ; 209 }; 210 }; 211 }; 212 Text [ en-US ] = "Sorting" ; 213 }; 214 }; 215}; 216 217// ********************************************************************** EOF 218