| 1 | n/a | """Suite Metrowerks Shell Suite: Events supported by the Metrowerks Project Shell |
|---|
| 2 | n/a | Level 1, version 1 |
|---|
| 3 | n/a | |
|---|
| 4 | n/a | Generated from /Volumes/Sap/Applications (Mac OS 9)/Metrowerks CodeWarrior 7.0/Metrowerks CodeWarrior/CodeWarrior IDE 4.2.5 |
|---|
| 5 | n/a | AETE/AEUT resource version 1/0, language 0, script 0 |
|---|
| 6 | n/a | """ |
|---|
| 7 | n/a | |
|---|
| 8 | n/a | import aetools |
|---|
| 9 | n/a | import MacOS |
|---|
| 10 | n/a | |
|---|
| 11 | n/a | _code = 'MMPR' |
|---|
| 12 | n/a | |
|---|
| 13 | n/a | class Metrowerks_Shell_Suite_Events: |
|---|
| 14 | n/a | |
|---|
| 15 | n/a | _argmap_Add_Files = { |
|---|
| 16 | n/a | 'To_Segment' : 'Segm', |
|---|
| 17 | n/a | } |
|---|
| 18 | n/a | |
|---|
| 19 | n/a | def Add_Files(self, _object, _attributes={}, **_arguments): |
|---|
| 20 | n/a | """Add Files: Add the specified file(s) to the current project |
|---|
| 21 | n/a | Required argument: List of files to add |
|---|
| 22 | n/a | Keyword argument To_Segment: Segment number into which to add the file(s) |
|---|
| 23 | n/a | Keyword argument _attributes: AppleEvent attribute dictionary |
|---|
| 24 | n/a | Returns: Error code for each file added |
|---|
| 25 | n/a | """ |
|---|
| 26 | n/a | _code = 'MMPR' |
|---|
| 27 | n/a | _subcode = 'AddF' |
|---|
| 28 | n/a | |
|---|
| 29 | n/a | aetools.keysubst(_arguments, self._argmap_Add_Files) |
|---|
| 30 | n/a | _arguments['----'] = _object |
|---|
| 31 | n/a | |
|---|
| 32 | n/a | |
|---|
| 33 | n/a | _reply, _arguments, _attributes = self.send(_code, _subcode, |
|---|
| 34 | n/a | _arguments, _attributes) |
|---|
| 35 | n/a | if _arguments.get('errn', 0): |
|---|
| 36 | n/a | raise aetools.Error, aetools.decodeerror(_arguments) |
|---|
| 37 | n/a | # XXXX Optionally decode result |
|---|
| 38 | n/a | if _arguments.has_key('----'): |
|---|
| 39 | n/a | return _arguments['----'] |
|---|
| 40 | n/a | |
|---|
| 41 | n/a | _argmap_Check_Syntax = { |
|---|
| 42 | n/a | 'ExternalEditor' : 'Errs', |
|---|
| 43 | n/a | } |
|---|
| 44 | n/a | |
|---|
| 45 | n/a | def Check_Syntax(self, _object, _attributes={}, **_arguments): |
|---|
| 46 | n/a | """Check Syntax: Check the syntax of the specified file(s) |
|---|
| 47 | n/a | Required argument: List of files to check the syntax of |
|---|
| 48 | n/a | Keyword argument ExternalEditor: Should the contents of the message window be returned to the caller? |
|---|
| 49 | n/a | Keyword argument _attributes: AppleEvent attribute dictionary |
|---|
| 50 | n/a | Returns: Errors for each file whose syntax was checked |
|---|
| 51 | n/a | """ |
|---|
| 52 | n/a | _code = 'MMPR' |
|---|
| 53 | n/a | _subcode = 'Chek' |
|---|
| 54 | n/a | |
|---|
| 55 | n/a | aetools.keysubst(_arguments, self._argmap_Check_Syntax) |
|---|
| 56 | n/a | _arguments['----'] = _object |
|---|
| 57 | n/a | |
|---|
| 58 | n/a | |
|---|
| 59 | n/a | _reply, _arguments, _attributes = self.send(_code, _subcode, |
|---|
| 60 | n/a | _arguments, _attributes) |
|---|
| 61 | n/a | if _arguments.get('errn', 0): |
|---|
| 62 | n/a | raise aetools.Error, aetools.decodeerror(_arguments) |
|---|
| 63 | n/a | # XXXX Optionally decode result |
|---|
| 64 | n/a | if _arguments.has_key('----'): |
|---|
| 65 | n/a | return _arguments['----'] |
|---|
| 66 | n/a | |
|---|
| 67 | n/a | def Close_Project(self, _no_object=None, _attributes={}, **_arguments): |
|---|
| 68 | n/a | """Close Project: Close the current project |
|---|
| 69 | n/a | Keyword argument _attributes: AppleEvent attribute dictionary |
|---|
| 70 | n/a | """ |
|---|
| 71 | n/a | _code = 'MMPR' |
|---|
| 72 | n/a | _subcode = 'ClsP' |
|---|
| 73 | n/a | |
|---|
| 74 | n/a | if _arguments: raise TypeError, 'No optional args expected' |
|---|
| 75 | n/a | if _no_object is not None: raise TypeError, 'No direct arg expected' |
|---|
| 76 | n/a | |
|---|
| 77 | n/a | |
|---|
| 78 | n/a | _reply, _arguments, _attributes = self.send(_code, _subcode, |
|---|
| 79 | n/a | _arguments, _attributes) |
|---|
| 80 | n/a | if _arguments.get('errn', 0): |
|---|
| 81 | n/a | raise aetools.Error, aetools.decodeerror(_arguments) |
|---|
| 82 | n/a | # XXXX Optionally decode result |
|---|
| 83 | n/a | if _arguments.has_key('----'): |
|---|
| 84 | n/a | return _arguments['----'] |
|---|
| 85 | n/a | |
|---|
| 86 | n/a | _argmap_Close_Window = { |
|---|
| 87 | n/a | 'Saving' : 'savo', |
|---|
| 88 | n/a | } |
|---|
| 89 | n/a | |
|---|
| 90 | n/a | def Close_Window(self, _object, _attributes={}, **_arguments): |
|---|
| 91 | n/a | """Close Window: Close the windows showing the specified files |
|---|
| 92 | n/a | Required argument: The files to close |
|---|
| 93 | n/a | Keyword argument Saving: Whether to save changes to each file before closing its window |
|---|
| 94 | n/a | Keyword argument _attributes: AppleEvent attribute dictionary |
|---|
| 95 | n/a | """ |
|---|
| 96 | n/a | _code = 'MMPR' |
|---|
| 97 | n/a | _subcode = 'ClsW' |
|---|
| 98 | n/a | |
|---|
| 99 | n/a | aetools.keysubst(_arguments, self._argmap_Close_Window) |
|---|
| 100 | n/a | _arguments['----'] = _object |
|---|
| 101 | n/a | |
|---|
| 102 | n/a | aetools.enumsubst(_arguments, 'savo', _Enum_savo) |
|---|
| 103 | n/a | |
|---|
| 104 | n/a | _reply, _arguments, _attributes = self.send(_code, _subcode, |
|---|
| 105 | n/a | _arguments, _attributes) |
|---|
| 106 | n/a | if _arguments.get('errn', 0): |
|---|
| 107 | n/a | raise aetools.Error, aetools.decodeerror(_arguments) |
|---|
| 108 | n/a | # XXXX Optionally decode result |
|---|
| 109 | n/a | if _arguments.has_key('----'): |
|---|
| 110 | n/a | return _arguments['----'] |
|---|
| 111 | n/a | |
|---|
| 112 | n/a | _argmap_Compile = { |
|---|
| 113 | n/a | 'ExternalEditor' : 'Errs', |
|---|
| 114 | n/a | } |
|---|
| 115 | n/a | |
|---|
| 116 | n/a | def Compile(self, _object, _attributes={}, **_arguments): |
|---|
| 117 | n/a | """Compile: Compile the specified file(s) |
|---|
| 118 | n/a | Required argument: List of files to compile |
|---|
| 119 | n/a | Keyword argument ExternalEditor: Should the contents of the message window be returned to the caller? |
|---|
| 120 | n/a | Keyword argument _attributes: AppleEvent attribute dictionary |
|---|
| 121 | n/a | Returns: Errors for each file compiled |
|---|
| 122 | n/a | """ |
|---|
| 123 | n/a | _code = 'MMPR' |
|---|
| 124 | n/a | _subcode = 'Comp' |
|---|
| 125 | n/a | |
|---|
| 126 | n/a | aetools.keysubst(_arguments, self._argmap_Compile) |
|---|
| 127 | n/a | _arguments['----'] = _object |
|---|
| 128 | n/a | |
|---|
| 129 | n/a | |
|---|
| 130 | n/a | _reply, _arguments, _attributes = self.send(_code, _subcode, |
|---|
| 131 | n/a | _arguments, _attributes) |
|---|
| 132 | n/a | if _arguments.get('errn', 0): |
|---|
| 133 | n/a | raise aetools.Error, aetools.decodeerror(_arguments) |
|---|
| 134 | n/a | # XXXX Optionally decode result |
|---|
| 135 | n/a | if _arguments.has_key('----'): |
|---|
| 136 | n/a | return _arguments['----'] |
|---|
| 137 | n/a | |
|---|
| 138 | n/a | _argmap_Create_Project = { |
|---|
| 139 | n/a | 'from_stationery' : 'Tmpl', |
|---|
| 140 | n/a | } |
|---|
| 141 | n/a | |
|---|
| 142 | n/a | def Create_Project(self, _object, _attributes={}, **_arguments): |
|---|
| 143 | n/a | """Create Project: Create a new project file |
|---|
| 144 | n/a | Required argument: New project file specifier |
|---|
| 145 | n/a | Keyword argument from_stationery: undocumented, typecode 'alis' |
|---|
| 146 | n/a | Keyword argument _attributes: AppleEvent attribute dictionary |
|---|
| 147 | n/a | """ |
|---|
| 148 | n/a | _code = 'MMPR' |
|---|
| 149 | n/a | _subcode = 'NewP' |
|---|
| 150 | n/a | |
|---|
| 151 | n/a | aetools.keysubst(_arguments, self._argmap_Create_Project) |
|---|
| 152 | n/a | _arguments['----'] = _object |
|---|
| 153 | n/a | |
|---|
| 154 | n/a | |
|---|
| 155 | n/a | _reply, _arguments, _attributes = self.send(_code, _subcode, |
|---|
| 156 | n/a | _arguments, _attributes) |
|---|
| 157 | n/a | if _arguments.get('errn', 0): |
|---|
| 158 | n/a | raise aetools.Error, aetools.decodeerror(_arguments) |
|---|
| 159 | n/a | # XXXX Optionally decode result |
|---|
| 160 | n/a | if _arguments.has_key('----'): |
|---|
| 161 | n/a | return _arguments['----'] |
|---|
| 162 | n/a | |
|---|
| 163 | n/a | def Get_Definition(self, _object, _attributes={}, **_arguments): |
|---|
| 164 | n/a | """Get Definition: Returns the location(s) of a globally scoped function or data object. |
|---|
| 165 | n/a | Required argument: undocumented, typecode 'TEXT' |
|---|
| 166 | n/a | Keyword argument _attributes: AppleEvent attribute dictionary |
|---|
| 167 | n/a | Returns: undocumented, typecode 'FDef' |
|---|
| 168 | n/a | """ |
|---|
| 169 | n/a | _code = 'MMPR' |
|---|
| 170 | n/a | _subcode = 'GDef' |
|---|
| 171 | n/a | |
|---|
| 172 | n/a | if _arguments: raise TypeError, 'No optional args expected' |
|---|
| 173 | n/a | _arguments['----'] = _object |
|---|
| 174 | n/a | |
|---|
| 175 | n/a | |
|---|
| 176 | n/a | _reply, _arguments, _attributes = self.send(_code, _subcode, |
|---|
| 177 | n/a | _arguments, _attributes) |
|---|
| 178 | n/a | if _arguments.get('errn', 0): |
|---|
| 179 | n/a | raise aetools.Error, aetools.decodeerror(_arguments) |
|---|
| 180 | n/a | # XXXX Optionally decode result |
|---|
| 181 | n/a | if _arguments.has_key('----'): |
|---|
| 182 | n/a | return _arguments['----'] |
|---|
| 183 | n/a | |
|---|
| 184 | n/a | def Get_Open_Documents(self, _no_object=None, _attributes={}, **_arguments): |
|---|
| 185 | n/a | """Get Open Documents: Returns the list of open documents |
|---|
| 186 | n/a | Keyword argument _attributes: AppleEvent attribute dictionary |
|---|
| 187 | n/a | Returns: The list of documents |
|---|
| 188 | n/a | """ |
|---|
| 189 | n/a | _code = 'MMPR' |
|---|
| 190 | n/a | _subcode = 'GDoc' |
|---|
| 191 | n/a | |
|---|
| 192 | n/a | if _arguments: raise TypeError, 'No optional args expected' |
|---|
| 193 | n/a | if _no_object is not None: raise TypeError, 'No direct arg expected' |
|---|
| 194 | n/a | |
|---|
| 195 | n/a | |
|---|
| 196 | n/a | _reply, _arguments, _attributes = self.send(_code, _subcode, |
|---|
| 197 | n/a | _arguments, _attributes) |
|---|
| 198 | n/a | if _arguments.get('errn', 0): |
|---|
| 199 | n/a | raise aetools.Error, aetools.decodeerror(_arguments) |
|---|
| 200 | n/a | # XXXX Optionally decode result |
|---|
| 201 | n/a | if _arguments.has_key('----'): |
|---|
| 202 | n/a | return _arguments['----'] |
|---|
| 203 | n/a | |
|---|
| 204 | n/a | _argmap_Get_Preferences = { |
|---|
| 205 | n/a | 'of' : 'PRec', |
|---|
| 206 | n/a | 'from_panel' : 'PNam', |
|---|
| 207 | n/a | } |
|---|
| 208 | n/a | |
|---|
| 209 | n/a | def Get_Preferences(self, _no_object=None, _attributes={}, **_arguments): |
|---|
| 210 | n/a | """Get Preferences: Get the preferences for the current project |
|---|
| 211 | n/a | Keyword argument of: Names of requested preferences |
|---|
| 212 | n/a | Keyword argument from_panel: Name of the preference panel |
|---|
| 213 | n/a | Keyword argument _attributes: AppleEvent attribute dictionary |
|---|
| 214 | n/a | Returns: The requested preferences |
|---|
| 215 | n/a | """ |
|---|
| 216 | n/a | _code = 'MMPR' |
|---|
| 217 | n/a | _subcode = 'Gref' |
|---|
| 218 | n/a | |
|---|
| 219 | n/a | aetools.keysubst(_arguments, self._argmap_Get_Preferences) |
|---|
| 220 | n/a | if _no_object is not None: raise TypeError, 'No direct arg expected' |
|---|
| 221 | n/a | |
|---|
| 222 | n/a | |
|---|
| 223 | n/a | _reply, _arguments, _attributes = self.send(_code, _subcode, |
|---|
| 224 | n/a | _arguments, _attributes) |
|---|
| 225 | n/a | if _arguments.get('errn', 0): |
|---|
| 226 | n/a | raise aetools.Error, aetools.decodeerror(_arguments) |
|---|
| 227 | n/a | # XXXX Optionally decode result |
|---|
| 228 | n/a | if _arguments.has_key('----'): |
|---|
| 229 | n/a | return _arguments['----'] |
|---|
| 230 | n/a | |
|---|
| 231 | n/a | _argmap_Get_Project_File = { |
|---|
| 232 | n/a | 'Segment' : 'Segm', |
|---|
| 233 | n/a | } |
|---|
| 234 | n/a | |
|---|
| 235 | n/a | def Get_Project_File(self, _object, _attributes={}, **_arguments): |
|---|
| 236 | n/a | """Get Project File: Returns a description of a file in the project window. |
|---|
| 237 | n/a | Required argument: The index of the file within its segment. |
|---|
| 238 | n/a | Keyword argument Segment: The segment containing the file. |
|---|
| 239 | n/a | Keyword argument _attributes: AppleEvent attribute dictionary |
|---|
| 240 | n/a | Returns: undocumented, typecode 'SrcF' |
|---|
| 241 | n/a | """ |
|---|
| 242 | n/a | _code = 'MMPR' |
|---|
| 243 | n/a | _subcode = 'GFil' |
|---|
| 244 | n/a | |
|---|
| 245 | n/a | aetools.keysubst(_arguments, self._argmap_Get_Project_File) |
|---|
| 246 | n/a | _arguments['----'] = _object |
|---|
| 247 | n/a | |
|---|
| 248 | n/a | |
|---|
| 249 | n/a | _reply, _arguments, _attributes = self.send(_code, _subcode, |
|---|
| 250 | n/a | _arguments, _attributes) |
|---|
| 251 | n/a | if _arguments.get('errn', 0): |
|---|
| 252 | n/a | raise aetools.Error, aetools.decodeerror(_arguments) |
|---|
| 253 | n/a | # XXXX Optionally decode result |
|---|
| 254 | n/a | if _arguments.has_key('----'): |
|---|
| 255 | n/a | return _arguments['----'] |
|---|
| 256 | n/a | |
|---|
| 257 | n/a | def Get_Project_Specifier(self, _no_object=None, _attributes={}, **_arguments): |
|---|
| 258 | n/a | """Get Project Specifier: Return the File Specifier for the current project |
|---|
| 259 | n/a | Keyword argument _attributes: AppleEvent attribute dictionary |
|---|
| 260 | n/a | Returns: File Specifier for the current project |
|---|
| 261 | n/a | """ |
|---|
| 262 | n/a | _code = 'MMPR' |
|---|
| 263 | n/a | _subcode = 'GetP' |
|---|
| 264 | n/a | |
|---|
| 265 | n/a | if _arguments: raise TypeError, 'No optional args expected' |
|---|
| 266 | n/a | if _no_object is not None: raise TypeError, 'No direct arg expected' |
|---|
| 267 | n/a | |
|---|
| 268 | n/a | |
|---|
| 269 | n/a | _reply, _arguments, _attributes = self.send(_code, _subcode, |
|---|
| 270 | n/a | _arguments, _attributes) |
|---|
| 271 | n/a | if _arguments.get('errn', 0): |
|---|
| 272 | n/a | raise aetools.Error, aetools.decodeerror(_arguments) |
|---|
| 273 | n/a | # XXXX Optionally decode result |
|---|
| 274 | n/a | if _arguments.has_key('----'): |
|---|
| 275 | n/a | return _arguments['----'] |
|---|
| 276 | n/a | |
|---|
| 277 | n/a | def Get_Segments(self, _no_object=None, _attributes={}, **_arguments): |
|---|
| 278 | n/a | """Get Segments: Returns a description of each segment in the project. |
|---|
| 279 | n/a | Keyword argument _attributes: AppleEvent attribute dictionary |
|---|
| 280 | n/a | Returns: undocumented, typecode 'Seg ' |
|---|
| 281 | n/a | """ |
|---|
| 282 | n/a | _code = 'MMPR' |
|---|
| 283 | n/a | _subcode = 'GSeg' |
|---|
| 284 | n/a | |
|---|
| 285 | n/a | if _arguments: raise TypeError, 'No optional args expected' |
|---|
| 286 | n/a | if _no_object is not None: raise TypeError, 'No direct arg expected' |
|---|
| 287 | n/a | |
|---|
| 288 | n/a | |
|---|
| 289 | n/a | _reply, _arguments, _attributes = self.send(_code, _subcode, |
|---|
| 290 | n/a | _arguments, _attributes) |
|---|
| 291 | n/a | if _arguments.get('errn', 0): |
|---|
| 292 | n/a | raise aetools.Error, aetools.decodeerror(_arguments) |
|---|
| 293 | n/a | # XXXX Optionally decode result |
|---|
| 294 | n/a | if _arguments.has_key('----'): |
|---|
| 295 | n/a | return _arguments['----'] |
|---|
| 296 | n/a | |
|---|
| 297 | n/a | def Get_member_function_names(self, _object, _attributes={}, **_arguments): |
|---|
| 298 | n/a | """Get member function names: Returns a list containing the names of all the member functions of a class object |
|---|
| 299 | n/a | Required argument: must be a class object |
|---|
| 300 | n/a | Keyword argument _attributes: AppleEvent attribute dictionary |
|---|
| 301 | n/a | Returns: undocumented, typecode 'list' |
|---|
| 302 | n/a | """ |
|---|
| 303 | n/a | _code = 'MMPR' |
|---|
| 304 | n/a | _subcode = 'MbFN' |
|---|
| 305 | n/a | |
|---|
| 306 | n/a | if _arguments: raise TypeError, 'No optional args expected' |
|---|
| 307 | n/a | _arguments['----'] = _object |
|---|
| 308 | n/a | |
|---|
| 309 | n/a | |
|---|
| 310 | n/a | _reply, _arguments, _attributes = self.send(_code, _subcode, |
|---|
| 311 | n/a | _arguments, _attributes) |
|---|
| 312 | n/a | if _arguments.get('errn', 0): |
|---|
| 313 | n/a | raise aetools.Error, aetools.decodeerror(_arguments) |
|---|
| 314 | n/a | # XXXX Optionally decode result |
|---|
| 315 | n/a | if _arguments.has_key('----'): |
|---|
| 316 | n/a | return _arguments['----'] |
|---|
| 317 | n/a | |
|---|
| 318 | n/a | def Get_nonsimple_classes(self, _no_object=None, _attributes={}, **_arguments): |
|---|
| 319 | n/a | """Get nonsimple classes: Returns an alphabetical list of classes with member functions, bases classes, or subclasses |
|---|
| 320 | n/a | Keyword argument _attributes: AppleEvent attribute dictionary |
|---|
| 321 | n/a | Returns: undocumented, typecode 'list' |
|---|
| 322 | n/a | """ |
|---|
| 323 | n/a | _code = 'MMPR' |
|---|
| 324 | n/a | _subcode = 'NsCl' |
|---|
| 325 | n/a | |
|---|
| 326 | n/a | if _arguments: raise TypeError, 'No optional args expected' |
|---|
| 327 | n/a | if _no_object is not None: raise TypeError, 'No direct arg expected' |
|---|
| 328 | n/a | |
|---|
| 329 | n/a | |
|---|
| 330 | n/a | _reply, _arguments, _attributes = self.send(_code, _subcode, |
|---|
| 331 | n/a | _arguments, _attributes) |
|---|
| 332 | n/a | if _arguments.get('errn', 0): |
|---|
| 333 | n/a | raise aetools.Error, aetools.decodeerror(_arguments) |
|---|
| 334 | n/a | # XXXX Optionally decode result |
|---|
| 335 | n/a | if _arguments.has_key('----'): |
|---|
| 336 | n/a | return _arguments['----'] |
|---|
| 337 | n/a | |
|---|
| 338 | n/a | def Goto_Function(self, _object, _attributes={}, **_arguments): |
|---|
| 339 | n/a | """Goto Function: Goto Specified Function Name |
|---|
| 340 | n/a | Required argument: undocumented, typecode 'TEXT' |
|---|
| 341 | n/a | Keyword argument _attributes: AppleEvent attribute dictionary |
|---|
| 342 | n/a | """ |
|---|
| 343 | n/a | _code = 'MMPR' |
|---|
| 344 | n/a | _subcode = 'GoFn' |
|---|
| 345 | n/a | |
|---|
| 346 | n/a | if _arguments: raise TypeError, 'No optional args expected' |
|---|
| 347 | n/a | _arguments['----'] = _object |
|---|
| 348 | n/a | |
|---|
| 349 | n/a | |
|---|
| 350 | n/a | _reply, _arguments, _attributes = self.send(_code, _subcode, |
|---|
| 351 | n/a | _arguments, _attributes) |
|---|
| 352 | n/a | if _arguments.get('errn', 0): |
|---|
| 353 | n/a | raise aetools.Error, aetools.decodeerror(_arguments) |
|---|
| 354 | n/a | # XXXX Optionally decode result |
|---|
| 355 | n/a | if _arguments.has_key('----'): |
|---|
| 356 | n/a | return _arguments['----'] |
|---|
| 357 | n/a | |
|---|
| 358 | n/a | def Goto_Line(self, _object, _attributes={}, **_arguments): |
|---|
| 359 | n/a | """Goto Line: Goto Specified Line Number |
|---|
| 360 | n/a | Required argument: The requested source file line number |
|---|
| 361 | n/a | Keyword argument _attributes: AppleEvent attribute dictionary |
|---|
| 362 | n/a | """ |
|---|
| 363 | n/a | _code = 'MMPR' |
|---|
| 364 | n/a | _subcode = 'GoLn' |
|---|
| 365 | n/a | |
|---|
| 366 | n/a | if _arguments: raise TypeError, 'No optional args expected' |
|---|
| 367 | n/a | _arguments['----'] = _object |
|---|
| 368 | n/a | |
|---|
| 369 | n/a | |
|---|
| 370 | n/a | _reply, _arguments, _attributes = self.send(_code, _subcode, |
|---|
| 371 | n/a | _arguments, _attributes) |
|---|
| 372 | n/a | if _arguments.get('errn', 0): |
|---|
| 373 | n/a | raise aetools.Error, aetools.decodeerror(_arguments) |
|---|
| 374 | n/a | # XXXX Optionally decode result |
|---|
| 375 | n/a | if _arguments.has_key('----'): |
|---|
| 376 | n/a | return _arguments['----'] |
|---|
| 377 | n/a | |
|---|
| 378 | n/a | def Is_In_Project(self, _object, _attributes={}, **_arguments): |
|---|
| 379 | n/a | """Is In Project: Whether or not the specified file(s) is in the current project |
|---|
| 380 | n/a | Required argument: List of files to check for project membership |
|---|
| 381 | n/a | Keyword argument _attributes: AppleEvent attribute dictionary |
|---|
| 382 | n/a | Returns: Result code for each file |
|---|
| 383 | n/a | """ |
|---|
| 384 | n/a | _code = 'MMPR' |
|---|
| 385 | n/a | _subcode = 'FInP' |
|---|
| 386 | n/a | |
|---|
| 387 | n/a | if _arguments: raise TypeError, 'No optional args expected' |
|---|
| 388 | n/a | _arguments['----'] = _object |
|---|
| 389 | n/a | |
|---|
| 390 | n/a | |
|---|
| 391 | n/a | _reply, _arguments, _attributes = self.send(_code, _subcode, |
|---|
| 392 | n/a | _arguments, _attributes) |
|---|
| 393 | n/a | if _arguments.get('errn', 0): |
|---|
| 394 | n/a | raise aetools.Error, aetools.decodeerror(_arguments) |
|---|
| 395 | n/a | # XXXX Optionally decode result |
|---|
| 396 | n/a | if _arguments.has_key('----'): |
|---|
| 397 | n/a | return _arguments['----'] |
|---|
| 398 | n/a | |
|---|
| 399 | n/a | _argmap_Make_Project = { |
|---|
| 400 | n/a | 'ExternalEditor' : 'Errs', |
|---|
| 401 | n/a | } |
|---|
| 402 | n/a | |
|---|
| 403 | n/a | def Make_Project(self, _no_object=None, _attributes={}, **_arguments): |
|---|
| 404 | n/a | """Make Project: Make the current project |
|---|
| 405 | n/a | Keyword argument ExternalEditor: Should the contents of the message window be returned to the caller? |
|---|
| 406 | n/a | Keyword argument _attributes: AppleEvent attribute dictionary |
|---|
| 407 | n/a | Returns: Errors that occurred while making the project |
|---|
| 408 | n/a | """ |
|---|
| 409 | n/a | _code = 'MMPR' |
|---|
| 410 | n/a | _subcode = 'Make' |
|---|
| 411 | n/a | |
|---|
| 412 | n/a | aetools.keysubst(_arguments, self._argmap_Make_Project) |
|---|
| 413 | n/a | if _no_object is not None: raise TypeError, 'No direct arg expected' |
|---|
| 414 | n/a | |
|---|
| 415 | n/a | |
|---|
| 416 | n/a | _reply, _arguments, _attributes = self.send(_code, _subcode, |
|---|
| 417 | n/a | _arguments, _attributes) |
|---|
| 418 | n/a | if _arguments.get('errn', 0): |
|---|
| 419 | n/a | raise aetools.Error, aetools.decodeerror(_arguments) |
|---|
| 420 | n/a | # XXXX Optionally decode result |
|---|
| 421 | n/a | if _arguments.has_key('----'): |
|---|
| 422 | n/a | return _arguments['----'] |
|---|
| 423 | n/a | |
|---|
| 424 | n/a | def Open_browser(self, _object, _attributes={}, **_arguments): |
|---|
| 425 | n/a | """Open browser: Display a class, member function, or data member object in a single class browser window |
|---|
| 426 | n/a | Required argument: an AE object reference |
|---|
| 427 | n/a | Keyword argument _attributes: AppleEvent attribute dictionary |
|---|
| 428 | n/a | """ |
|---|
| 429 | n/a | _code = 'MMPR' |
|---|
| 430 | n/a | _subcode = 'Brow' |
|---|
| 431 | n/a | |
|---|
| 432 | n/a | if _arguments: raise TypeError, 'No optional args expected' |
|---|
| 433 | n/a | _arguments['----'] = _object |
|---|
| 434 | n/a | |
|---|
| 435 | n/a | |
|---|
| 436 | n/a | _reply, _arguments, _attributes = self.send(_code, _subcode, |
|---|
| 437 | n/a | _arguments, _attributes) |
|---|
| 438 | n/a | if _arguments.get('errn', 0): |
|---|
| 439 | n/a | raise aetools.Error, aetools.decodeerror(_arguments) |
|---|
| 440 | n/a | # XXXX Optionally decode result |
|---|
| 441 | n/a | if _arguments.has_key('----'): |
|---|
| 442 | n/a | return _arguments['----'] |
|---|
| 443 | n/a | |
|---|
| 444 | n/a | _argmap_Precompile = { |
|---|
| 445 | n/a | 'Saving_As' : 'Targ', |
|---|
| 446 | n/a | 'ExternalEditor' : 'Errs', |
|---|
| 447 | n/a | } |
|---|
| 448 | n/a | |
|---|
| 449 | n/a | def Precompile(self, _object, _attributes={}, **_arguments): |
|---|
| 450 | n/a | """Precompile: Precompile the specified file to the specified destination file |
|---|
| 451 | n/a | Required argument: File to precompile |
|---|
| 452 | n/a | Keyword argument Saving_As: Destination file for precompiled header |
|---|
| 453 | n/a | Keyword argument ExternalEditor: Should the contents of the message window be returned to the caller? |
|---|
| 454 | n/a | Keyword argument _attributes: AppleEvent attribute dictionary |
|---|
| 455 | n/a | Returns: Errors for the precompiled file |
|---|
| 456 | n/a | """ |
|---|
| 457 | n/a | _code = 'MMPR' |
|---|
| 458 | n/a | _subcode = 'PreC' |
|---|
| 459 | n/a | |
|---|
| 460 | n/a | aetools.keysubst(_arguments, self._argmap_Precompile) |
|---|
| 461 | n/a | _arguments['----'] = _object |
|---|
| 462 | n/a | |
|---|
| 463 | n/a | |
|---|
| 464 | n/a | _reply, _arguments, _attributes = self.send(_code, _subcode, |
|---|
| 465 | n/a | _arguments, _attributes) |
|---|
| 466 | n/a | if _arguments.get('errn', 0): |
|---|
| 467 | n/a | raise aetools.Error, aetools.decodeerror(_arguments) |
|---|
| 468 | n/a | # XXXX Optionally decode result |
|---|
| 469 | n/a | if _arguments.has_key('----'): |
|---|
| 470 | n/a | return _arguments['----'] |
|---|
| 471 | n/a | |
|---|
| 472 | n/a | _argmap_Preprocess = { |
|---|
| 473 | n/a | 'ExternalEditor' : 'Errs', |
|---|
| 474 | n/a | } |
|---|
| 475 | n/a | |
|---|
| 476 | n/a | def Preprocess(self, _object, _attributes={}, **_arguments): |
|---|
| 477 | n/a | """Preprocess: Preprocesses the specified file(s) |
|---|
| 478 | n/a | Required argument: undocumented, typecode 'alis' |
|---|
| 479 | n/a | Keyword argument ExternalEditor: undocumented, typecode 'bool' |
|---|
| 480 | n/a | Keyword argument _attributes: AppleEvent attribute dictionary |
|---|
| 481 | n/a | Returns: Errors for each preprocessed file |
|---|
| 482 | n/a | """ |
|---|
| 483 | n/a | _code = 'MMPR' |
|---|
| 484 | n/a | _subcode = 'PreP' |
|---|
| 485 | n/a | |
|---|
| 486 | n/a | aetools.keysubst(_arguments, self._argmap_Preprocess) |
|---|
| 487 | n/a | _arguments['----'] = _object |
|---|
| 488 | n/a | |
|---|
| 489 | n/a | |
|---|
| 490 | n/a | _reply, _arguments, _attributes = self.send(_code, _subcode, |
|---|
| 491 | n/a | _arguments, _attributes) |
|---|
| 492 | n/a | if _arguments.get('errn', 0): |
|---|
| 493 | n/a | raise aetools.Error, aetools.decodeerror(_arguments) |
|---|
| 494 | n/a | # XXXX Optionally decode result |
|---|
| 495 | n/a | if _arguments.has_key('----'): |
|---|
| 496 | n/a | return _arguments['----'] |
|---|
| 497 | n/a | |
|---|
| 498 | n/a | def Remove_Binaries(self, _no_object=None, _attributes={}, **_arguments): |
|---|
| 499 | n/a | """Remove Binaries: Remove the binary object code from the current project |
|---|
| 500 | n/a | Keyword argument _attributes: AppleEvent attribute dictionary |
|---|
| 501 | n/a | """ |
|---|
| 502 | n/a | _code = 'MMPR' |
|---|
| 503 | n/a | _subcode = 'RemB' |
|---|
| 504 | n/a | |
|---|
| 505 | n/a | if _arguments: raise TypeError, 'No optional args expected' |
|---|
| 506 | n/a | if _no_object is not None: raise TypeError, 'No direct arg expected' |
|---|
| 507 | n/a | |
|---|
| 508 | n/a | |
|---|
| 509 | n/a | _reply, _arguments, _attributes = self.send(_code, _subcode, |
|---|
| 510 | n/a | _arguments, _attributes) |
|---|
| 511 | n/a | if _arguments.get('errn', 0): |
|---|
| 512 | n/a | raise aetools.Error, aetools.decodeerror(_arguments) |
|---|
| 513 | n/a | # XXXX Optionally decode result |
|---|
| 514 | n/a | if _arguments.has_key('----'): |
|---|
| 515 | n/a | return _arguments['----'] |
|---|
| 516 | n/a | |
|---|
| 517 | n/a | def Remove_Files(self, _object, _attributes={}, **_arguments): |
|---|
| 518 | n/a | """Remove Files: Remove the specified file(s) from the current project |
|---|
| 519 | n/a | Required argument: List of files to remove |
|---|
| 520 | n/a | Keyword argument _attributes: AppleEvent attribute dictionary |
|---|
| 521 | n/a | Returns: Error code for each file removed |
|---|
| 522 | n/a | """ |
|---|
| 523 | n/a | _code = 'MMPR' |
|---|
| 524 | n/a | _subcode = 'RemF' |
|---|
| 525 | n/a | |
|---|
| 526 | n/a | if _arguments: raise TypeError, 'No optional args expected' |
|---|
| 527 | n/a | _arguments['----'] = _object |
|---|
| 528 | n/a | |
|---|
| 529 | n/a | |
|---|
| 530 | n/a | _reply, _arguments, _attributes = self.send(_code, _subcode, |
|---|
| 531 | n/a | _arguments, _attributes) |
|---|
| 532 | n/a | if _arguments.get('errn', 0): |
|---|
| 533 | n/a | raise aetools.Error, aetools.decodeerror(_arguments) |
|---|
| 534 | n/a | # XXXX Optionally decode result |
|---|
| 535 | n/a | if _arguments.has_key('----'): |
|---|
| 536 | n/a | return _arguments['----'] |
|---|
| 537 | n/a | |
|---|
| 538 | n/a | def Reset_File_Paths(self, _no_object=None, _attributes={}, **_arguments): |
|---|
| 539 | n/a | """Reset File Paths: Resets access paths for all files belonging to open project. |
|---|
| 540 | n/a | Keyword argument _attributes: AppleEvent attribute dictionary |
|---|
| 541 | n/a | """ |
|---|
| 542 | n/a | _code = 'MMPR' |
|---|
| 543 | n/a | _subcode = 'ReFP' |
|---|
| 544 | n/a | |
|---|
| 545 | n/a | if _arguments: raise TypeError, 'No optional args expected' |
|---|
| 546 | n/a | if _no_object is not None: raise TypeError, 'No direct arg expected' |
|---|
| 547 | n/a | |
|---|
| 548 | n/a | |
|---|
| 549 | n/a | _reply, _arguments, _attributes = self.send(_code, _subcode, |
|---|
| 550 | n/a | _arguments, _attributes) |
|---|
| 551 | n/a | if _arguments.get('errn', 0): |
|---|
| 552 | n/a | raise aetools.Error, aetools.decodeerror(_arguments) |
|---|
| 553 | n/a | # XXXX Optionally decode result |
|---|
| 554 | n/a | if _arguments.has_key('----'): |
|---|
| 555 | n/a | return _arguments['----'] |
|---|
| 556 | n/a | |
|---|
| 557 | n/a | _argmap_Run_Project = { |
|---|
| 558 | n/a | 'ExternalEditor' : 'Errs', |
|---|
| 559 | n/a | 'SourceDebugger' : 'DeBg', |
|---|
| 560 | n/a | } |
|---|
| 561 | n/a | |
|---|
| 562 | n/a | def Run_Project(self, _no_object=None, _attributes={}, **_arguments): |
|---|
| 563 | n/a | """Run Project: Run the current project |
|---|
| 564 | n/a | Keyword argument ExternalEditor: Should the contents of the message window be returned to the caller? |
|---|
| 565 | n/a | Keyword argument SourceDebugger: Run the application under the control of the source-level debugger |
|---|
| 566 | n/a | Keyword argument _attributes: AppleEvent attribute dictionary |
|---|
| 567 | n/a | Returns: Errors that occurred when running the project |
|---|
| 568 | n/a | """ |
|---|
| 569 | n/a | _code = 'MMPR' |
|---|
| 570 | n/a | _subcode = 'RunP' |
|---|
| 571 | n/a | |
|---|
| 572 | n/a | aetools.keysubst(_arguments, self._argmap_Run_Project) |
|---|
| 573 | n/a | if _no_object is not None: raise TypeError, 'No direct arg expected' |
|---|
| 574 | n/a | |
|---|
| 575 | n/a | |
|---|
| 576 | n/a | _reply, _arguments, _attributes = self.send(_code, _subcode, |
|---|
| 577 | n/a | _arguments, _attributes) |
|---|
| 578 | n/a | if _arguments.get('errn', 0): |
|---|
| 579 | n/a | raise aetools.Error, aetools.decodeerror(_arguments) |
|---|
| 580 | n/a | # XXXX Optionally decode result |
|---|
| 581 | n/a | if _arguments.has_key('----'): |
|---|
| 582 | n/a | return _arguments['----'] |
|---|
| 583 | n/a | |
|---|
| 584 | n/a | def Save_Error_Window_As(self, _object, _attributes={}, **_arguments): |
|---|
| 585 | n/a | """Save Error Window As: Saves the Errors & Warnings window as a text file |
|---|
| 586 | n/a | Required argument: Destination file for Save Message Window As |
|---|
| 587 | n/a | Keyword argument _attributes: AppleEvent attribute dictionary |
|---|
| 588 | n/a | """ |
|---|
| 589 | n/a | _code = 'MMPR' |
|---|
| 590 | n/a | _subcode = 'SvMs' |
|---|
| 591 | n/a | |
|---|
| 592 | n/a | if _arguments: raise TypeError, 'No optional args expected' |
|---|
| 593 | n/a | _arguments['----'] = _object |
|---|
| 594 | n/a | |
|---|
| 595 | n/a | |
|---|
| 596 | n/a | _reply, _arguments, _attributes = self.send(_code, _subcode, |
|---|
| 597 | n/a | _arguments, _attributes) |
|---|
| 598 | n/a | if _arguments.get('errn', 0): |
|---|
| 599 | n/a | raise aetools.Error, aetools.decodeerror(_arguments) |
|---|
| 600 | n/a | # XXXX Optionally decode result |
|---|
| 601 | n/a | if _arguments.has_key('----'): |
|---|
| 602 | n/a | return _arguments['----'] |
|---|
| 603 | n/a | |
|---|
| 604 | n/a | def Set_Current_Target(self, _object=None, _attributes={}, **_arguments): |
|---|
| 605 | n/a | """Set Current Target: Set the current target of a project |
|---|
| 606 | n/a | Required argument: Name of target |
|---|
| 607 | n/a | Keyword argument _attributes: AppleEvent attribute dictionary |
|---|
| 608 | n/a | """ |
|---|
| 609 | n/a | _code = 'MMPR' |
|---|
| 610 | n/a | _subcode = 'STrg' |
|---|
| 611 | n/a | |
|---|
| 612 | n/a | if _arguments: raise TypeError, 'No optional args expected' |
|---|
| 613 | n/a | _arguments['----'] = _object |
|---|
| 614 | n/a | |
|---|
| 615 | n/a | |
|---|
| 616 | n/a | _reply, _arguments, _attributes = self.send(_code, _subcode, |
|---|
| 617 | n/a | _arguments, _attributes) |
|---|
| 618 | n/a | if _arguments.get('errn', 0): |
|---|
| 619 | n/a | raise aetools.Error, aetools.decodeerror(_arguments) |
|---|
| 620 | n/a | # XXXX Optionally decode result |
|---|
| 621 | n/a | if _arguments.has_key('----'): |
|---|
| 622 | n/a | return _arguments['----'] |
|---|
| 623 | n/a | |
|---|
| 624 | n/a | def Set_Default_Project(self, _object, _attributes={}, **_arguments): |
|---|
| 625 | n/a | """Set Default Project: Set the default project |
|---|
| 626 | n/a | Required argument: Name of project |
|---|
| 627 | n/a | Keyword argument _attributes: AppleEvent attribute dictionary |
|---|
| 628 | n/a | """ |
|---|
| 629 | n/a | _code = 'MMPR' |
|---|
| 630 | n/a | _subcode = 'SDfP' |
|---|
| 631 | n/a | |
|---|
| 632 | n/a | if _arguments: raise TypeError, 'No optional args expected' |
|---|
| 633 | n/a | _arguments['----'] = _object |
|---|
| 634 | n/a | |
|---|
| 635 | n/a | |
|---|
| 636 | n/a | _reply, _arguments, _attributes = self.send(_code, _subcode, |
|---|
| 637 | n/a | _arguments, _attributes) |
|---|
| 638 | n/a | if _arguments.get('errn', 0): |
|---|
| 639 | n/a | raise aetools.Error, aetools.decodeerror(_arguments) |
|---|
| 640 | n/a | # XXXX Optionally decode result |
|---|
| 641 | n/a | if _arguments.has_key('----'): |
|---|
| 642 | n/a | return _arguments['----'] |
|---|
| 643 | n/a | |
|---|
| 644 | n/a | _argmap_Set_Modification_Date = { |
|---|
| 645 | n/a | 'to' : 'MDat', |
|---|
| 646 | n/a | } |
|---|
| 647 | n/a | |
|---|
| 648 | n/a | def Set_Modification_Date(self, _object, _attributes={}, **_arguments): |
|---|
| 649 | n/a | """Set Modification Date: Changes the internal modification date of the specified file(s) |
|---|
| 650 | n/a | Required argument: List of files |
|---|
| 651 | n/a | Keyword argument to: undocumented, typecode 'ldt ' |
|---|
| 652 | n/a | Keyword argument _attributes: AppleEvent attribute dictionary |
|---|
| 653 | n/a | Returns: Error code for each modified file |
|---|
| 654 | n/a | """ |
|---|
| 655 | n/a | _code = 'MMPR' |
|---|
| 656 | n/a | _subcode = 'SMod' |
|---|
| 657 | n/a | |
|---|
| 658 | n/a | aetools.keysubst(_arguments, self._argmap_Set_Modification_Date) |
|---|
| 659 | n/a | _arguments['----'] = _object |
|---|
| 660 | n/a | |
|---|
| 661 | n/a | |
|---|
| 662 | n/a | _reply, _arguments, _attributes = self.send(_code, _subcode, |
|---|
| 663 | n/a | _arguments, _attributes) |
|---|
| 664 | n/a | if _arguments.get('errn', 0): |
|---|
| 665 | n/a | raise aetools.Error, aetools.decodeerror(_arguments) |
|---|
| 666 | n/a | # XXXX Optionally decode result |
|---|
| 667 | n/a | if _arguments.has_key('----'): |
|---|
| 668 | n/a | return _arguments['----'] |
|---|
| 669 | n/a | |
|---|
| 670 | n/a | _argmap_Set_Preferences = { |
|---|
| 671 | n/a | 'of_panel' : 'PNam', |
|---|
| 672 | n/a | 'to' : 'PRec', |
|---|
| 673 | n/a | } |
|---|
| 674 | n/a | |
|---|
| 675 | n/a | def Set_Preferences(self, _no_object=None, _attributes={}, **_arguments): |
|---|
| 676 | n/a | """Set Preferences: Set the preferences for the current project |
|---|
| 677 | n/a | Keyword argument of_panel: Name of the preference panel |
|---|
| 678 | n/a | Keyword argument to: Preferences settings |
|---|
| 679 | n/a | Keyword argument _attributes: AppleEvent attribute dictionary |
|---|
| 680 | n/a | """ |
|---|
| 681 | n/a | _code = 'MMPR' |
|---|
| 682 | n/a | _subcode = 'Pref' |
|---|
| 683 | n/a | |
|---|
| 684 | n/a | aetools.keysubst(_arguments, self._argmap_Set_Preferences) |
|---|
| 685 | n/a | if _no_object is not None: raise TypeError, 'No direct arg expected' |
|---|
| 686 | n/a | |
|---|
| 687 | n/a | |
|---|
| 688 | n/a | _reply, _arguments, _attributes = self.send(_code, _subcode, |
|---|
| 689 | n/a | _arguments, _attributes) |
|---|
| 690 | n/a | if _arguments.get('errn', 0): |
|---|
| 691 | n/a | raise aetools.Error, aetools.decodeerror(_arguments) |
|---|
| 692 | n/a | # XXXX Optionally decode result |
|---|
| 693 | n/a | if _arguments.has_key('----'): |
|---|
| 694 | n/a | return _arguments['----'] |
|---|
| 695 | n/a | |
|---|
| 696 | n/a | _argmap_Set_Project_File = { |
|---|
| 697 | n/a | 'to' : 'SrcS', |
|---|
| 698 | n/a | } |
|---|
| 699 | n/a | |
|---|
| 700 | n/a | def Set_Project_File(self, _object, _attributes={}, **_arguments): |
|---|
| 701 | n/a | """Set Project File: Changes the settings for a given file in the project. |
|---|
| 702 | n/a | Required argument: The name of the file |
|---|
| 703 | n/a | Keyword argument to: The new settings for the file |
|---|
| 704 | n/a | Keyword argument _attributes: AppleEvent attribute dictionary |
|---|
| 705 | n/a | """ |
|---|
| 706 | n/a | _code = 'MMPR' |
|---|
| 707 | n/a | _subcode = 'SFil' |
|---|
| 708 | n/a | |
|---|
| 709 | n/a | aetools.keysubst(_arguments, self._argmap_Set_Project_File) |
|---|
| 710 | n/a | _arguments['----'] = _object |
|---|
| 711 | n/a | |
|---|
| 712 | n/a | |
|---|
| 713 | n/a | _reply, _arguments, _attributes = self.send(_code, _subcode, |
|---|
| 714 | n/a | _arguments, _attributes) |
|---|
| 715 | n/a | if _arguments.get('errn', 0): |
|---|
| 716 | n/a | raise aetools.Error, aetools.decodeerror(_arguments) |
|---|
| 717 | n/a | # XXXX Optionally decode result |
|---|
| 718 | n/a | if _arguments.has_key('----'): |
|---|
| 719 | n/a | return _arguments['----'] |
|---|
| 720 | n/a | |
|---|
| 721 | n/a | _argmap_Set_Segment = { |
|---|
| 722 | n/a | 'to' : 'Segm', |
|---|
| 723 | n/a | } |
|---|
| 724 | n/a | |
|---|
| 725 | n/a | def Set_Segment(self, _object, _attributes={}, **_arguments): |
|---|
| 726 | n/a | """Set Segment: Changes the name and attributes of a segment. |
|---|
| 727 | n/a | Required argument: The segment to change |
|---|
| 728 | n/a | Keyword argument to: The new name and attributes for the segment. |
|---|
| 729 | n/a | Keyword argument _attributes: AppleEvent attribute dictionary |
|---|
| 730 | n/a | """ |
|---|
| 731 | n/a | _code = 'MMPR' |
|---|
| 732 | n/a | _subcode = 'SSeg' |
|---|
| 733 | n/a | |
|---|
| 734 | n/a | aetools.keysubst(_arguments, self._argmap_Set_Segment) |
|---|
| 735 | n/a | _arguments['----'] = _object |
|---|
| 736 | n/a | |
|---|
| 737 | n/a | |
|---|
| 738 | n/a | _reply, _arguments, _attributes = self.send(_code, _subcode, |
|---|
| 739 | n/a | _arguments, _attributes) |
|---|
| 740 | n/a | if _arguments.get('errn', 0): |
|---|
| 741 | n/a | raise aetools.Error, aetools.decodeerror(_arguments) |
|---|
| 742 | n/a | # XXXX Optionally decode result |
|---|
| 743 | n/a | if _arguments.has_key('----'): |
|---|
| 744 | n/a | return _arguments['----'] |
|---|
| 745 | n/a | |
|---|
| 746 | n/a | def Touch(self, _object, _attributes={}, **_arguments): |
|---|
| 747 | n/a | """Touch: Force recompilation of the specified file(s) |
|---|
| 748 | n/a | Required argument: List of files to compile |
|---|
| 749 | n/a | Keyword argument _attributes: AppleEvent attribute dictionary |
|---|
| 750 | n/a | Returns: Error code for each file touched |
|---|
| 751 | n/a | """ |
|---|
| 752 | n/a | _code = 'MMPR' |
|---|
| 753 | n/a | _subcode = 'Toch' |
|---|
| 754 | n/a | |
|---|
| 755 | n/a | if _arguments: raise TypeError, 'No optional args expected' |
|---|
| 756 | n/a | _arguments['----'] = _object |
|---|
| 757 | n/a | |
|---|
| 758 | n/a | |
|---|
| 759 | n/a | _reply, _arguments, _attributes = self.send(_code, _subcode, |
|---|
| 760 | n/a | _arguments, _attributes) |
|---|
| 761 | n/a | if _arguments.get('errn', 0): |
|---|
| 762 | n/a | raise aetools.Error, aetools.decodeerror(_arguments) |
|---|
| 763 | n/a | # XXXX Optionally decode result |
|---|
| 764 | n/a | if _arguments.has_key('----'): |
|---|
| 765 | n/a | return _arguments['----'] |
|---|
| 766 | n/a | |
|---|
| 767 | n/a | _argmap_Update_Project = { |
|---|
| 768 | n/a | 'ExternalEditor' : 'Errs', |
|---|
| 769 | n/a | } |
|---|
| 770 | n/a | |
|---|
| 771 | n/a | def Update_Project(self, _no_object=None, _attributes={}, **_arguments): |
|---|
| 772 | n/a | """Update Project: Update the current project |
|---|
| 773 | n/a | Keyword argument ExternalEditor: Should the contents of the message window be returned to the caller? |
|---|
| 774 | n/a | Keyword argument _attributes: AppleEvent attribute dictionary |
|---|
| 775 | n/a | Returns: Errors that occurred while updating the project |
|---|
| 776 | n/a | """ |
|---|
| 777 | n/a | _code = 'MMPR' |
|---|
| 778 | n/a | _subcode = 'UpdP' |
|---|
| 779 | n/a | |
|---|
| 780 | n/a | aetools.keysubst(_arguments, self._argmap_Update_Project) |
|---|
| 781 | n/a | if _no_object is not None: raise TypeError, 'No direct arg expected' |
|---|
| 782 | n/a | |
|---|
| 783 | n/a | |
|---|
| 784 | n/a | _reply, _arguments, _attributes = self.send(_code, _subcode, |
|---|
| 785 | n/a | _arguments, _attributes) |
|---|
| 786 | n/a | if _arguments.get('errn', 0): |
|---|
| 787 | n/a | raise aetools.Error, aetools.decodeerror(_arguments) |
|---|
| 788 | n/a | # XXXX Optionally decode result |
|---|
| 789 | n/a | if _arguments.has_key('----'): |
|---|
| 790 | n/a | return _arguments['----'] |
|---|
| 791 | n/a | |
|---|
| 792 | n/a | |
|---|
| 793 | n/a | class Browser_Coloring(aetools.ComponentItem): |
|---|
| 794 | n/a | """Browser Coloring - Colors for Browser symbols. """ |
|---|
| 795 | n/a | want = 'BRKW' |
|---|
| 796 | n/a | class _Prop_Browser_Keywords(aetools.NProperty): |
|---|
| 797 | n/a | """Browser Keywords - Mark Browser symbols with color. """ |
|---|
| 798 | n/a | which = 'BW00' |
|---|
| 799 | n/a | want = 'bool' |
|---|
| 800 | n/a | class _Prop_Classes_Color(aetools.NProperty): |
|---|
| 801 | n/a | """Classes Color - The color for classes. """ |
|---|
| 802 | n/a | which = 'BW01' |
|---|
| 803 | n/a | want = 'cRGB' |
|---|
| 804 | n/a | class _Prop_Constants_Color(aetools.NProperty): |
|---|
| 805 | n/a | """Constants Color - The color for constants. """ |
|---|
| 806 | n/a | which = 'BW02' |
|---|
| 807 | n/a | want = 'cRGB' |
|---|
| 808 | n/a | class _Prop_Enums_Color(aetools.NProperty): |
|---|
| 809 | n/a | """Enums Color - The color for enums. """ |
|---|
| 810 | n/a | which = 'BW03' |
|---|
| 811 | n/a | want = 'cRGB' |
|---|
| 812 | n/a | class _Prop_Functions_Color(aetools.NProperty): |
|---|
| 813 | n/a | """Functions Color - Set color for functions. """ |
|---|
| 814 | n/a | which = 'BW04' |
|---|
| 815 | n/a | want = 'cRGB' |
|---|
| 816 | n/a | class _Prop_Globals_Color(aetools.NProperty): |
|---|
| 817 | n/a | """Globals Color - The color for globals """ |
|---|
| 818 | n/a | which = 'BW05' |
|---|
| 819 | n/a | want = 'cRGB' |
|---|
| 820 | n/a | class _Prop_Macros_Color(aetools.NProperty): |
|---|
| 821 | n/a | """Macros Color - The color for macros. """ |
|---|
| 822 | n/a | which = 'BW06' |
|---|
| 823 | n/a | want = 'cRGB' |
|---|
| 824 | n/a | class _Prop_Template_Commands_in_Menu(aetools.NProperty): |
|---|
| 825 | n/a | """Template Commands in Menu - Include template commands in context menus """ |
|---|
| 826 | n/a | which = 'BW10' |
|---|
| 827 | n/a | want = 'bool' |
|---|
| 828 | n/a | class _Prop_Templates_Color(aetools.NProperty): |
|---|
| 829 | n/a | """Templates Color - Set color for templates. """ |
|---|
| 830 | n/a | which = 'BW07' |
|---|
| 831 | n/a | want = 'cRGB' |
|---|
| 832 | n/a | class _Prop_Typedefs_Color(aetools.NProperty): |
|---|
| 833 | n/a | """Typedefs Color - The color for typedefs. """ |
|---|
| 834 | n/a | which = 'BW08' |
|---|
| 835 | n/a | want = 'cRGB' |
|---|
| 836 | n/a | |
|---|
| 837 | n/a | class Build_Settings(aetools.ComponentItem): |
|---|
| 838 | n/a | """Build Settings - Build Settings preferences. """ |
|---|
| 839 | n/a | want = 'BSTG' |
|---|
| 840 | n/a | class _Prop_Build_Before_Running(aetools.NProperty): |
|---|
| 841 | n/a | """Build Before Running - Build the target before running. """ |
|---|
| 842 | n/a | which = 'BX04' |
|---|
| 843 | n/a | want = 'BXbr' |
|---|
| 844 | n/a | class _Prop_Compiler_Thread_Stack_Size(aetools.NProperty): |
|---|
| 845 | n/a | """Compiler Thread Stack Size - Compiler Thread Stack Size """ |
|---|
| 846 | n/a | which = 'BX06' |
|---|
| 847 | n/a | want = 'long' |
|---|
| 848 | n/a | class _Prop_Completion_Sound(aetools.NProperty): |
|---|
| 849 | n/a | """Completion Sound - Play a sound when finished a Bring Up To Date or Make command. """ |
|---|
| 850 | n/a | which = 'BX01' |
|---|
| 851 | n/a | want = 'bool' |
|---|
| 852 | n/a | class _Prop_Failure_Sound(aetools.NProperty): |
|---|
| 853 | n/a | """Failure Sound - The sound CodeWarrior plays when it cannot finish a Bring Up To Date or Make command. """ |
|---|
| 854 | n/a | which = 'BX03' |
|---|
| 855 | n/a | want = 'TEXT' |
|---|
| 856 | n/a | class _Prop_Include_Cache_Size(aetools.NProperty): |
|---|
| 857 | n/a | """Include Cache Size - Include file cache size. """ |
|---|
| 858 | n/a | which = 'BX05' |
|---|
| 859 | n/a | want = 'long' |
|---|
| 860 | n/a | class _Prop_Save_Before_Building(aetools.NProperty): |
|---|
| 861 | n/a | """Save Before Building - Save open editor files before build operations """ |
|---|
| 862 | n/a | which = 'BX07' |
|---|
| 863 | n/a | want = 'bool' |
|---|
| 864 | n/a | class _Prop_Success_Sound(aetools.NProperty): |
|---|
| 865 | n/a | """Success Sound - The sound CodeWarrior plays when it successfully finishes a Bring Up To Date or Make command. """ |
|---|
| 866 | n/a | which = 'BX02' |
|---|
| 867 | n/a | want = 'TEXT' |
|---|
| 868 | n/a | |
|---|
| 869 | n/a | class base_class(aetools.ComponentItem): |
|---|
| 870 | n/a | """base class - A base class or super class of a class """ |
|---|
| 871 | n/a | want = 'BsCl' |
|---|
| 872 | n/a | class _Prop_access(aetools.NProperty): |
|---|
| 873 | n/a | """access - """ |
|---|
| 874 | n/a | which = 'Acce' |
|---|
| 875 | n/a | want = 'Acce' |
|---|
| 876 | n/a | class _Prop_class_(aetools.NProperty): |
|---|
| 877 | n/a | """class - The class object corresponding to this base class """ |
|---|
| 878 | n/a | which = 'Clas' |
|---|
| 879 | n/a | want = 'obj ' |
|---|
| 880 | n/a | class _Prop_virtual(aetools.NProperty): |
|---|
| 881 | n/a | """virtual - """ |
|---|
| 882 | n/a | which = 'Virt' |
|---|
| 883 | n/a | want = 'bool' |
|---|
| 884 | n/a | |
|---|
| 885 | n/a | base_classes = base_class |
|---|
| 886 | n/a | |
|---|
| 887 | n/a | class Custom_Keywords(aetools.ComponentItem): |
|---|
| 888 | n/a | """Custom Keywords - """ |
|---|
| 889 | n/a | want = 'CUKW' |
|---|
| 890 | n/a | class _Prop_Custom_Color_1(aetools.NProperty): |
|---|
| 891 | n/a | """Custom Color 1 - The color for the first set of custom keywords. """ |
|---|
| 892 | n/a | which = 'GH05' |
|---|
| 893 | n/a | want = 'cRGB' |
|---|
| 894 | n/a | class _Prop_Custom_Color_2(aetools.NProperty): |
|---|
| 895 | n/a | """Custom Color 2 - The color for the second set custom keywords. """ |
|---|
| 896 | n/a | which = 'GH06' |
|---|
| 897 | n/a | want = 'cRGB' |
|---|
| 898 | n/a | class _Prop_Custom_Color_3(aetools.NProperty): |
|---|
| 899 | n/a | """Custom Color 3 - The color for the third set of custom keywords. """ |
|---|
| 900 | n/a | which = 'GH07' |
|---|
| 901 | n/a | want = 'cRGB' |
|---|
| 902 | n/a | class _Prop_Custom_Color_4(aetools.NProperty): |
|---|
| 903 | n/a | """Custom Color 4 - The color for the fourth set of custom keywords. """ |
|---|
| 904 | n/a | which = 'GH08' |
|---|
| 905 | n/a | want = 'cRGB' |
|---|
| 906 | n/a | |
|---|
| 907 | n/a | class browser_catalog(aetools.ComponentItem): |
|---|
| 908 | n/a | """browser catalog - The browser symbol catalog for the current project """ |
|---|
| 909 | n/a | want = 'Cata' |
|---|
| 910 | n/a | # element 'Clas' as ['indx', 'name'] |
|---|
| 911 | n/a | |
|---|
| 912 | n/a | class class_(aetools.ComponentItem): |
|---|
| 913 | n/a | """class - A class, struct, or record type in the current project. """ |
|---|
| 914 | n/a | want = 'Clas' |
|---|
| 915 | n/a | class _Prop_all_subclasses(aetools.NProperty): |
|---|
| 916 | n/a | """all subclasses - the classes directly or indirectly derived from this class """ |
|---|
| 917 | n/a | which = 'SubA' |
|---|
| 918 | n/a | want = 'Clas' |
|---|
| 919 | n/a | class _Prop_declaration_end_offset(aetools.NProperty): |
|---|
| 920 | n/a | """declaration end offset - End of class declaration """ |
|---|
| 921 | n/a | which = 'DcEn' |
|---|
| 922 | n/a | want = 'long' |
|---|
| 923 | n/a | class _Prop_declaration_file(aetools.NProperty): |
|---|
| 924 | n/a | """declaration file - Source file containing the class declaration """ |
|---|
| 925 | n/a | which = 'DcFl' |
|---|
| 926 | n/a | want = 'fss ' |
|---|
| 927 | n/a | class _Prop_declaration_start_offset(aetools.NProperty): |
|---|
| 928 | n/a | """declaration start offset - Start of class declaration source code """ |
|---|
| 929 | n/a | which = 'DcSt' |
|---|
| 930 | n/a | want = 'long' |
|---|
| 931 | n/a | class _Prop_language(aetools.NProperty): |
|---|
| 932 | n/a | """language - Implementation language of this class """ |
|---|
| 933 | n/a | which = 'Lang' |
|---|
| 934 | n/a | want = 'Lang' |
|---|
| 935 | n/a | class _Prop_name(aetools.NProperty): |
|---|
| 936 | n/a | """name - """ |
|---|
| 937 | n/a | which = 'pnam' |
|---|
| 938 | n/a | want = 'TEXT' |
|---|
| 939 | n/a | class _Prop_subclasses(aetools.NProperty): |
|---|
| 940 | n/a | """subclasses - the immediate subclasses of this class """ |
|---|
| 941 | n/a | which = 'SubC' |
|---|
| 942 | n/a | want = 'Clas' |
|---|
| 943 | n/a | # element 'BsCl' as ['indx'] |
|---|
| 944 | n/a | # element 'DtMb' as ['indx', 'name'] |
|---|
| 945 | n/a | # element 'MbFn' as ['indx', 'name'] |
|---|
| 946 | n/a | |
|---|
| 947 | n/a | classes = class_ |
|---|
| 948 | n/a | |
|---|
| 949 | n/a | class Debugger_Display(aetools.ComponentItem): |
|---|
| 950 | n/a | """Debugger Display - Debugger Display preferences """ |
|---|
| 951 | n/a | want = 'DbDS' |
|---|
| 952 | n/a | class _Prop_Default_Array_Size(aetools.NProperty): |
|---|
| 953 | n/a | """Default Array Size - Controls whether CodeWarrior uses its own integrated editor or an external application for editing text files. """ |
|---|
| 954 | n/a | which = 'Db08' |
|---|
| 955 | n/a | want = 'shor' |
|---|
| 956 | n/a | class _Prop_Show_As_Decimal(aetools.NProperty): |
|---|
| 957 | n/a | """Show As Decimal - Show variable values as decimal by default """ |
|---|
| 958 | n/a | which = 'Db10' |
|---|
| 959 | n/a | want = 'bool' |
|---|
| 960 | n/a | class _Prop_Show_Locals(aetools.NProperty): |
|---|
| 961 | n/a | """Show Locals - Show locals by default """ |
|---|
| 962 | n/a | which = 'Db09' |
|---|
| 963 | n/a | want = 'bool' |
|---|
| 964 | n/a | class _Prop_Show_Variable_Types(aetools.NProperty): |
|---|
| 965 | n/a | """Show Variable Types - Show variable types by default. """ |
|---|
| 966 | n/a | which = 'Db01' |
|---|
| 967 | n/a | want = 'bool' |
|---|
| 968 | n/a | class _Prop_Sort_By_Method(aetools.NProperty): |
|---|
| 969 | n/a | """Sort By Method - Sort functions by method. """ |
|---|
| 970 | n/a | which = 'Db02' |
|---|
| 971 | n/a | want = 'bool' |
|---|
| 972 | n/a | class _Prop_Threads_in_Window(aetools.NProperty): |
|---|
| 973 | n/a | """Threads in Window - Show threads in separate windows. """ |
|---|
| 974 | n/a | which = 'Db04' |
|---|
| 975 | n/a | want = 'bool' |
|---|
| 976 | n/a | class _Prop_Use_RTTI(aetools.NProperty): |
|---|
| 977 | n/a | """Use RTTI - Enable RunTime Type Information. """ |
|---|
| 978 | n/a | which = 'Db03' |
|---|
| 979 | n/a | want = 'bool' |
|---|
| 980 | n/a | class _Prop_Variable_Changed_Hilite(aetools.NProperty): |
|---|
| 981 | n/a | """Variable Changed Hilite - Variable changed hilite color. """ |
|---|
| 982 | n/a | which = 'Db07' |
|---|
| 983 | n/a | want = 'cRGB' |
|---|
| 984 | n/a | class _Prop_Variable_Hints(aetools.NProperty): |
|---|
| 985 | n/a | """Variable Hints - Show variable hints. """ |
|---|
| 986 | n/a | which = 'Db05' |
|---|
| 987 | n/a | want = 'bool' |
|---|
| 988 | n/a | class _Prop_Watchpoint_Hilite(aetools.NProperty): |
|---|
| 989 | n/a | """Watchpoint Hilite - Watchpoint hilite color. """ |
|---|
| 990 | n/a | which = 'Db06' |
|---|
| 991 | n/a | want = 'cRGB' |
|---|
| 992 | n/a | |
|---|
| 993 | n/a | class Debugger_Global(aetools.ComponentItem): |
|---|
| 994 | n/a | """Debugger Global - Debugger Global preferences """ |
|---|
| 995 | n/a | want = 'DbGL' |
|---|
| 996 | n/a | class _Prop_Auto_Target_Libraries(aetools.NProperty): |
|---|
| 997 | n/a | """Auto Target Libraries - Automatically target libraries when debugging """ |
|---|
| 998 | n/a | which = 'Dg11' |
|---|
| 999 | n/a | want = 'bool' |
|---|
| 1000 | n/a | class _Prop_Cache_Edited_Files(aetools.NProperty): |
|---|
| 1001 | n/a | """Cache Edited Files - Cache edit files between debug sessions """ |
|---|
| 1002 | n/a | which = 'Dg12' |
|---|
| 1003 | n/a | want = 'bool' |
|---|
| 1004 | n/a | class _Prop_Confirm_Kill(aetools.NProperty): |
|---|
| 1005 | n/a | """Confirm Kill - Confirm the \xd4killing\xd5 of the process. """ |
|---|
| 1006 | n/a | which = 'Dg04' |
|---|
| 1007 | n/a | want = 'bool' |
|---|
| 1008 | n/a | class _Prop_Dont_Step_in_Runtime(aetools.NProperty): |
|---|
| 1009 | n/a | """Dont Step in Runtime - Don\xd5t step into runtime code when debugging. """ |
|---|
| 1010 | n/a | which = 'Dg07' |
|---|
| 1011 | n/a | want = 'bool' |
|---|
| 1012 | n/a | class _Prop_File_Cache_Duration(aetools.NProperty): |
|---|
| 1013 | n/a | """File Cache Duration - Duration to keep files in cache (in days) """ |
|---|
| 1014 | n/a | which = 'Dg13' |
|---|
| 1015 | n/a | want = 'shor' |
|---|
| 1016 | n/a | class _Prop_Ignore_Mod_Dates(aetools.NProperty): |
|---|
| 1017 | n/a | """Ignore Mod Dates - Ignore modification dates of files. """ |
|---|
| 1018 | n/a | which = 'Dg01' |
|---|
| 1019 | n/a | want = 'bool' |
|---|
| 1020 | n/a | class _Prop_Launch_Apps_on_Open(aetools.NProperty): |
|---|
| 1021 | n/a | """Launch Apps on Open - Launch applications on the opening of sym files. """ |
|---|
| 1022 | n/a | which = 'Dg03' |
|---|
| 1023 | n/a | want = 'bool' |
|---|
| 1024 | n/a | class _Prop_Open_All_Classes(aetools.NProperty): |
|---|
| 1025 | n/a | """Open All Classes - Open all Java class files. """ |
|---|
| 1026 | n/a | which = 'Dg02' |
|---|
| 1027 | n/a | want = 'bool' |
|---|
| 1028 | n/a | class _Prop_Select_Stack_Crawl(aetools.NProperty): |
|---|
| 1029 | n/a | """Select Stack Crawl - Select the stack crawl. """ |
|---|
| 1030 | n/a | which = 'Dg06' |
|---|
| 1031 | n/a | want = 'bool' |
|---|
| 1032 | n/a | class _Prop_Stop_at_Main(aetools.NProperty): |
|---|
| 1033 | n/a | """Stop at Main - Stop to debug on the main() function. """ |
|---|
| 1034 | n/a | which = 'Dg05' |
|---|
| 1035 | n/a | want = 'bool' |
|---|
| 1036 | n/a | |
|---|
| 1037 | n/a | class Debugger_Target(aetools.ComponentItem): |
|---|
| 1038 | n/a | """Debugger Target - Debugger Target preferences """ |
|---|
| 1039 | n/a | want = 'DbTG' |
|---|
| 1040 | n/a | class _Prop_Cache_symbolics(aetools.NProperty): |
|---|
| 1041 | n/a | """Cache symbolics - Cache symbolics between runs when executable doesn\xd5t change, else release symbolics files after killing process. """ |
|---|
| 1042 | n/a | which = 'Dt15' |
|---|
| 1043 | n/a | want = 'bool' |
|---|
| 1044 | n/a | class _Prop_Data_Update_Interval(aetools.NProperty): |
|---|
| 1045 | n/a | """Data Update Interval - How often to update the data while running (in seconds) """ |
|---|
| 1046 | n/a | which = 'Dt09' |
|---|
| 1047 | n/a | want = 'long' |
|---|
| 1048 | n/a | class _Prop_Log_System_Messages(aetools.NProperty): |
|---|
| 1049 | n/a | """Log System Messages - Log all system messages while debugging. """ |
|---|
| 1050 | n/a | which = 'Dt02' |
|---|
| 1051 | n/a | want = 'bool' |
|---|
| 1052 | n/a | class _Prop_Relocated_Executable_Path(aetools.NProperty): |
|---|
| 1053 | n/a | """Relocated Executable Path - Path to location of relocated libraries, code resources or remote debugging folder """ |
|---|
| 1054 | n/a | which = 'Dt10' |
|---|
| 1055 | n/a | want = 'RlPt' |
|---|
| 1056 | n/a | class _Prop_Stop_at_temp_breakpoint(aetools.NProperty): |
|---|
| 1057 | n/a | """Stop at temp breakpoint - Stop at a temp breakpoint on program launch. Set breakpoint type in Temp Breakpoint Type AppleEvent. """ |
|---|
| 1058 | n/a | which = 'Dt13' |
|---|
| 1059 | n/a | want = 'bool' |
|---|
| 1060 | n/a | class _Prop_Temp_Breakpoint_Type(aetools.NProperty): |
|---|
| 1061 | n/a | """Temp Breakpoint Type - Type of temp breakpoint to set on program launch. """ |
|---|
| 1062 | n/a | which = 'Dt16' |
|---|
| 1063 | n/a | want = 'TmpB' |
|---|
| 1064 | n/a | class _Prop_Temp_breakpoint_names(aetools.NProperty): |
|---|
| 1065 | n/a | """Temp breakpoint names - Comma separated list of names to attempt to stop at on program launch. First symbol to resolve in list is the temp BP that will be set. """ |
|---|
| 1066 | n/a | which = 'Dt14' |
|---|
| 1067 | n/a | want = 'ctxt' |
|---|
| 1068 | n/a | class _Prop_Update_Data_While_Running(aetools.NProperty): |
|---|
| 1069 | n/a | """Update Data While Running - Should pause to update data while running """ |
|---|
| 1070 | n/a | which = 'Dt08' |
|---|
| 1071 | n/a | want = 'bool' |
|---|
| 1072 | n/a | |
|---|
| 1073 | n/a | class Debugger_Windowing(aetools.ComponentItem): |
|---|
| 1074 | n/a | """Debugger Windowing - """ |
|---|
| 1075 | n/a | want = 'DbWN' |
|---|
| 1076 | n/a | class _Prop_Debugging_Start_Action(aetools.NProperty): |
|---|
| 1077 | n/a | """Debugging Start Action - What action to take when debug session starts """ |
|---|
| 1078 | n/a | which = 'Dw01' |
|---|
| 1079 | n/a | want = 'DbSA' |
|---|
| 1080 | n/a | class _Prop_Do_Nothing_To_Projects(aetools.NProperty): |
|---|
| 1081 | n/a | """Do Nothing To Projects - Suppress debugging start action for project windows """ |
|---|
| 1082 | n/a | which = 'Dw02' |
|---|
| 1083 | n/a | want = 'bool' |
|---|
| 1084 | n/a | |
|---|
| 1085 | n/a | class data_member(aetools.ComponentItem): |
|---|
| 1086 | n/a | """data member - A class data member or field """ |
|---|
| 1087 | n/a | want = 'DtMb' |
|---|
| 1088 | n/a | class _Prop_static(aetools.NProperty): |
|---|
| 1089 | n/a | """static - """ |
|---|
| 1090 | n/a | which = 'Stat' |
|---|
| 1091 | n/a | want = 'bool' |
|---|
| 1092 | n/a | |
|---|
| 1093 | n/a | data_members = data_member |
|---|
| 1094 | n/a | |
|---|
| 1095 | n/a | class Editor(aetools.ComponentItem): |
|---|
| 1096 | n/a | """Editor - """ |
|---|
| 1097 | n/a | want = 'EDTR' |
|---|
| 1098 | n/a | class _Prop_Background_Color(aetools.NProperty): |
|---|
| 1099 | n/a | """Background Color - Color of the background of editor windows. """ |
|---|
| 1100 | n/a | which = 'ED13' |
|---|
| 1101 | n/a | want = 'cRGB' |
|---|
| 1102 | n/a | class _Prop_Balance(aetools.NProperty): |
|---|
| 1103 | n/a | """Balance - Flash the matching opening bracket when you type a closing bracket. """ |
|---|
| 1104 | n/a | which = 'ED03' |
|---|
| 1105 | n/a | want = 'bool' |
|---|
| 1106 | n/a | class _Prop_Context_Popup_Delay(aetools.NProperty): |
|---|
| 1107 | n/a | """Context Popup Delay - The amount of time, in sixtieths of a second, before the context popup is displayed if you click and hold on a browser symbol. """ |
|---|
| 1108 | n/a | which = 'ED14' |
|---|
| 1109 | n/a | want = 'long' |
|---|
| 1110 | n/a | class _Prop_Default_Text_File_Format(aetools.NProperty): |
|---|
| 1111 | n/a | """Default Text File Format - Default text file format (i.e. which type of line endings to use) """ |
|---|
| 1112 | n/a | which = 'ED17' |
|---|
| 1113 | n/a | want = 'TxtF' |
|---|
| 1114 | n/a | class _Prop_Dynamic_Scroll(aetools.NProperty): |
|---|
| 1115 | n/a | """Dynamic Scroll - Display a window\xd5s contents as you move the scroll box. """ |
|---|
| 1116 | n/a | which = 'ED02' |
|---|
| 1117 | n/a | want = 'bool' |
|---|
| 1118 | n/a | class _Prop_Flash_Delay(aetools.NProperty): |
|---|
| 1119 | n/a | """Flash Delay - The amount of time, in sixtieths of a second, the editor highlights a matching bracket. """ |
|---|
| 1120 | n/a | which = 'ED01' |
|---|
| 1121 | n/a | want = 'long' |
|---|
| 1122 | n/a | class _Prop_Left_Margin_Line_Select(aetools.NProperty): |
|---|
| 1123 | n/a | """Left Margin Line Select - Clicking in the left margin selects lines """ |
|---|
| 1124 | n/a | which = 'ED16' |
|---|
| 1125 | n/a | want = 'bool' |
|---|
| 1126 | n/a | class _Prop_Main_Text_Color(aetools.NProperty): |
|---|
| 1127 | n/a | """Main Text Color - Main, default, color for text. """ |
|---|
| 1128 | n/a | which = 'ED12' |
|---|
| 1129 | n/a | want = 'cRGB' |
|---|
| 1130 | n/a | class _Prop_Relaxed_C_Popup_Parsing(aetools.NProperty): |
|---|
| 1131 | n/a | """Relaxed C Popup Parsing - Relax the function parser for C source files """ |
|---|
| 1132 | n/a | which = 'ED15' |
|---|
| 1133 | n/a | want = 'bool' |
|---|
| 1134 | n/a | class _Prop_Remember_Font(aetools.NProperty): |
|---|
| 1135 | n/a | """Remember Font - Display a source file with its own font settings. """ |
|---|
| 1136 | n/a | which = 'ED08' |
|---|
| 1137 | n/a | want = 'bool' |
|---|
| 1138 | n/a | class _Prop_Remember_Selection(aetools.NProperty): |
|---|
| 1139 | n/a | """Remember Selection - Restore the previous selection in a file when you open it. """ |
|---|
| 1140 | n/a | which = 'ED09' |
|---|
| 1141 | n/a | want = 'bool' |
|---|
| 1142 | n/a | class _Prop_Remember_Window(aetools.NProperty): |
|---|
| 1143 | n/a | """Remember Window - Restore the last size and position for a source file window when you open it. """ |
|---|
| 1144 | n/a | which = 'ED10' |
|---|
| 1145 | n/a | want = 'bool' |
|---|
| 1146 | n/a | class _Prop_Sort_Function_Popup(aetools.NProperty): |
|---|
| 1147 | n/a | """Sort Function Popup - """ |
|---|
| 1148 | n/a | which = 'ED06' |
|---|
| 1149 | n/a | want = 'bool' |
|---|
| 1150 | n/a | class _Prop_Use_Drag__26__Drop_Editing(aetools.NProperty): |
|---|
| 1151 | n/a | """Use Drag & Drop Editing - Use Drag & Drop text editing. """ |
|---|
| 1152 | n/a | which = 'ED04' |
|---|
| 1153 | n/a | want = 'bool' |
|---|
| 1154 | n/a | class _Prop_Use_Multiple_Undo(aetools.NProperty): |
|---|
| 1155 | n/a | """Use Multiple Undo - """ |
|---|
| 1156 | n/a | which = 'ED07' |
|---|
| 1157 | n/a | want = 'bool' |
|---|
| 1158 | n/a | |
|---|
| 1159 | n/a | class Environment_Variable(aetools.ComponentItem): |
|---|
| 1160 | n/a | """Environment Variable - Environment variable for host OS """ |
|---|
| 1161 | n/a | want = 'EnvV' |
|---|
| 1162 | n/a | class _Prop_value(aetools.NProperty): |
|---|
| 1163 | n/a | """value - Value of the environment variable """ |
|---|
| 1164 | n/a | which = 'Valu' |
|---|
| 1165 | n/a | want = 'TEXT' |
|---|
| 1166 | n/a | |
|---|
| 1167 | n/a | class Error_Information(aetools.ComponentItem): |
|---|
| 1168 | n/a | """Error Information - Describes a single error or warning from the compiler or the linker. """ |
|---|
| 1169 | n/a | want = 'ErrM' |
|---|
| 1170 | n/a | class _Prop_disk_file(aetools.NProperty): |
|---|
| 1171 | n/a | """disk file - The file where the error occurred. May not be returned for certain kinds of errors (eg, link errors). """ |
|---|
| 1172 | n/a | which = 'file' |
|---|
| 1173 | n/a | want = 'fss ' |
|---|
| 1174 | n/a | class _Prop_lineNumber(aetools.NProperty): |
|---|
| 1175 | n/a | """lineNumber - The line in the file where the error occurred. May not be returned for certain kinds of errors (eg, link errors). """ |
|---|
| 1176 | n/a | which = 'ErrL' |
|---|
| 1177 | n/a | want = 'long' |
|---|
| 1178 | n/a | class _Prop_message(aetools.NProperty): |
|---|
| 1179 | n/a | """message - The error or warning message. """ |
|---|
| 1180 | n/a | which = 'ErrS' |
|---|
| 1181 | n/a | want = 'TEXT' |
|---|
| 1182 | n/a | class _Prop_messageKind(aetools.NProperty): |
|---|
| 1183 | n/a | """messageKind - The type of error or warning. """ |
|---|
| 1184 | n/a | which = 'ErrT' |
|---|
| 1185 | n/a | want = 'ErrT' |
|---|
| 1186 | n/a | |
|---|
| 1187 | n/a | class Function_Information(aetools.ComponentItem): |
|---|
| 1188 | n/a | """Function Information - Describes the location of any function or global data definition within the current project. """ |
|---|
| 1189 | n/a | want = 'FDef' |
|---|
| 1190 | n/a | |
|---|
| 1191 | n/a | class File_Mappings(aetools.ComponentItem): |
|---|
| 1192 | n/a | """File Mappings - Mappings of extensions & file types to compilers """ |
|---|
| 1193 | n/a | want = 'FLMP' |
|---|
| 1194 | n/a | class _Prop_Mappings(aetools.NProperty): |
|---|
| 1195 | n/a | """Mappings - """ |
|---|
| 1196 | n/a | which = 'FMps' |
|---|
| 1197 | n/a | want = 'FMap' |
|---|
| 1198 | n/a | |
|---|
| 1199 | n/a | class File_Mapping(aetools.ComponentItem): |
|---|
| 1200 | n/a | """File Mapping - """ |
|---|
| 1201 | n/a | want = 'FMap' |
|---|
| 1202 | n/a | class _Prop_Compiler(aetools.NProperty): |
|---|
| 1203 | n/a | """Compiler - """ |
|---|
| 1204 | n/a | which = 'TA07' |
|---|
| 1205 | n/a | want = 'TEXT' |
|---|
| 1206 | n/a | class _Prop_Extension(aetools.NProperty): |
|---|
| 1207 | n/a | """Extension - """ |
|---|
| 1208 | n/a | which = 'TA02' |
|---|
| 1209 | n/a | want = 'TEXT' |
|---|
| 1210 | n/a | class _Prop_File_Type(aetools.NProperty): |
|---|
| 1211 | n/a | """File Type - """ |
|---|
| 1212 | n/a | which = 'PR04' |
|---|
| 1213 | n/a | want = 'TEXT' |
|---|
| 1214 | n/a | class _Prop_Ignored_by_Make(aetools.NProperty): |
|---|
| 1215 | n/a | """Ignored by Make - """ |
|---|
| 1216 | n/a | which = 'TA06' |
|---|
| 1217 | n/a | want = 'bool' |
|---|
| 1218 | n/a | class _Prop_Launchable(aetools.NProperty): |
|---|
| 1219 | n/a | """Launchable - """ |
|---|
| 1220 | n/a | which = 'TA05' |
|---|
| 1221 | n/a | want = 'bool' |
|---|
| 1222 | n/a | class _Prop_Precompiled(aetools.NProperty): |
|---|
| 1223 | n/a | """Precompiled - """ |
|---|
| 1224 | n/a | which = 'TA03' |
|---|
| 1225 | n/a | want = 'bool' |
|---|
| 1226 | n/a | class _Prop_Resource_File(aetools.NProperty): |
|---|
| 1227 | n/a | """Resource File - """ |
|---|
| 1228 | n/a | which = 'TA04' |
|---|
| 1229 | n/a | want = 'bool' |
|---|
| 1230 | n/a | |
|---|
| 1231 | n/a | class Global_Source_Trees(aetools.ComponentItem): |
|---|
| 1232 | n/a | """Global Source Trees - Globally-defined source tree roots """ |
|---|
| 1233 | n/a | want = 'GSTs' |
|---|
| 1234 | n/a | class _Prop_Source_Trees(aetools.NProperty): |
|---|
| 1235 | n/a | """Source Trees - List of source tree roots """ |
|---|
| 1236 | n/a | which = 'ST01' |
|---|
| 1237 | n/a | want = 'SrcT' |
|---|
| 1238 | n/a | |
|---|
| 1239 | n/a | class Extras(aetools.ComponentItem): |
|---|
| 1240 | n/a | """Extras - """ |
|---|
| 1241 | n/a | want = 'GXTR' |
|---|
| 1242 | n/a | class _Prop_Automatic_Toolbar_Help(aetools.NProperty): |
|---|
| 1243 | n/a | """Automatic Toolbar Help - Automatically show balloon help in toolbar after delay """ |
|---|
| 1244 | n/a | which = 'EX19' |
|---|
| 1245 | n/a | want = 'bool' |
|---|
| 1246 | n/a | class _Prop_External_Reference(aetools.NProperty): |
|---|
| 1247 | n/a | """External Reference - Which on-line function reference to use. """ |
|---|
| 1248 | n/a | which = 'EX08' |
|---|
| 1249 | n/a | want = 'RefP' |
|---|
| 1250 | n/a | class _Prop_Full_Screen_Zoom(aetools.NProperty): |
|---|
| 1251 | n/a | """Full Screen Zoom - Zoom windows to the full screen width. """ |
|---|
| 1252 | n/a | which = 'EX07' |
|---|
| 1253 | n/a | want = 'bool' |
|---|
| 1254 | n/a | class _Prop_Recent_Editor_Count(aetools.NProperty): |
|---|
| 1255 | n/a | """Recent Editor Count - Maximum number of editor documents to show in the \xd2Open Recent\xd3 menu """ |
|---|
| 1256 | n/a | which = 'EX16' |
|---|
| 1257 | n/a | want = 'shor' |
|---|
| 1258 | n/a | class _Prop_Recent_Project_Count(aetools.NProperty): |
|---|
| 1259 | n/a | """Recent Project Count - Maximum number of project documents to show in the \xd2Open Recent\xd3 menu """ |
|---|
| 1260 | n/a | which = 'EX17' |
|---|
| 1261 | n/a | want = 'shor' |
|---|
| 1262 | n/a | class _Prop_Use_Editor_Extensions(aetools.NProperty): |
|---|
| 1263 | n/a | """Use Editor Extensions - Controls the use of the Editor Extensions menu """ |
|---|
| 1264 | n/a | which = 'EX10' |
|---|
| 1265 | n/a | want = 'bool' |
|---|
| 1266 | n/a | class _Prop_Use_External_Editor(aetools.NProperty): |
|---|
| 1267 | n/a | """Use External Editor - Controls whether CodeWarrior uses its own integrated editor or an external application for editing text files. """ |
|---|
| 1268 | n/a | which = 'EX11' |
|---|
| 1269 | n/a | want = 'bool' |
|---|
| 1270 | n/a | class _Prop_Use_Script_Menu(aetools.NProperty): |
|---|
| 1271 | n/a | """Use Script Menu - Controls the use of the AppleScript menu """ |
|---|
| 1272 | n/a | which = 'EX12' |
|---|
| 1273 | n/a | want = 'bool' |
|---|
| 1274 | n/a | class _Prop_Use_ToolServer_Menu(aetools.NProperty): |
|---|
| 1275 | n/a | """Use ToolServer Menu - Controls the use of the ToolServer menu """ |
|---|
| 1276 | n/a | which = 'EX18' |
|---|
| 1277 | n/a | want = 'bool' |
|---|
| 1278 | n/a | |
|---|
| 1279 | n/a | class Build_Extras(aetools.ComponentItem): |
|---|
| 1280 | n/a | """Build Extras - """ |
|---|
| 1281 | n/a | want = 'LXTR' |
|---|
| 1282 | n/a | class _Prop_Browser_Active(aetools.NProperty): |
|---|
| 1283 | n/a | """Browser Active - Allow the collection of browser information. """ |
|---|
| 1284 | n/a | which = 'EX09' |
|---|
| 1285 | n/a | want = 'bool' |
|---|
| 1286 | n/a | class _Prop_Cache_Subproject_Data(aetools.NProperty): |
|---|
| 1287 | n/a | """Cache Subproject Data - """ |
|---|
| 1288 | n/a | which = 'EX31' |
|---|
| 1289 | n/a | want = 'bool' |
|---|
| 1290 | n/a | class _Prop_Dump_Browser_Info(aetools.NProperty): |
|---|
| 1291 | n/a | """Dump Browser Info - """ |
|---|
| 1292 | n/a | which = 'EX30' |
|---|
| 1293 | n/a | want = 'bool' |
|---|
| 1294 | n/a | class _Prop_Modification_Date_Caching(aetools.NProperty): |
|---|
| 1295 | n/a | """Modification Date Caching - """ |
|---|
| 1296 | n/a | which = 'EX04' |
|---|
| 1297 | n/a | want = 'bool' |
|---|
| 1298 | n/a | |
|---|
| 1299 | n/a | class member_function(aetools.ComponentItem): |
|---|
| 1300 | n/a | """member function - A class member function or method. """ |
|---|
| 1301 | n/a | want = 'MbFn' |
|---|
| 1302 | n/a | class _Prop_implementation_end_offset(aetools.NProperty): |
|---|
| 1303 | n/a | """implementation end offset - end of member function definition """ |
|---|
| 1304 | n/a | which = 'DfEn' |
|---|
| 1305 | n/a | want = 'long' |
|---|
| 1306 | n/a | class _Prop_implementation_file(aetools.NProperty): |
|---|
| 1307 | n/a | """implementation file - Source file containing the member function definition """ |
|---|
| 1308 | n/a | which = 'DfFl' |
|---|
| 1309 | n/a | want = 'fss ' |
|---|
| 1310 | n/a | class _Prop_implementation_start_offset(aetools.NProperty): |
|---|
| 1311 | n/a | """implementation start offset - start of member function definition source code """ |
|---|
| 1312 | n/a | which = 'DfSt' |
|---|
| 1313 | n/a | want = 'long' |
|---|
| 1314 | n/a | |
|---|
| 1315 | n/a | member_functions = member_function |
|---|
| 1316 | n/a | |
|---|
| 1317 | n/a | class Access_Paths(aetools.ComponentItem): |
|---|
| 1318 | n/a | """Access Paths - Contains the definitions of a project\xd5s access (search) paths. """ |
|---|
| 1319 | n/a | want = 'PATH' |
|---|
| 1320 | n/a | class _Prop_Always_Full_Search(aetools.NProperty): |
|---|
| 1321 | n/a | """Always Full Search - To force the compiler to search for system includes like it searches for user includes. """ |
|---|
| 1322 | n/a | which = 'PA02' |
|---|
| 1323 | n/a | want = 'bool' |
|---|
| 1324 | n/a | class _Prop_Convert_Paths(aetools.NProperty): |
|---|
| 1325 | n/a | """Convert Paths - Enables conversion of DOS & Unix-style relative paths when searching for files. """ |
|---|
| 1326 | n/a | which = 'PA04' |
|---|
| 1327 | n/a | want = 'bool' |
|---|
| 1328 | n/a | class _Prop_Require_Framework_Includes(aetools.NProperty): |
|---|
| 1329 | n/a | """Require Framework Includes - Causes the IDE to only look in the framework access paths if a Mac OS X framework style include (i.e. <Carbon/Carbon.h> ) is used. """ |
|---|
| 1330 | n/a | which = 'PA05' |
|---|
| 1331 | n/a | want = 'bool' |
|---|
| 1332 | n/a | class _Prop_System_Paths(aetools.NProperty): |
|---|
| 1333 | n/a | """System Paths - To add an access path for the include files. (Not supported in Pascal) """ |
|---|
| 1334 | n/a | which = 'PA03' |
|---|
| 1335 | n/a | want = 'PInf' |
|---|
| 1336 | n/a | class _Prop_User_Paths(aetools.NProperty): |
|---|
| 1337 | n/a | """User Paths - To add an access path for the source files. """ |
|---|
| 1338 | n/a | which = 'PA01' |
|---|
| 1339 | n/a | want = 'PInf' |
|---|
| 1340 | n/a | |
|---|
| 1341 | n/a | class Path_Information(aetools.ComponentItem): |
|---|
| 1342 | n/a | """Path Information - Contains all of the parameters that describe an access path. """ |
|---|
| 1343 | n/a | want = 'PInf' |
|---|
| 1344 | n/a | class _Prop_format(aetools.NProperty): |
|---|
| 1345 | n/a | """format - Format of the a """ |
|---|
| 1346 | n/a | which = 'Frmt' |
|---|
| 1347 | n/a | want = 'PthF' |
|---|
| 1348 | n/a | class _Prop_framework(aetools.NProperty): |
|---|
| 1349 | n/a | """framework - Is the path a Mac OS X framework style path? (This flag is readable but not writeable from AppleScript.) """ |
|---|
| 1350 | n/a | which = 'Frmw' |
|---|
| 1351 | n/a | want = 'bool' |
|---|
| 1352 | n/a | class _Prop_host_flags(aetools.NProperty): |
|---|
| 1353 | n/a | """host flags - Bit fields enabling the access path for each host OS (1 = Mac OS, 2 = Windows) """ |
|---|
| 1354 | n/a | which = 'HstF' |
|---|
| 1355 | n/a | want = 'long' |
|---|
| 1356 | n/a | class _Prop_origin(aetools.NProperty): |
|---|
| 1357 | n/a | """origin - """ |
|---|
| 1358 | n/a | which = 'Orig' |
|---|
| 1359 | n/a | want = 'PPrm' |
|---|
| 1360 | n/a | class _Prop_recursive(aetools.NProperty): |
|---|
| 1361 | n/a | """recursive - Will the path be searched recursively? (Default is true) """ |
|---|
| 1362 | n/a | which = 'Recu' |
|---|
| 1363 | n/a | want = 'bool' |
|---|
| 1364 | n/a | class _Prop_root(aetools.NProperty): |
|---|
| 1365 | n/a | """root - Name of the root of the relative path. Pre-defined values are \xd2Absolute\xd3, \xd2Project\xd3, \xd2CodeWarrior\xd3, and \xd2System\xd3. Anything else is a user-defined root. """ |
|---|
| 1366 | n/a | which = 'Root' |
|---|
| 1367 | n/a | want = 'TEXT' |
|---|
| 1368 | n/a | |
|---|
| 1369 | n/a | class Plugin_Settings(aetools.ComponentItem): |
|---|
| 1370 | n/a | """Plugin Settings - Settings for plugin tools """ |
|---|
| 1371 | n/a | want = 'PSTG' |
|---|
| 1372 | n/a | class _Prop_Disable_Third_Party_COM_Plugins(aetools.NProperty): |
|---|
| 1373 | n/a | """Disable Third Party COM Plugins - Disable COM plugins from third parties """ |
|---|
| 1374 | n/a | which = 'PX02' |
|---|
| 1375 | n/a | want = 'bool' |
|---|
| 1376 | n/a | class _Prop_Plugin_Diagnostics_Level(aetools.NProperty): |
|---|
| 1377 | n/a | """Plugin Diagnostics Level - Plugin Diagnostics Level is for those who are developing plugins for the IDE and need to debug them. """ |
|---|
| 1378 | n/a | which = 'PX01' |
|---|
| 1379 | n/a | want = 'PXdg' |
|---|
| 1380 | n/a | |
|---|
| 1381 | n/a | class Runtime_Settings(aetools.ComponentItem): |
|---|
| 1382 | n/a | """Runtime Settings - Runtime settings """ |
|---|
| 1383 | n/a | want = 'RSTG' |
|---|
| 1384 | n/a | class _Prop_Command_Line_Arguments(aetools.NProperty): |
|---|
| 1385 | n/a | """Command Line Arguments - Extra command line args to pass to executable """ |
|---|
| 1386 | n/a | which = 'RS02' |
|---|
| 1387 | n/a | want = 'TEXT' |
|---|
| 1388 | n/a | class _Prop_Environment_Variables(aetools.NProperty): |
|---|
| 1389 | n/a | """Environment Variables - Environment variables to use when running the executable """ |
|---|
| 1390 | n/a | which = 'RS04' |
|---|
| 1391 | n/a | want = 'EnvV' |
|---|
| 1392 | n/a | class _Prop_Host_Application(aetools.NProperty): |
|---|
| 1393 | n/a | """Host Application - Host application for running/debugging libraries and code resources """ |
|---|
| 1394 | n/a | which = 'RS01' |
|---|
| 1395 | n/a | want = 'RlPt' |
|---|
| 1396 | n/a | class _Prop_Working_Directory(aetools.NProperty): |
|---|
| 1397 | n/a | """Working Directory - Working directory to use when running the executable """ |
|---|
| 1398 | n/a | which = 'RS03' |
|---|
| 1399 | n/a | want = 'TEXT' |
|---|
| 1400 | n/a | |
|---|
| 1401 | n/a | class Relative_Path(aetools.ComponentItem): |
|---|
| 1402 | n/a | """Relative Path - Relative path from some root """ |
|---|
| 1403 | n/a | want = 'RlPt' |
|---|
| 1404 | n/a | |
|---|
| 1405 | n/a | class Shielded_Folder(aetools.ComponentItem): |
|---|
| 1406 | n/a | """Shielded Folder - """ |
|---|
| 1407 | n/a | want = 'SFit' |
|---|
| 1408 | n/a | class _Prop_Expression_To_Match(aetools.NProperty): |
|---|
| 1409 | n/a | """Expression To Match - Regular expression which describes folders to skip """ |
|---|
| 1410 | n/a | which = 'SF01' |
|---|
| 1411 | n/a | want = 'TEXT' |
|---|
| 1412 | n/a | class _Prop_Skip_Find_And_Compare_Operations(aetools.NProperty): |
|---|
| 1413 | n/a | """Skip Find And Compare Operations - Matching folders will be skipped during find and compare operations """ |
|---|
| 1414 | n/a | which = 'SF03' |
|---|
| 1415 | n/a | want = 'bool' |
|---|
| 1416 | n/a | class _Prop_Skip_Project_Operations(aetools.NProperty): |
|---|
| 1417 | n/a | """Skip Project Operations - Matching folders will be skipped during project operations """ |
|---|
| 1418 | n/a | which = 'SF02' |
|---|
| 1419 | n/a | want = 'bool' |
|---|
| 1420 | n/a | |
|---|
| 1421 | n/a | class Shielded_Folders(aetools.ComponentItem): |
|---|
| 1422 | n/a | """Shielded Folders - Folders skipped when performing project and find-and-compare operations """ |
|---|
| 1423 | n/a | want = 'SHFL' |
|---|
| 1424 | n/a | class _Prop_Shielded_Items(aetools.NProperty): |
|---|
| 1425 | n/a | """Shielded Items - """ |
|---|
| 1426 | n/a | which = 'SFis' |
|---|
| 1427 | n/a | want = 'SFit' |
|---|
| 1428 | n/a | |
|---|
| 1429 | n/a | class Syntax_Coloring(aetools.ComponentItem): |
|---|
| 1430 | n/a | """Syntax Coloring - """ |
|---|
| 1431 | n/a | want = 'SNTX' |
|---|
| 1432 | n/a | class _Prop_Comment_Color(aetools.NProperty): |
|---|
| 1433 | n/a | """Comment Color - The color for comments. """ |
|---|
| 1434 | n/a | which = 'GH02' |
|---|
| 1435 | n/a | want = 'cRGB' |
|---|
| 1436 | n/a | class _Prop_Keyword_Color(aetools.NProperty): |
|---|
| 1437 | n/a | """Keyword Color - The color for language keywords. """ |
|---|
| 1438 | n/a | which = 'GH03' |
|---|
| 1439 | n/a | want = 'cRGB' |
|---|
| 1440 | n/a | class _Prop_String_Color(aetools.NProperty): |
|---|
| 1441 | n/a | """String Color - The color for strings. """ |
|---|
| 1442 | n/a | which = 'GH04' |
|---|
| 1443 | n/a | want = 'cRGB' |
|---|
| 1444 | n/a | class _Prop_Syntax_Coloring(aetools.NProperty): |
|---|
| 1445 | n/a | """Syntax Coloring - Mark keywords and comments with color. """ |
|---|
| 1446 | n/a | which = 'GH01' |
|---|
| 1447 | n/a | want = 'bool' |
|---|
| 1448 | n/a | |
|---|
| 1449 | n/a | class Segment(aetools.ComponentItem): |
|---|
| 1450 | n/a | """Segment - A segment or group in the project """ |
|---|
| 1451 | n/a | want = 'Seg ' |
|---|
| 1452 | n/a | class _Prop_filecount(aetools.NProperty): |
|---|
| 1453 | n/a | """filecount - """ |
|---|
| 1454 | n/a | which = 'NumF' |
|---|
| 1455 | n/a | want = 'shor' |
|---|
| 1456 | n/a | class _Prop_seg_2d_locked(aetools.NProperty): |
|---|
| 1457 | n/a | """seg-locked - Is the segment locked ? [68K only] """ |
|---|
| 1458 | n/a | which = 'PLck' |
|---|
| 1459 | n/a | want = 'bool' |
|---|
| 1460 | n/a | class _Prop_seg_2d_preloaded(aetools.NProperty): |
|---|
| 1461 | n/a | """seg-preloaded - Is the segment preloaded ? [68K only] """ |
|---|
| 1462 | n/a | which = 'Prel' |
|---|
| 1463 | n/a | want = 'bool' |
|---|
| 1464 | n/a | class _Prop_seg_2d_protected(aetools.NProperty): |
|---|
| 1465 | n/a | """seg-protected - Is the segment protected ? [68K only] """ |
|---|
| 1466 | n/a | which = 'Prot' |
|---|
| 1467 | n/a | want = 'bool' |
|---|
| 1468 | n/a | class _Prop_seg_2d_purgeable(aetools.NProperty): |
|---|
| 1469 | n/a | """seg-purgeable - Is the segment purgeable ? [68K only] """ |
|---|
| 1470 | n/a | which = 'Purg' |
|---|
| 1471 | n/a | want = 'bool' |
|---|
| 1472 | n/a | class _Prop_seg_2d_system_heap(aetools.NProperty): |
|---|
| 1473 | n/a | """seg-system heap - Is the segment loaded into the system heap ? [68K only] """ |
|---|
| 1474 | n/a | which = 'SysH' |
|---|
| 1475 | n/a | want = 'bool' |
|---|
| 1476 | n/a | |
|---|
| 1477 | n/a | class ProjectFile(aetools.ComponentItem): |
|---|
| 1478 | n/a | """ProjectFile - A file contained in a project """ |
|---|
| 1479 | n/a | want = 'SrcF' |
|---|
| 1480 | n/a | class _Prop_codesize(aetools.NProperty): |
|---|
| 1481 | n/a | """codesize - The size of this file\xd5s code. """ |
|---|
| 1482 | n/a | which = 'CSiz' |
|---|
| 1483 | n/a | want = 'long' |
|---|
| 1484 | n/a | class _Prop_datasize(aetools.NProperty): |
|---|
| 1485 | n/a | """datasize - The size of this file\xd5s data. """ |
|---|
| 1486 | n/a | which = 'DSiz' |
|---|
| 1487 | n/a | want = 'long' |
|---|
| 1488 | n/a | class _Prop_filetype(aetools.NProperty): |
|---|
| 1489 | n/a | """filetype - What kind of file is this ? """ |
|---|
| 1490 | n/a | which = 'SrcT' |
|---|
| 1491 | n/a | want = 'SrcT' |
|---|
| 1492 | n/a | class _Prop_includes(aetools.NProperty): |
|---|
| 1493 | n/a | """includes - """ |
|---|
| 1494 | n/a | which = 'IncF' |
|---|
| 1495 | n/a | want = 'fss ' |
|---|
| 1496 | n/a | class _Prop_initialize_before(aetools.NProperty): |
|---|
| 1497 | n/a | """initialize before - Initialize the shared library before the main application. """ |
|---|
| 1498 | n/a | which = 'Bfor' |
|---|
| 1499 | n/a | want = 'bool' |
|---|
| 1500 | n/a | class _Prop_symbols(aetools.NProperty): |
|---|
| 1501 | n/a | """symbols - Are debugging symbols generated for this file ? """ |
|---|
| 1502 | n/a | which = 'SymG' |
|---|
| 1503 | n/a | want = 'bool' |
|---|
| 1504 | n/a | class _Prop_up_to_date(aetools.NProperty): |
|---|
| 1505 | n/a | """up to date - Has the file been compiled since its last modification ? """ |
|---|
| 1506 | n/a | which = 'UpTD' |
|---|
| 1507 | n/a | want = 'bool' |
|---|
| 1508 | n/a | class _Prop_weak_link(aetools.NProperty): |
|---|
| 1509 | n/a | """weak link - Is this file imported weakly into the project ? [PowerPC only] """ |
|---|
| 1510 | n/a | which = 'Weak' |
|---|
| 1511 | n/a | want = 'bool' |
|---|
| 1512 | n/a | |
|---|
| 1513 | n/a | class Source_Tree(aetools.ComponentItem): |
|---|
| 1514 | n/a | """Source Tree - User-defined source tree root """ |
|---|
| 1515 | n/a | want = 'SrcT' |
|---|
| 1516 | n/a | class _Prop_path(aetools.NProperty): |
|---|
| 1517 | n/a | """path - path for the user-defined source tree root """ |
|---|
| 1518 | n/a | which = 'Path' |
|---|
| 1519 | n/a | want = 'TEXT' |
|---|
| 1520 | n/a | class _Prop_path_kind(aetools.NProperty): |
|---|
| 1521 | n/a | """path kind - kind of path """ |
|---|
| 1522 | n/a | which = 'Kind' |
|---|
| 1523 | n/a | want = 'STKd' |
|---|
| 1524 | n/a | |
|---|
| 1525 | n/a | class Target_Settings(aetools.ComponentItem): |
|---|
| 1526 | n/a | """Target Settings - Contains the definitions of a project\xd5s target. """ |
|---|
| 1527 | n/a | want = 'TARG' |
|---|
| 1528 | n/a | class _Prop_Linker(aetools.NProperty): |
|---|
| 1529 | n/a | """Linker - The name of the current linker. """ |
|---|
| 1530 | n/a | which = 'TA01' |
|---|
| 1531 | n/a | want = 'TEXT' |
|---|
| 1532 | n/a | class _Prop_Output_Directory_Location(aetools.NProperty): |
|---|
| 1533 | n/a | """Output Directory Location - Location of output directory """ |
|---|
| 1534 | n/a | which = 'TA16' |
|---|
| 1535 | n/a | want = 'RlPt' |
|---|
| 1536 | n/a | class _Prop_Output_Directory_Origin(aetools.NProperty): |
|---|
| 1537 | n/a | """Output Directory Origin - Origin of path to output directory. Usage of this property is deprecated. Use the \xd2Output Directory Location\xd3 property instead. """ |
|---|
| 1538 | n/a | which = 'TA12' |
|---|
| 1539 | n/a | want = 'PPrm' |
|---|
| 1540 | n/a | class _Prop_Output_Directory_Path(aetools.NProperty): |
|---|
| 1541 | n/a | """Output Directory Path - Path to output directory. Usage of this property is deprecated. Use the \xd2Output Directory Location\xd3 property instead. """ |
|---|
| 1542 | n/a | which = 'TA11' |
|---|
| 1543 | n/a | want = 'TEXT' |
|---|
| 1544 | n/a | class _Prop_Post_Linker(aetools.NProperty): |
|---|
| 1545 | n/a | """Post Linker - """ |
|---|
| 1546 | n/a | which = 'TA09' |
|---|
| 1547 | n/a | want = 'TEXT' |
|---|
| 1548 | n/a | class _Prop_Pre_Linker(aetools.NProperty): |
|---|
| 1549 | n/a | """Pre Linker - """ |
|---|
| 1550 | n/a | which = 'TA13' |
|---|
| 1551 | n/a | want = 'TEXT' |
|---|
| 1552 | n/a | class _Prop_Target_Name(aetools.NProperty): |
|---|
| 1553 | n/a | """Target Name - """ |
|---|
| 1554 | n/a | which = 'TA10' |
|---|
| 1555 | n/a | want = 'TEXT' |
|---|
| 1556 | n/a | class _Prop_Use_Relative_Paths(aetools.NProperty): |
|---|
| 1557 | n/a | """Use Relative Paths - Save project entries using relative paths """ |
|---|
| 1558 | n/a | which = 'TA15' |
|---|
| 1559 | n/a | want = 'bool' |
|---|
| 1560 | n/a | |
|---|
| 1561 | n/a | class Target_Source_Trees(aetools.ComponentItem): |
|---|
| 1562 | n/a | """Target Source Trees - Target-specific user-defined source tree roots """ |
|---|
| 1563 | n/a | want = 'TSTs' |
|---|
| 1564 | n/a | |
|---|
| 1565 | n/a | class VCS_Setup(aetools.ComponentItem): |
|---|
| 1566 | n/a | """VCS Setup - The version control system preferences. """ |
|---|
| 1567 | n/a | want = 'VCSs' |
|---|
| 1568 | n/a | class _Prop_Always_Prompt(aetools.NProperty): |
|---|
| 1569 | n/a | """Always Prompt - Always show login dialog """ |
|---|
| 1570 | n/a | which = 'VC07' |
|---|
| 1571 | n/a | want = 'bool' |
|---|
| 1572 | n/a | class _Prop_Auto_Connect(aetools.NProperty): |
|---|
| 1573 | n/a | """Auto Connect - Automatically connect to database when starting. """ |
|---|
| 1574 | n/a | which = 'VC05' |
|---|
| 1575 | n/a | want = 'bool' |
|---|
| 1576 | n/a | class _Prop_Connection_Method(aetools.NProperty): |
|---|
| 1577 | n/a | """Connection Method - Name of Version Control System to use. """ |
|---|
| 1578 | n/a | which = 'VC02' |
|---|
| 1579 | n/a | want = 'TEXT' |
|---|
| 1580 | n/a | class _Prop_Database_Path(aetools.NProperty): |
|---|
| 1581 | n/a | """Database Path - Path to the VCS database. """ |
|---|
| 1582 | n/a | which = 'VC09' |
|---|
| 1583 | n/a | want = 'RlPt' |
|---|
| 1584 | n/a | class _Prop_Local_Path(aetools.NProperty): |
|---|
| 1585 | n/a | """Local Path - Path to the local root """ |
|---|
| 1586 | n/a | which = 'VC10' |
|---|
| 1587 | n/a | want = 'RlPt' |
|---|
| 1588 | n/a | class _Prop_Mount_Volume(aetools.NProperty): |
|---|
| 1589 | n/a | """Mount Volume - Attempt to mount the database volume if it isn't available. """ |
|---|
| 1590 | n/a | which = 'VC08' |
|---|
| 1591 | n/a | want = 'bool' |
|---|
| 1592 | n/a | class _Prop_Password(aetools.NProperty): |
|---|
| 1593 | n/a | """Password - The password for the VCS. """ |
|---|
| 1594 | n/a | which = 'VC04' |
|---|
| 1595 | n/a | want = 'TEXT' |
|---|
| 1596 | n/a | class _Prop_Store_Password(aetools.NProperty): |
|---|
| 1597 | n/a | """Store Password - Store the password. """ |
|---|
| 1598 | n/a | which = 'VC06' |
|---|
| 1599 | n/a | want = 'bool' |
|---|
| 1600 | n/a | class _Prop_Use_Global_Settings(aetools.NProperty): |
|---|
| 1601 | n/a | """Use Global Settings - Use the global VCS settings by default """ |
|---|
| 1602 | n/a | which = 'VC11' |
|---|
| 1603 | n/a | want = 'bool' |
|---|
| 1604 | n/a | class _Prop_Username(aetools.NProperty): |
|---|
| 1605 | n/a | """Username - The user name for the VCS. """ |
|---|
| 1606 | n/a | which = 'VC03' |
|---|
| 1607 | n/a | want = 'TEXT' |
|---|
| 1608 | n/a | class _Prop_VCS_Active(aetools.NProperty): |
|---|
| 1609 | n/a | """VCS Active - Use Version Control """ |
|---|
| 1610 | n/a | which = 'VC01' |
|---|
| 1611 | n/a | want = 'bool' |
|---|
| 1612 | n/a | |
|---|
| 1613 | n/a | class Font(aetools.ComponentItem): |
|---|
| 1614 | n/a | """Font - """ |
|---|
| 1615 | n/a | want = 'mFNT' |
|---|
| 1616 | n/a | class _Prop_Auto_Indent(aetools.NProperty): |
|---|
| 1617 | n/a | """Auto Indent - Indent new lines automatically. """ |
|---|
| 1618 | n/a | which = 'FN01' |
|---|
| 1619 | n/a | want = 'bool' |
|---|
| 1620 | n/a | class _Prop_Tab_Indents_Selection(aetools.NProperty): |
|---|
| 1621 | n/a | """Tab Indents Selection - Tab indents selection when multiple lines are selected """ |
|---|
| 1622 | n/a | which = 'FN03' |
|---|
| 1623 | n/a | want = 'bool' |
|---|
| 1624 | n/a | class _Prop_Tab_Inserts_Spaces(aetools.NProperty): |
|---|
| 1625 | n/a | """Tab Inserts Spaces - Insert spaces instead of tab character """ |
|---|
| 1626 | n/a | which = 'FN04' |
|---|
| 1627 | n/a | want = 'bool' |
|---|
| 1628 | n/a | class _Prop_Tab_Size(aetools.NProperty): |
|---|
| 1629 | n/a | """Tab Size - """ |
|---|
| 1630 | n/a | which = 'FN02' |
|---|
| 1631 | n/a | want = 'shor' |
|---|
| 1632 | n/a | class _Prop_Text_Font(aetools.NProperty): |
|---|
| 1633 | n/a | """Text Font - The font used in editing windows. """ |
|---|
| 1634 | n/a | which = 'ptxf' |
|---|
| 1635 | n/a | want = 'TEXT' |
|---|
| 1636 | n/a | class _Prop_Text_Size(aetools.NProperty): |
|---|
| 1637 | n/a | """Text Size - The size of the text in an editing window. """ |
|---|
| 1638 | n/a | which = 'ptps' |
|---|
| 1639 | n/a | want = 'shor' |
|---|
| 1640 | n/a | Browser_Coloring._superclassnames = [] |
|---|
| 1641 | n/a | Browser_Coloring._privpropdict = { |
|---|
| 1642 | n/a | 'Browser_Keywords' : _Prop_Browser_Keywords, |
|---|
| 1643 | n/a | 'Classes_Color' : _Prop_Classes_Color, |
|---|
| 1644 | n/a | 'Constants_Color' : _Prop_Constants_Color, |
|---|
| 1645 | n/a | 'Enums_Color' : _Prop_Enums_Color, |
|---|
| 1646 | n/a | 'Functions_Color' : _Prop_Functions_Color, |
|---|
| 1647 | n/a | 'Globals_Color' : _Prop_Globals_Color, |
|---|
| 1648 | n/a | 'Macros_Color' : _Prop_Macros_Color, |
|---|
| 1649 | n/a | 'Template_Commands_in_Menu' : _Prop_Template_Commands_in_Menu, |
|---|
| 1650 | n/a | 'Templates_Color' : _Prop_Templates_Color, |
|---|
| 1651 | n/a | 'Typedefs_Color' : _Prop_Typedefs_Color, |
|---|
| 1652 | n/a | } |
|---|
| 1653 | n/a | Browser_Coloring._privelemdict = { |
|---|
| 1654 | n/a | } |
|---|
| 1655 | n/a | Build_Settings._superclassnames = [] |
|---|
| 1656 | n/a | Build_Settings._privpropdict = { |
|---|
| 1657 | n/a | 'Build_Before_Running' : _Prop_Build_Before_Running, |
|---|
| 1658 | n/a | 'Compiler_Thread_Stack_Size' : _Prop_Compiler_Thread_Stack_Size, |
|---|
| 1659 | n/a | 'Completion_Sound' : _Prop_Completion_Sound, |
|---|
| 1660 | n/a | 'Failure_Sound' : _Prop_Failure_Sound, |
|---|
| 1661 | n/a | 'Include_Cache_Size' : _Prop_Include_Cache_Size, |
|---|
| 1662 | n/a | 'Save_Before_Building' : _Prop_Save_Before_Building, |
|---|
| 1663 | n/a | 'Success_Sound' : _Prop_Success_Sound, |
|---|
| 1664 | n/a | } |
|---|
| 1665 | n/a | Build_Settings._privelemdict = { |
|---|
| 1666 | n/a | } |
|---|
| 1667 | n/a | base_class._superclassnames = [] |
|---|
| 1668 | n/a | base_class._privpropdict = { |
|---|
| 1669 | n/a | 'access' : _Prop_access, |
|---|
| 1670 | n/a | 'class_' : _Prop_class_, |
|---|
| 1671 | n/a | 'virtual' : _Prop_virtual, |
|---|
| 1672 | n/a | } |
|---|
| 1673 | n/a | base_class._privelemdict = { |
|---|
| 1674 | n/a | } |
|---|
| 1675 | n/a | Custom_Keywords._superclassnames = [] |
|---|
| 1676 | n/a | Custom_Keywords._privpropdict = { |
|---|
| 1677 | n/a | 'Custom_Color_1' : _Prop_Custom_Color_1, |
|---|
| 1678 | n/a | 'Custom_Color_2' : _Prop_Custom_Color_2, |
|---|
| 1679 | n/a | 'Custom_Color_3' : _Prop_Custom_Color_3, |
|---|
| 1680 | n/a | 'Custom_Color_4' : _Prop_Custom_Color_4, |
|---|
| 1681 | n/a | } |
|---|
| 1682 | n/a | Custom_Keywords._privelemdict = { |
|---|
| 1683 | n/a | } |
|---|
| 1684 | n/a | browser_catalog._superclassnames = [] |
|---|
| 1685 | n/a | browser_catalog._privpropdict = { |
|---|
| 1686 | n/a | } |
|---|
| 1687 | n/a | browser_catalog._privelemdict = { |
|---|
| 1688 | n/a | 'class_' : class_, |
|---|
| 1689 | n/a | } |
|---|
| 1690 | n/a | class_._superclassnames = [] |
|---|
| 1691 | n/a | class_._privpropdict = { |
|---|
| 1692 | n/a | 'all_subclasses' : _Prop_all_subclasses, |
|---|
| 1693 | n/a | 'declaration_end_offset' : _Prop_declaration_end_offset, |
|---|
| 1694 | n/a | 'declaration_file' : _Prop_declaration_file, |
|---|
| 1695 | n/a | 'declaration_start_offset' : _Prop_declaration_start_offset, |
|---|
| 1696 | n/a | 'language' : _Prop_language, |
|---|
| 1697 | n/a | 'name' : _Prop_name, |
|---|
| 1698 | n/a | 'subclasses' : _Prop_subclasses, |
|---|
| 1699 | n/a | } |
|---|
| 1700 | n/a | class_._privelemdict = { |
|---|
| 1701 | n/a | 'base_class' : base_class, |
|---|
| 1702 | n/a | 'data_member' : data_member, |
|---|
| 1703 | n/a | 'member_function' : member_function, |
|---|
| 1704 | n/a | } |
|---|
| 1705 | n/a | Debugger_Display._superclassnames = [] |
|---|
| 1706 | n/a | Debugger_Display._privpropdict = { |
|---|
| 1707 | n/a | 'Default_Array_Size' : _Prop_Default_Array_Size, |
|---|
| 1708 | n/a | 'Show_As_Decimal' : _Prop_Show_As_Decimal, |
|---|
| 1709 | n/a | 'Show_Locals' : _Prop_Show_Locals, |
|---|
| 1710 | n/a | 'Show_Variable_Types' : _Prop_Show_Variable_Types, |
|---|
| 1711 | n/a | 'Sort_By_Method' : _Prop_Sort_By_Method, |
|---|
| 1712 | n/a | 'Threads_in_Window' : _Prop_Threads_in_Window, |
|---|
| 1713 | n/a | 'Use_RTTI' : _Prop_Use_RTTI, |
|---|
| 1714 | n/a | 'Variable_Changed_Hilite' : _Prop_Variable_Changed_Hilite, |
|---|
| 1715 | n/a | 'Variable_Hints' : _Prop_Variable_Hints, |
|---|
| 1716 | n/a | 'Watchpoint_Hilite' : _Prop_Watchpoint_Hilite, |
|---|
| 1717 | n/a | } |
|---|
| 1718 | n/a | Debugger_Display._privelemdict = { |
|---|
| 1719 | n/a | } |
|---|
| 1720 | n/a | Debugger_Global._superclassnames = [] |
|---|
| 1721 | n/a | Debugger_Global._privpropdict = { |
|---|
| 1722 | n/a | 'Auto_Target_Libraries' : _Prop_Auto_Target_Libraries, |
|---|
| 1723 | n/a | 'Cache_Edited_Files' : _Prop_Cache_Edited_Files, |
|---|
| 1724 | n/a | 'Confirm_Kill' : _Prop_Confirm_Kill, |
|---|
| 1725 | n/a | 'Dont_Step_in_Runtime' : _Prop_Dont_Step_in_Runtime, |
|---|
| 1726 | n/a | 'File_Cache_Duration' : _Prop_File_Cache_Duration, |
|---|
| 1727 | n/a | 'Ignore_Mod_Dates' : _Prop_Ignore_Mod_Dates, |
|---|
| 1728 | n/a | 'Launch_Apps_on_Open' : _Prop_Launch_Apps_on_Open, |
|---|
| 1729 | n/a | 'Open_All_Classes' : _Prop_Open_All_Classes, |
|---|
| 1730 | n/a | 'Select_Stack_Crawl' : _Prop_Select_Stack_Crawl, |
|---|
| 1731 | n/a | 'Stop_at_Main' : _Prop_Stop_at_Main, |
|---|
| 1732 | n/a | } |
|---|
| 1733 | n/a | Debugger_Global._privelemdict = { |
|---|
| 1734 | n/a | } |
|---|
| 1735 | n/a | Debugger_Target._superclassnames = [] |
|---|
| 1736 | n/a | Debugger_Target._privpropdict = { |
|---|
| 1737 | n/a | 'Auto_Target_Libraries' : _Prop_Auto_Target_Libraries, |
|---|
| 1738 | n/a | 'Cache_symbolics' : _Prop_Cache_symbolics, |
|---|
| 1739 | n/a | 'Data_Update_Interval' : _Prop_Data_Update_Interval, |
|---|
| 1740 | n/a | 'Log_System_Messages' : _Prop_Log_System_Messages, |
|---|
| 1741 | n/a | 'Relocated_Executable_Path' : _Prop_Relocated_Executable_Path, |
|---|
| 1742 | n/a | 'Stop_at_temp_breakpoint' : _Prop_Stop_at_temp_breakpoint, |
|---|
| 1743 | n/a | 'Temp_Breakpoint_Type' : _Prop_Temp_Breakpoint_Type, |
|---|
| 1744 | n/a | 'Temp_breakpoint_names' : _Prop_Temp_breakpoint_names, |
|---|
| 1745 | n/a | 'Update_Data_While_Running' : _Prop_Update_Data_While_Running, |
|---|
| 1746 | n/a | } |
|---|
| 1747 | n/a | Debugger_Target._privelemdict = { |
|---|
| 1748 | n/a | } |
|---|
| 1749 | n/a | Debugger_Windowing._superclassnames = [] |
|---|
| 1750 | n/a | Debugger_Windowing._privpropdict = { |
|---|
| 1751 | n/a | 'Debugging_Start_Action' : _Prop_Debugging_Start_Action, |
|---|
| 1752 | n/a | 'Do_Nothing_To_Projects' : _Prop_Do_Nothing_To_Projects, |
|---|
| 1753 | n/a | } |
|---|
| 1754 | n/a | Debugger_Windowing._privelemdict = { |
|---|
| 1755 | n/a | } |
|---|
| 1756 | n/a | data_member._superclassnames = [] |
|---|
| 1757 | n/a | data_member._privpropdict = { |
|---|
| 1758 | n/a | 'access' : _Prop_access, |
|---|
| 1759 | n/a | 'declaration_end_offset' : _Prop_declaration_end_offset, |
|---|
| 1760 | n/a | 'declaration_start_offset' : _Prop_declaration_start_offset, |
|---|
| 1761 | n/a | 'name' : _Prop_name, |
|---|
| 1762 | n/a | 'static' : _Prop_static, |
|---|
| 1763 | n/a | } |
|---|
| 1764 | n/a | data_member._privelemdict = { |
|---|
| 1765 | n/a | } |
|---|
| 1766 | n/a | Editor._superclassnames = [] |
|---|
| 1767 | n/a | Editor._privpropdict = { |
|---|
| 1768 | n/a | 'Background_Color' : _Prop_Background_Color, |
|---|
| 1769 | n/a | 'Balance' : _Prop_Balance, |
|---|
| 1770 | n/a | 'Context_Popup_Delay' : _Prop_Context_Popup_Delay, |
|---|
| 1771 | n/a | 'Default_Text_File_Format' : _Prop_Default_Text_File_Format, |
|---|
| 1772 | n/a | 'Dynamic_Scroll' : _Prop_Dynamic_Scroll, |
|---|
| 1773 | n/a | 'Flash_Delay' : _Prop_Flash_Delay, |
|---|
| 1774 | n/a | 'Left_Margin_Line_Select' : _Prop_Left_Margin_Line_Select, |
|---|
| 1775 | n/a | 'Main_Text_Color' : _Prop_Main_Text_Color, |
|---|
| 1776 | n/a | 'Relaxed_C_Popup_Parsing' : _Prop_Relaxed_C_Popup_Parsing, |
|---|
| 1777 | n/a | 'Remember_Font' : _Prop_Remember_Font, |
|---|
| 1778 | n/a | 'Remember_Selection' : _Prop_Remember_Selection, |
|---|
| 1779 | n/a | 'Remember_Window' : _Prop_Remember_Window, |
|---|
| 1780 | n/a | 'Sort_Function_Popup' : _Prop_Sort_Function_Popup, |
|---|
| 1781 | n/a | 'Use_Drag__26__Drop_Editing' : _Prop_Use_Drag__26__Drop_Editing, |
|---|
| 1782 | n/a | 'Use_Multiple_Undo' : _Prop_Use_Multiple_Undo, |
|---|
| 1783 | n/a | } |
|---|
| 1784 | n/a | Editor._privelemdict = { |
|---|
| 1785 | n/a | } |
|---|
| 1786 | n/a | Environment_Variable._superclassnames = [] |
|---|
| 1787 | n/a | Environment_Variable._privpropdict = { |
|---|
| 1788 | n/a | 'name' : _Prop_name, |
|---|
| 1789 | n/a | 'value' : _Prop_value, |
|---|
| 1790 | n/a | } |
|---|
| 1791 | n/a | Environment_Variable._privelemdict = { |
|---|
| 1792 | n/a | } |
|---|
| 1793 | n/a | Error_Information._superclassnames = [] |
|---|
| 1794 | n/a | Error_Information._privpropdict = { |
|---|
| 1795 | n/a | 'disk_file' : _Prop_disk_file, |
|---|
| 1796 | n/a | 'lineNumber' : _Prop_lineNumber, |
|---|
| 1797 | n/a | 'message' : _Prop_message, |
|---|
| 1798 | n/a | 'messageKind' : _Prop_messageKind, |
|---|
| 1799 | n/a | } |
|---|
| 1800 | n/a | Error_Information._privelemdict = { |
|---|
| 1801 | n/a | } |
|---|
| 1802 | n/a | Function_Information._superclassnames = [] |
|---|
| 1803 | n/a | Function_Information._privpropdict = { |
|---|
| 1804 | n/a | 'disk_file' : _Prop_disk_file, |
|---|
| 1805 | n/a | 'lineNumber' : _Prop_lineNumber, |
|---|
| 1806 | n/a | } |
|---|
| 1807 | n/a | Function_Information._privelemdict = { |
|---|
| 1808 | n/a | } |
|---|
| 1809 | n/a | File_Mappings._superclassnames = [] |
|---|
| 1810 | n/a | File_Mappings._privpropdict = { |
|---|
| 1811 | n/a | 'Mappings' : _Prop_Mappings, |
|---|
| 1812 | n/a | } |
|---|
| 1813 | n/a | File_Mappings._privelemdict = { |
|---|
| 1814 | n/a | } |
|---|
| 1815 | n/a | File_Mapping._superclassnames = [] |
|---|
| 1816 | n/a | File_Mapping._privpropdict = { |
|---|
| 1817 | n/a | 'Compiler' : _Prop_Compiler, |
|---|
| 1818 | n/a | 'Extension' : _Prop_Extension, |
|---|
| 1819 | n/a | 'File_Type' : _Prop_File_Type, |
|---|
| 1820 | n/a | 'Ignored_by_Make' : _Prop_Ignored_by_Make, |
|---|
| 1821 | n/a | 'Launchable' : _Prop_Launchable, |
|---|
| 1822 | n/a | 'Precompiled' : _Prop_Precompiled, |
|---|
| 1823 | n/a | 'Resource_File' : _Prop_Resource_File, |
|---|
| 1824 | n/a | } |
|---|
| 1825 | n/a | File_Mapping._privelemdict = { |
|---|
| 1826 | n/a | } |
|---|
| 1827 | n/a | Global_Source_Trees._superclassnames = [] |
|---|
| 1828 | n/a | Global_Source_Trees._privpropdict = { |
|---|
| 1829 | n/a | 'Source_Trees' : _Prop_Source_Trees, |
|---|
| 1830 | n/a | } |
|---|
| 1831 | n/a | Global_Source_Trees._privelemdict = { |
|---|
| 1832 | n/a | } |
|---|
| 1833 | n/a | Extras._superclassnames = [] |
|---|
| 1834 | n/a | Extras._privpropdict = { |
|---|
| 1835 | n/a | 'Automatic_Toolbar_Help' : _Prop_Automatic_Toolbar_Help, |
|---|
| 1836 | n/a | 'External_Reference' : _Prop_External_Reference, |
|---|
| 1837 | n/a | 'Full_Screen_Zoom' : _Prop_Full_Screen_Zoom, |
|---|
| 1838 | n/a | 'Recent_Editor_Count' : _Prop_Recent_Editor_Count, |
|---|
| 1839 | n/a | 'Recent_Project_Count' : _Prop_Recent_Project_Count, |
|---|
| 1840 | n/a | 'Use_Editor_Extensions' : _Prop_Use_Editor_Extensions, |
|---|
| 1841 | n/a | 'Use_External_Editor' : _Prop_Use_External_Editor, |
|---|
| 1842 | n/a | 'Use_Script_Menu' : _Prop_Use_Script_Menu, |
|---|
| 1843 | n/a | 'Use_ToolServer_Menu' : _Prop_Use_ToolServer_Menu, |
|---|
| 1844 | n/a | } |
|---|
| 1845 | n/a | Extras._privelemdict = { |
|---|
| 1846 | n/a | } |
|---|
| 1847 | n/a | Build_Extras._superclassnames = [] |
|---|
| 1848 | n/a | Build_Extras._privpropdict = { |
|---|
| 1849 | n/a | 'Browser_Active' : _Prop_Browser_Active, |
|---|
| 1850 | n/a | 'Cache_Subproject_Data' : _Prop_Cache_Subproject_Data, |
|---|
| 1851 | n/a | 'Dump_Browser_Info' : _Prop_Dump_Browser_Info, |
|---|
| 1852 | n/a | 'Modification_Date_Caching' : _Prop_Modification_Date_Caching, |
|---|
| 1853 | n/a | } |
|---|
| 1854 | n/a | Build_Extras._privelemdict = { |
|---|
| 1855 | n/a | } |
|---|
| 1856 | n/a | member_function._superclassnames = [] |
|---|
| 1857 | n/a | member_function._privpropdict = { |
|---|
| 1858 | n/a | 'access' : _Prop_access, |
|---|
| 1859 | n/a | 'declaration_end_offset' : _Prop_declaration_end_offset, |
|---|
| 1860 | n/a | 'declaration_file' : _Prop_declaration_file, |
|---|
| 1861 | n/a | 'declaration_start_offset' : _Prop_declaration_start_offset, |
|---|
| 1862 | n/a | 'implementation_end_offset' : _Prop_implementation_end_offset, |
|---|
| 1863 | n/a | 'implementation_file' : _Prop_implementation_file, |
|---|
| 1864 | n/a | 'implementation_start_offset' : _Prop_implementation_start_offset, |
|---|
| 1865 | n/a | 'name' : _Prop_name, |
|---|
| 1866 | n/a | 'static' : _Prop_static, |
|---|
| 1867 | n/a | 'virtual' : _Prop_virtual, |
|---|
| 1868 | n/a | } |
|---|
| 1869 | n/a | member_function._privelemdict = { |
|---|
| 1870 | n/a | } |
|---|
| 1871 | n/a | Access_Paths._superclassnames = [] |
|---|
| 1872 | n/a | Access_Paths._privpropdict = { |
|---|
| 1873 | n/a | 'Always_Full_Search' : _Prop_Always_Full_Search, |
|---|
| 1874 | n/a | 'Convert_Paths' : _Prop_Convert_Paths, |
|---|
| 1875 | n/a | 'Require_Framework_Includes' : _Prop_Require_Framework_Includes, |
|---|
| 1876 | n/a | 'System_Paths' : _Prop_System_Paths, |
|---|
| 1877 | n/a | 'User_Paths' : _Prop_User_Paths, |
|---|
| 1878 | n/a | } |
|---|
| 1879 | n/a | Access_Paths._privelemdict = { |
|---|
| 1880 | n/a | } |
|---|
| 1881 | n/a | Path_Information._superclassnames = [] |
|---|
| 1882 | n/a | Path_Information._privpropdict = { |
|---|
| 1883 | n/a | 'format' : _Prop_format, |
|---|
| 1884 | n/a | 'framework' : _Prop_framework, |
|---|
| 1885 | n/a | 'host_flags' : _Prop_host_flags, |
|---|
| 1886 | n/a | 'name' : _Prop_name, |
|---|
| 1887 | n/a | 'origin' : _Prop_origin, |
|---|
| 1888 | n/a | 'recursive' : _Prop_recursive, |
|---|
| 1889 | n/a | 'root' : _Prop_root, |
|---|
| 1890 | n/a | } |
|---|
| 1891 | n/a | Path_Information._privelemdict = { |
|---|
| 1892 | n/a | } |
|---|
| 1893 | n/a | Plugin_Settings._superclassnames = [] |
|---|
| 1894 | n/a | Plugin_Settings._privpropdict = { |
|---|
| 1895 | n/a | 'Disable_Third_Party_COM_Plugins' : _Prop_Disable_Third_Party_COM_Plugins, |
|---|
| 1896 | n/a | 'Plugin_Diagnostics_Level' : _Prop_Plugin_Diagnostics_Level, |
|---|
| 1897 | n/a | } |
|---|
| 1898 | n/a | Plugin_Settings._privelemdict = { |
|---|
| 1899 | n/a | } |
|---|
| 1900 | n/a | Runtime_Settings._superclassnames = [] |
|---|
| 1901 | n/a | Runtime_Settings._privpropdict = { |
|---|
| 1902 | n/a | 'Command_Line_Arguments' : _Prop_Command_Line_Arguments, |
|---|
| 1903 | n/a | 'Environment_Variables' : _Prop_Environment_Variables, |
|---|
| 1904 | n/a | 'Host_Application' : _Prop_Host_Application, |
|---|
| 1905 | n/a | 'Working_Directory' : _Prop_Working_Directory, |
|---|
| 1906 | n/a | } |
|---|
| 1907 | n/a | Runtime_Settings._privelemdict = { |
|---|
| 1908 | n/a | } |
|---|
| 1909 | n/a | Relative_Path._superclassnames = [] |
|---|
| 1910 | n/a | Relative_Path._privpropdict = { |
|---|
| 1911 | n/a | 'format' : _Prop_format, |
|---|
| 1912 | n/a | 'name' : _Prop_name, |
|---|
| 1913 | n/a | 'origin' : _Prop_origin, |
|---|
| 1914 | n/a | 'root' : _Prop_root, |
|---|
| 1915 | n/a | } |
|---|
| 1916 | n/a | Relative_Path._privelemdict = { |
|---|
| 1917 | n/a | } |
|---|
| 1918 | n/a | Shielded_Folder._superclassnames = [] |
|---|
| 1919 | n/a | Shielded_Folder._privpropdict = { |
|---|
| 1920 | n/a | 'Expression_To_Match' : _Prop_Expression_To_Match, |
|---|
| 1921 | n/a | 'Skip_Find_And_Compare_Operations' : _Prop_Skip_Find_And_Compare_Operations, |
|---|
| 1922 | n/a | 'Skip_Project_Operations' : _Prop_Skip_Project_Operations, |
|---|
| 1923 | n/a | } |
|---|
| 1924 | n/a | Shielded_Folder._privelemdict = { |
|---|
| 1925 | n/a | } |
|---|
| 1926 | n/a | Shielded_Folders._superclassnames = [] |
|---|
| 1927 | n/a | Shielded_Folders._privpropdict = { |
|---|
| 1928 | n/a | 'Shielded_Items' : _Prop_Shielded_Items, |
|---|
| 1929 | n/a | } |
|---|
| 1930 | n/a | Shielded_Folders._privelemdict = { |
|---|
| 1931 | n/a | } |
|---|
| 1932 | n/a | Syntax_Coloring._superclassnames = [] |
|---|
| 1933 | n/a | Syntax_Coloring._privpropdict = { |
|---|
| 1934 | n/a | 'Comment_Color' : _Prop_Comment_Color, |
|---|
| 1935 | n/a | 'Custom_Color_1' : _Prop_Custom_Color_1, |
|---|
| 1936 | n/a | 'Custom_Color_2' : _Prop_Custom_Color_2, |
|---|
| 1937 | n/a | 'Custom_Color_3' : _Prop_Custom_Color_3, |
|---|
| 1938 | n/a | 'Custom_Color_4' : _Prop_Custom_Color_4, |
|---|
| 1939 | n/a | 'Keyword_Color' : _Prop_Keyword_Color, |
|---|
| 1940 | n/a | 'String_Color' : _Prop_String_Color, |
|---|
| 1941 | n/a | 'Syntax_Coloring' : _Prop_Syntax_Coloring, |
|---|
| 1942 | n/a | } |
|---|
| 1943 | n/a | Syntax_Coloring._privelemdict = { |
|---|
| 1944 | n/a | } |
|---|
| 1945 | n/a | Segment._superclassnames = [] |
|---|
| 1946 | n/a | Segment._privpropdict = { |
|---|
| 1947 | n/a | 'filecount' : _Prop_filecount, |
|---|
| 1948 | n/a | 'name' : _Prop_name, |
|---|
| 1949 | n/a | 'seg_2d_locked' : _Prop_seg_2d_locked, |
|---|
| 1950 | n/a | 'seg_2d_preloaded' : _Prop_seg_2d_preloaded, |
|---|
| 1951 | n/a | 'seg_2d_protected' : _Prop_seg_2d_protected, |
|---|
| 1952 | n/a | 'seg_2d_purgeable' : _Prop_seg_2d_purgeable, |
|---|
| 1953 | n/a | 'seg_2d_system_heap' : _Prop_seg_2d_system_heap, |
|---|
| 1954 | n/a | } |
|---|
| 1955 | n/a | Segment._privelemdict = { |
|---|
| 1956 | n/a | } |
|---|
| 1957 | n/a | ProjectFile._superclassnames = [] |
|---|
| 1958 | n/a | ProjectFile._privpropdict = { |
|---|
| 1959 | n/a | 'codesize' : _Prop_codesize, |
|---|
| 1960 | n/a | 'datasize' : _Prop_datasize, |
|---|
| 1961 | n/a | 'disk_file' : _Prop_disk_file, |
|---|
| 1962 | n/a | 'filetype' : _Prop_filetype, |
|---|
| 1963 | n/a | 'includes' : _Prop_includes, |
|---|
| 1964 | n/a | 'initialize_before' : _Prop_initialize_before, |
|---|
| 1965 | n/a | 'name' : _Prop_name, |
|---|
| 1966 | n/a | 'symbols' : _Prop_symbols, |
|---|
| 1967 | n/a | 'up_to_date' : _Prop_up_to_date, |
|---|
| 1968 | n/a | 'weak_link' : _Prop_weak_link, |
|---|
| 1969 | n/a | } |
|---|
| 1970 | n/a | ProjectFile._privelemdict = { |
|---|
| 1971 | n/a | } |
|---|
| 1972 | n/a | Source_Tree._superclassnames = [] |
|---|
| 1973 | n/a | Source_Tree._privpropdict = { |
|---|
| 1974 | n/a | 'format' : _Prop_format, |
|---|
| 1975 | n/a | 'name' : _Prop_name, |
|---|
| 1976 | n/a | 'path' : _Prop_path, |
|---|
| 1977 | n/a | 'path_kind' : _Prop_path_kind, |
|---|
| 1978 | n/a | } |
|---|
| 1979 | n/a | Source_Tree._privelemdict = { |
|---|
| 1980 | n/a | } |
|---|
| 1981 | n/a | Target_Settings._superclassnames = [] |
|---|
| 1982 | n/a | Target_Settings._privpropdict = { |
|---|
| 1983 | n/a | 'Linker' : _Prop_Linker, |
|---|
| 1984 | n/a | 'Output_Directory_Location' : _Prop_Output_Directory_Location, |
|---|
| 1985 | n/a | 'Output_Directory_Origin' : _Prop_Output_Directory_Origin, |
|---|
| 1986 | n/a | 'Output_Directory_Path' : _Prop_Output_Directory_Path, |
|---|
| 1987 | n/a | 'Post_Linker' : _Prop_Post_Linker, |
|---|
| 1988 | n/a | 'Pre_Linker' : _Prop_Pre_Linker, |
|---|
| 1989 | n/a | 'Target_Name' : _Prop_Target_Name, |
|---|
| 1990 | n/a | 'Use_Relative_Paths' : _Prop_Use_Relative_Paths, |
|---|
| 1991 | n/a | } |
|---|
| 1992 | n/a | Target_Settings._privelemdict = { |
|---|
| 1993 | n/a | } |
|---|
| 1994 | n/a | Target_Source_Trees._superclassnames = [] |
|---|
| 1995 | n/a | Target_Source_Trees._privpropdict = { |
|---|
| 1996 | n/a | 'Source_Trees' : _Prop_Source_Trees, |
|---|
| 1997 | n/a | } |
|---|
| 1998 | n/a | Target_Source_Trees._privelemdict = { |
|---|
| 1999 | n/a | } |
|---|
| 2000 | n/a | VCS_Setup._superclassnames = [] |
|---|
| 2001 | n/a | VCS_Setup._privpropdict = { |
|---|
| 2002 | n/a | 'Always_Prompt' : _Prop_Always_Prompt, |
|---|
| 2003 | n/a | 'Auto_Connect' : _Prop_Auto_Connect, |
|---|
| 2004 | n/a | 'Connection_Method' : _Prop_Connection_Method, |
|---|
| 2005 | n/a | 'Database_Path' : _Prop_Database_Path, |
|---|
| 2006 | n/a | 'Local_Path' : _Prop_Local_Path, |
|---|
| 2007 | n/a | 'Mount_Volume' : _Prop_Mount_Volume, |
|---|
| 2008 | n/a | 'Password' : _Prop_Password, |
|---|
| 2009 | n/a | 'Store_Password' : _Prop_Store_Password, |
|---|
| 2010 | n/a | 'Use_Global_Settings' : _Prop_Use_Global_Settings, |
|---|
| 2011 | n/a | 'Username' : _Prop_Username, |
|---|
| 2012 | n/a | 'VCS_Active' : _Prop_VCS_Active, |
|---|
| 2013 | n/a | } |
|---|
| 2014 | n/a | VCS_Setup._privelemdict = { |
|---|
| 2015 | n/a | } |
|---|
| 2016 | n/a | Font._superclassnames = [] |
|---|
| 2017 | n/a | Font._privpropdict = { |
|---|
| 2018 | n/a | 'Auto_Indent' : _Prop_Auto_Indent, |
|---|
| 2019 | n/a | 'Tab_Indents_Selection' : _Prop_Tab_Indents_Selection, |
|---|
| 2020 | n/a | 'Tab_Inserts_Spaces' : _Prop_Tab_Inserts_Spaces, |
|---|
| 2021 | n/a | 'Tab_Size' : _Prop_Tab_Size, |
|---|
| 2022 | n/a | 'Text_Font' : _Prop_Text_Font, |
|---|
| 2023 | n/a | 'Text_Size' : _Prop_Text_Size, |
|---|
| 2024 | n/a | } |
|---|
| 2025 | n/a | Font._privelemdict = { |
|---|
| 2026 | n/a | } |
|---|
| 2027 | n/a | _Enum_Acce = { |
|---|
| 2028 | n/a | 'public' : 'Publ', # |
|---|
| 2029 | n/a | 'protected' : 'Prot', # |
|---|
| 2030 | n/a | 'private' : 'Priv', # |
|---|
| 2031 | n/a | } |
|---|
| 2032 | n/a | |
|---|
| 2033 | n/a | _Enum_BXbr = { |
|---|
| 2034 | n/a | 'Always_Build' : 'BXb1', # Always build the target before running. |
|---|
| 2035 | n/a | 'Ask_Build' : 'BXb2', # Ask before building the target when running. |
|---|
| 2036 | n/a | 'Never_Build' : 'BXb3', # Never before building the target before running. |
|---|
| 2037 | n/a | } |
|---|
| 2038 | n/a | |
|---|
| 2039 | n/a | _Enum_DbSA = { |
|---|
| 2040 | n/a | 'No_Action' : 'DSA1', # Don\xd5t do anything to non-debug windows |
|---|
| 2041 | n/a | 'Hide_Windows' : 'DSA2', # Hide non-debugging windows |
|---|
| 2042 | n/a | 'Collapse_Windows' : 'DSA3', # Collapse non-debugging windows |
|---|
| 2043 | n/a | 'Close_Windows' : 'DSA4', # Close non-debugging windows |
|---|
| 2044 | n/a | } |
|---|
| 2045 | n/a | |
|---|
| 2046 | n/a | _Enum_DgBL = { |
|---|
| 2047 | n/a | 'Always' : 'DgB0', # Always build before debugging. |
|---|
| 2048 | n/a | 'Never' : 'DgB1', # Never build before debugging. |
|---|
| 2049 | n/a | 'Ask' : 'DgB2', # Ask about building before debugging. |
|---|
| 2050 | n/a | } |
|---|
| 2051 | n/a | |
|---|
| 2052 | n/a | _Enum_ErrT = { |
|---|
| 2053 | n/a | 'information' : 'ErIn', # |
|---|
| 2054 | n/a | 'compiler_warning' : 'ErCW', # |
|---|
| 2055 | n/a | 'compiler_error' : 'ErCE', # |
|---|
| 2056 | n/a | 'definition' : 'ErDf', # |
|---|
| 2057 | n/a | 'linker_warning' : 'ErLW', # |
|---|
| 2058 | n/a | 'linker_error' : 'ErLE', # |
|---|
| 2059 | n/a | 'find_result' : 'ErFn', # |
|---|
| 2060 | n/a | 'generic_error' : 'ErGn', # |
|---|
| 2061 | n/a | } |
|---|
| 2062 | n/a | |
|---|
| 2063 | n/a | _Enum_Inte = { |
|---|
| 2064 | n/a | 'never_interact' : 'eNvr', # Never allow user interactions |
|---|
| 2065 | n/a | 'interact_with_self' : 'eInS', # Allow user interaction only when an AppleEvent is sent from within CodeWarrior |
|---|
| 2066 | n/a | 'interact_with_local' : 'eInL', # Allow user interaction when AppleEvents are sent from applications on the same machine (default) |
|---|
| 2067 | n/a | 'interact_with_all' : 'eInA', # Allow user interaction from both local and remote AppleEvents |
|---|
| 2068 | n/a | } |
|---|
| 2069 | n/a | |
|---|
| 2070 | n/a | _Enum_Lang = { |
|---|
| 2071 | n/a | 'C' : 'LC ', # |
|---|
| 2072 | n/a | 'C_2b__2b_' : 'LC++', # |
|---|
| 2073 | n/a | 'Pascal' : 'LP ', # |
|---|
| 2074 | n/a | 'Object_Pascal' : 'LP++', # |
|---|
| 2075 | n/a | 'Java' : 'LJav', # |
|---|
| 2076 | n/a | 'Assembler' : 'LAsm', # |
|---|
| 2077 | n/a | 'Unknown' : 'L? ', # |
|---|
| 2078 | n/a | } |
|---|
| 2079 | n/a | |
|---|
| 2080 | n/a | _Enum_PPrm = { |
|---|
| 2081 | n/a | 'absolute' : 'Abso', # An absolute path name, including volume name. |
|---|
| 2082 | n/a | 'project_relative' : 'PRel', # A path relative to the current project\xd5s folder. |
|---|
| 2083 | n/a | 'shell_relative' : 'SRel', # A path relative to the CodeWarrior\xaa folder. |
|---|
| 2084 | n/a | 'system_relative' : 'YRel', # A path relative to the system folder |
|---|
| 2085 | n/a | 'root_relative' : 'RRel', # |
|---|
| 2086 | n/a | } |
|---|
| 2087 | n/a | |
|---|
| 2088 | n/a | _Enum_PXdg = { |
|---|
| 2089 | n/a | 'Diagnose_None' : 'PXd1', # No Plugin Diagnostics. |
|---|
| 2090 | n/a | 'Diagnose_Errors' : 'PXd2', # Plugin Diagnostics for errors only. |
|---|
| 2091 | n/a | 'Diagnose_All' : 'PXd3', # Plugin Diagnostics for everything. |
|---|
| 2092 | n/a | } |
|---|
| 2093 | n/a | |
|---|
| 2094 | n/a | _Enum_PthF = { |
|---|
| 2095 | n/a | 'Generic_Path' : 'PFGn', # |
|---|
| 2096 | n/a | 'MacOS_Path' : 'PFMc', # MacOS path using colon as separator |
|---|
| 2097 | n/a | 'Windows_Path' : 'PFWn', # Windows path using backslash as separator |
|---|
| 2098 | n/a | 'Unix_Path' : 'PFUx', # Unix path using slash as separator |
|---|
| 2099 | n/a | } |
|---|
| 2100 | n/a | |
|---|
| 2101 | n/a | _Enum_RefP = { |
|---|
| 2102 | n/a | 'Think_Reference' : 'DanR', # |
|---|
| 2103 | n/a | 'QuickView' : 'ALTV', # |
|---|
| 2104 | n/a | } |
|---|
| 2105 | n/a | |
|---|
| 2106 | n/a | _Enum_STKd = { |
|---|
| 2107 | n/a | 'Absolute_Path' : 'STK0', # The \xd2path\xd3 property is an absolute path to the location of the source tree. |
|---|
| 2108 | n/a | 'Registry_Key' : 'STK1', # The \xd2path\xd3 property is the name of a registry key that contains the path to the root. |
|---|
| 2109 | n/a | 'Environment_Variable' : 'STK2', # The \xd2path\xd3 property is the name of an environment variable that contains the path to the root. |
|---|
| 2110 | n/a | } |
|---|
| 2111 | n/a | |
|---|
| 2112 | n/a | _Enum_SrcT = { |
|---|
| 2113 | n/a | 'source' : 'FTxt', # A source file (.c, .cp, .p, etc). |
|---|
| 2114 | n/a | 'unknown' : 'FUnk', # An unknown file type. |
|---|
| 2115 | n/a | } |
|---|
| 2116 | n/a | |
|---|
| 2117 | n/a | _Enum_TmpB = { |
|---|
| 2118 | n/a | 'User_Specified' : 'Usrs', # Use user specified symbols when setting temporary breakpoints on program launch. |
|---|
| 2119 | n/a | 'Default' : 'Dflt', # Use system default symbols when setting temporary breakpoints on program launch. |
|---|
| 2120 | n/a | } |
|---|
| 2121 | n/a | |
|---|
| 2122 | n/a | _Enum_TxtF = { |
|---|
| 2123 | n/a | 'MacOS' : 'TxF0', # MacOS text format |
|---|
| 2124 | n/a | 'DOS' : 'TxF1', # DOS text format |
|---|
| 2125 | n/a | 'Unix' : 'TxF2', # Unix text format |
|---|
| 2126 | n/a | } |
|---|
| 2127 | n/a | |
|---|
| 2128 | n/a | _Enum_savo = { |
|---|
| 2129 | n/a | 'yes' : 'yes ', # Save changes |
|---|
| 2130 | n/a | 'no' : 'no ', # Do not save changes |
|---|
| 2131 | n/a | 'ask' : 'ask ', # Ask the user whether to save |
|---|
| 2132 | n/a | } |
|---|
| 2133 | n/a | |
|---|
| 2134 | n/a | |
|---|
| 2135 | n/a | # |
|---|
| 2136 | n/a | # Indices of types declared in this module |
|---|
| 2137 | n/a | # |
|---|
| 2138 | n/a | _classdeclarations = { |
|---|
| 2139 | n/a | 'BRKW' : Browser_Coloring, |
|---|
| 2140 | n/a | 'BSTG' : Build_Settings, |
|---|
| 2141 | n/a | 'BsCl' : base_class, |
|---|
| 2142 | n/a | 'CUKW' : Custom_Keywords, |
|---|
| 2143 | n/a | 'Cata' : browser_catalog, |
|---|
| 2144 | n/a | 'Clas' : class_, |
|---|
| 2145 | n/a | 'DbDS' : Debugger_Display, |
|---|
| 2146 | n/a | 'DbGL' : Debugger_Global, |
|---|
| 2147 | n/a | 'DbTG' : Debugger_Target, |
|---|
| 2148 | n/a | 'DbWN' : Debugger_Windowing, |
|---|
| 2149 | n/a | 'DtMb' : data_member, |
|---|
| 2150 | n/a | 'EDTR' : Editor, |
|---|
| 2151 | n/a | 'EnvV' : Environment_Variable, |
|---|
| 2152 | n/a | 'ErrM' : Error_Information, |
|---|
| 2153 | n/a | 'FDef' : Function_Information, |
|---|
| 2154 | n/a | 'FLMP' : File_Mappings, |
|---|
| 2155 | n/a | 'FMap' : File_Mapping, |
|---|
| 2156 | n/a | 'GSTs' : Global_Source_Trees, |
|---|
| 2157 | n/a | 'GXTR' : Extras, |
|---|
| 2158 | n/a | 'LXTR' : Build_Extras, |
|---|
| 2159 | n/a | 'MbFn' : member_function, |
|---|
| 2160 | n/a | 'PATH' : Access_Paths, |
|---|
| 2161 | n/a | 'PInf' : Path_Information, |
|---|
| 2162 | n/a | 'PSTG' : Plugin_Settings, |
|---|
| 2163 | n/a | 'RSTG' : Runtime_Settings, |
|---|
| 2164 | n/a | 'RlPt' : Relative_Path, |
|---|
| 2165 | n/a | 'SFit' : Shielded_Folder, |
|---|
| 2166 | n/a | 'SHFL' : Shielded_Folders, |
|---|
| 2167 | n/a | 'SNTX' : Syntax_Coloring, |
|---|
| 2168 | n/a | 'Seg ' : Segment, |
|---|
| 2169 | n/a | 'SrcF' : ProjectFile, |
|---|
| 2170 | n/a | 'SrcT' : Source_Tree, |
|---|
| 2171 | n/a | 'TARG' : Target_Settings, |
|---|
| 2172 | n/a | 'TSTs' : Target_Source_Trees, |
|---|
| 2173 | n/a | 'VCSs' : VCS_Setup, |
|---|
| 2174 | n/a | 'mFNT' : Font, |
|---|
| 2175 | n/a | } |
|---|
| 2176 | n/a | |
|---|
| 2177 | n/a | _propdeclarations = { |
|---|
| 2178 | n/a | 'Acce' : _Prop_access, |
|---|
| 2179 | n/a | 'BW00' : _Prop_Browser_Keywords, |
|---|
| 2180 | n/a | 'BW01' : _Prop_Classes_Color, |
|---|
| 2181 | n/a | 'BW02' : _Prop_Constants_Color, |
|---|
| 2182 | n/a | 'BW03' : _Prop_Enums_Color, |
|---|
| 2183 | n/a | 'BW04' : _Prop_Functions_Color, |
|---|
| 2184 | n/a | 'BW05' : _Prop_Globals_Color, |
|---|
| 2185 | n/a | 'BW06' : _Prop_Macros_Color, |
|---|
| 2186 | n/a | 'BW07' : _Prop_Templates_Color, |
|---|
| 2187 | n/a | 'BW08' : _Prop_Typedefs_Color, |
|---|
| 2188 | n/a | 'BW10' : _Prop_Template_Commands_in_Menu, |
|---|
| 2189 | n/a | 'BX01' : _Prop_Completion_Sound, |
|---|
| 2190 | n/a | 'BX02' : _Prop_Success_Sound, |
|---|
| 2191 | n/a | 'BX03' : _Prop_Failure_Sound, |
|---|
| 2192 | n/a | 'BX04' : _Prop_Build_Before_Running, |
|---|
| 2193 | n/a | 'BX05' : _Prop_Include_Cache_Size, |
|---|
| 2194 | n/a | 'BX06' : _Prop_Compiler_Thread_Stack_Size, |
|---|
| 2195 | n/a | 'BX07' : _Prop_Save_Before_Building, |
|---|
| 2196 | n/a | 'Bfor' : _Prop_initialize_before, |
|---|
| 2197 | n/a | 'CSiz' : _Prop_codesize, |
|---|
| 2198 | n/a | 'Clas' : _Prop_class_, |
|---|
| 2199 | n/a | 'DSiz' : _Prop_datasize, |
|---|
| 2200 | n/a | 'Db01' : _Prop_Show_Variable_Types, |
|---|
| 2201 | n/a | 'Db02' : _Prop_Sort_By_Method, |
|---|
| 2202 | n/a | 'Db03' : _Prop_Use_RTTI, |
|---|
| 2203 | n/a | 'Db04' : _Prop_Threads_in_Window, |
|---|
| 2204 | n/a | 'Db05' : _Prop_Variable_Hints, |
|---|
| 2205 | n/a | 'Db06' : _Prop_Watchpoint_Hilite, |
|---|
| 2206 | n/a | 'Db07' : _Prop_Variable_Changed_Hilite, |
|---|
| 2207 | n/a | 'Db08' : _Prop_Default_Array_Size, |
|---|
| 2208 | n/a | 'Db09' : _Prop_Show_Locals, |
|---|
| 2209 | n/a | 'Db10' : _Prop_Show_As_Decimal, |
|---|
| 2210 | n/a | 'DcEn' : _Prop_declaration_end_offset, |
|---|
| 2211 | n/a | 'DcFl' : _Prop_declaration_file, |
|---|
| 2212 | n/a | 'DcSt' : _Prop_declaration_start_offset, |
|---|
| 2213 | n/a | 'DfEn' : _Prop_implementation_end_offset, |
|---|
| 2214 | n/a | 'DfFl' : _Prop_implementation_file, |
|---|
| 2215 | n/a | 'DfSt' : _Prop_implementation_start_offset, |
|---|
| 2216 | n/a | 'Dg01' : _Prop_Ignore_Mod_Dates, |
|---|
| 2217 | n/a | 'Dg02' : _Prop_Open_All_Classes, |
|---|
| 2218 | n/a | 'Dg03' : _Prop_Launch_Apps_on_Open, |
|---|
| 2219 | n/a | 'Dg04' : _Prop_Confirm_Kill, |
|---|
| 2220 | n/a | 'Dg05' : _Prop_Stop_at_Main, |
|---|
| 2221 | n/a | 'Dg06' : _Prop_Select_Stack_Crawl, |
|---|
| 2222 | n/a | 'Dg07' : _Prop_Dont_Step_in_Runtime, |
|---|
| 2223 | n/a | 'Dg11' : _Prop_Auto_Target_Libraries, |
|---|
| 2224 | n/a | 'Dg12' : _Prop_Cache_Edited_Files, |
|---|
| 2225 | n/a | 'Dg13' : _Prop_File_Cache_Duration, |
|---|
| 2226 | n/a | 'Dt02' : _Prop_Log_System_Messages, |
|---|
| 2227 | n/a | 'Dt08' : _Prop_Update_Data_While_Running, |
|---|
| 2228 | n/a | 'Dt09' : _Prop_Data_Update_Interval, |
|---|
| 2229 | n/a | 'Dt10' : _Prop_Relocated_Executable_Path, |
|---|
| 2230 | n/a | 'Dt13' : _Prop_Stop_at_temp_breakpoint, |
|---|
| 2231 | n/a | 'Dt14' : _Prop_Temp_breakpoint_names, |
|---|
| 2232 | n/a | 'Dt15' : _Prop_Cache_symbolics, |
|---|
| 2233 | n/a | 'Dt16' : _Prop_Temp_Breakpoint_Type, |
|---|
| 2234 | n/a | 'Dw01' : _Prop_Debugging_Start_Action, |
|---|
| 2235 | n/a | 'Dw02' : _Prop_Do_Nothing_To_Projects, |
|---|
| 2236 | n/a | 'ED01' : _Prop_Flash_Delay, |
|---|
| 2237 | n/a | 'ED02' : _Prop_Dynamic_Scroll, |
|---|
| 2238 | n/a | 'ED03' : _Prop_Balance, |
|---|
| 2239 | n/a | 'ED04' : _Prop_Use_Drag__26__Drop_Editing, |
|---|
| 2240 | n/a | 'ED06' : _Prop_Sort_Function_Popup, |
|---|
| 2241 | n/a | 'ED07' : _Prop_Use_Multiple_Undo, |
|---|
| 2242 | n/a | 'ED08' : _Prop_Remember_Font, |
|---|
| 2243 | n/a | 'ED09' : _Prop_Remember_Selection, |
|---|
| 2244 | n/a | 'ED10' : _Prop_Remember_Window, |
|---|
| 2245 | n/a | 'ED12' : _Prop_Main_Text_Color, |
|---|
| 2246 | n/a | 'ED13' : _Prop_Background_Color, |
|---|
| 2247 | n/a | 'ED14' : _Prop_Context_Popup_Delay, |
|---|
| 2248 | n/a | 'ED15' : _Prop_Relaxed_C_Popup_Parsing, |
|---|
| 2249 | n/a | 'ED16' : _Prop_Left_Margin_Line_Select, |
|---|
| 2250 | n/a | 'ED17' : _Prop_Default_Text_File_Format, |
|---|
| 2251 | n/a | 'EX04' : _Prop_Modification_Date_Caching, |
|---|
| 2252 | n/a | 'EX07' : _Prop_Full_Screen_Zoom, |
|---|
| 2253 | n/a | 'EX08' : _Prop_External_Reference, |
|---|
| 2254 | n/a | 'EX09' : _Prop_Browser_Active, |
|---|
| 2255 | n/a | 'EX10' : _Prop_Use_Editor_Extensions, |
|---|
| 2256 | n/a | 'EX11' : _Prop_Use_External_Editor, |
|---|
| 2257 | n/a | 'EX12' : _Prop_Use_Script_Menu, |
|---|
| 2258 | n/a | 'EX16' : _Prop_Recent_Editor_Count, |
|---|
| 2259 | n/a | 'EX17' : _Prop_Recent_Project_Count, |
|---|
| 2260 | n/a | 'EX18' : _Prop_Use_ToolServer_Menu, |
|---|
| 2261 | n/a | 'EX19' : _Prop_Automatic_Toolbar_Help, |
|---|
| 2262 | n/a | 'EX30' : _Prop_Dump_Browser_Info, |
|---|
| 2263 | n/a | 'EX31' : _Prop_Cache_Subproject_Data, |
|---|
| 2264 | n/a | 'ErrL' : _Prop_lineNumber, |
|---|
| 2265 | n/a | 'ErrS' : _Prop_message, |
|---|
| 2266 | n/a | 'ErrT' : _Prop_messageKind, |
|---|
| 2267 | n/a | 'FMps' : _Prop_Mappings, |
|---|
| 2268 | n/a | 'FN01' : _Prop_Auto_Indent, |
|---|
| 2269 | n/a | 'FN02' : _Prop_Tab_Size, |
|---|
| 2270 | n/a | 'FN03' : _Prop_Tab_Indents_Selection, |
|---|
| 2271 | n/a | 'FN04' : _Prop_Tab_Inserts_Spaces, |
|---|
| 2272 | n/a | 'Frmt' : _Prop_format, |
|---|
| 2273 | n/a | 'Frmw' : _Prop_framework, |
|---|
| 2274 | n/a | 'GH01' : _Prop_Syntax_Coloring, |
|---|
| 2275 | n/a | 'GH02' : _Prop_Comment_Color, |
|---|
| 2276 | n/a | 'GH03' : _Prop_Keyword_Color, |
|---|
| 2277 | n/a | 'GH04' : _Prop_String_Color, |
|---|
| 2278 | n/a | 'GH05' : _Prop_Custom_Color_1, |
|---|
| 2279 | n/a | 'GH06' : _Prop_Custom_Color_2, |
|---|
| 2280 | n/a | 'GH07' : _Prop_Custom_Color_3, |
|---|
| 2281 | n/a | 'GH08' : _Prop_Custom_Color_4, |
|---|
| 2282 | n/a | 'HstF' : _Prop_host_flags, |
|---|
| 2283 | n/a | 'IncF' : _Prop_includes, |
|---|
| 2284 | n/a | 'Kind' : _Prop_path_kind, |
|---|
| 2285 | n/a | 'Lang' : _Prop_language, |
|---|
| 2286 | n/a | 'NumF' : _Prop_filecount, |
|---|
| 2287 | n/a | 'Orig' : _Prop_origin, |
|---|
| 2288 | n/a | 'PA01' : _Prop_User_Paths, |
|---|
| 2289 | n/a | 'PA02' : _Prop_Always_Full_Search, |
|---|
| 2290 | n/a | 'PA03' : _Prop_System_Paths, |
|---|
| 2291 | n/a | 'PA04' : _Prop_Convert_Paths, |
|---|
| 2292 | n/a | 'PA05' : _Prop_Require_Framework_Includes, |
|---|
| 2293 | n/a | 'PLck' : _Prop_seg_2d_locked, |
|---|
| 2294 | n/a | 'PR04' : _Prop_File_Type, |
|---|
| 2295 | n/a | 'PX01' : _Prop_Plugin_Diagnostics_Level, |
|---|
| 2296 | n/a | 'PX02' : _Prop_Disable_Third_Party_COM_Plugins, |
|---|
| 2297 | n/a | 'Path' : _Prop_path, |
|---|
| 2298 | n/a | 'Prel' : _Prop_seg_2d_preloaded, |
|---|
| 2299 | n/a | 'Prot' : _Prop_seg_2d_protected, |
|---|
| 2300 | n/a | 'Purg' : _Prop_seg_2d_purgeable, |
|---|
| 2301 | n/a | 'RS01' : _Prop_Host_Application, |
|---|
| 2302 | n/a | 'RS02' : _Prop_Command_Line_Arguments, |
|---|
| 2303 | n/a | 'RS03' : _Prop_Working_Directory, |
|---|
| 2304 | n/a | 'RS04' : _Prop_Environment_Variables, |
|---|
| 2305 | n/a | 'Recu' : _Prop_recursive, |
|---|
| 2306 | n/a | 'Root' : _Prop_root, |
|---|
| 2307 | n/a | 'SF01' : _Prop_Expression_To_Match, |
|---|
| 2308 | n/a | 'SF02' : _Prop_Skip_Project_Operations, |
|---|
| 2309 | n/a | 'SF03' : _Prop_Skip_Find_And_Compare_Operations, |
|---|
| 2310 | n/a | 'SFis' : _Prop_Shielded_Items, |
|---|
| 2311 | n/a | 'ST01' : _Prop_Source_Trees, |
|---|
| 2312 | n/a | 'SrcT' : _Prop_filetype, |
|---|
| 2313 | n/a | 'Stat' : _Prop_static, |
|---|
| 2314 | n/a | 'SubA' : _Prop_all_subclasses, |
|---|
| 2315 | n/a | 'SubC' : _Prop_subclasses, |
|---|
| 2316 | n/a | 'SymG' : _Prop_symbols, |
|---|
| 2317 | n/a | 'SysH' : _Prop_seg_2d_system_heap, |
|---|
| 2318 | n/a | 'TA01' : _Prop_Linker, |
|---|
| 2319 | n/a | 'TA02' : _Prop_Extension, |
|---|
| 2320 | n/a | 'TA03' : _Prop_Precompiled, |
|---|
| 2321 | n/a | 'TA04' : _Prop_Resource_File, |
|---|
| 2322 | n/a | 'TA05' : _Prop_Launchable, |
|---|
| 2323 | n/a | 'TA06' : _Prop_Ignored_by_Make, |
|---|
| 2324 | n/a | 'TA07' : _Prop_Compiler, |
|---|
| 2325 | n/a | 'TA09' : _Prop_Post_Linker, |
|---|
| 2326 | n/a | 'TA10' : _Prop_Target_Name, |
|---|
| 2327 | n/a | 'TA11' : _Prop_Output_Directory_Path, |
|---|
| 2328 | n/a | 'TA12' : _Prop_Output_Directory_Origin, |
|---|
| 2329 | n/a | 'TA13' : _Prop_Pre_Linker, |
|---|
| 2330 | n/a | 'TA15' : _Prop_Use_Relative_Paths, |
|---|
| 2331 | n/a | 'TA16' : _Prop_Output_Directory_Location, |
|---|
| 2332 | n/a | 'UpTD' : _Prop_up_to_date, |
|---|
| 2333 | n/a | 'VC01' : _Prop_VCS_Active, |
|---|
| 2334 | n/a | 'VC02' : _Prop_Connection_Method, |
|---|
| 2335 | n/a | 'VC03' : _Prop_Username, |
|---|
| 2336 | n/a | 'VC04' : _Prop_Password, |
|---|
| 2337 | n/a | 'VC05' : _Prop_Auto_Connect, |
|---|
| 2338 | n/a | 'VC06' : _Prop_Store_Password, |
|---|
| 2339 | n/a | 'VC07' : _Prop_Always_Prompt, |
|---|
| 2340 | n/a | 'VC08' : _Prop_Mount_Volume, |
|---|
| 2341 | n/a | 'VC09' : _Prop_Database_Path, |
|---|
| 2342 | n/a | 'VC10' : _Prop_Local_Path, |
|---|
| 2343 | n/a | 'VC11' : _Prop_Use_Global_Settings, |
|---|
| 2344 | n/a | 'Valu' : _Prop_value, |
|---|
| 2345 | n/a | 'Virt' : _Prop_virtual, |
|---|
| 2346 | n/a | 'Weak' : _Prop_weak_link, |
|---|
| 2347 | n/a | 'file' : _Prop_disk_file, |
|---|
| 2348 | n/a | 'pnam' : _Prop_name, |
|---|
| 2349 | n/a | 'ptps' : _Prop_Text_Size, |
|---|
| 2350 | n/a | 'ptxf' : _Prop_Text_Font, |
|---|
| 2351 | n/a | } |
|---|
| 2352 | n/a | |
|---|
| 2353 | n/a | _compdeclarations = { |
|---|
| 2354 | n/a | } |
|---|
| 2355 | n/a | |
|---|
| 2356 | n/a | _enumdeclarations = { |
|---|
| 2357 | n/a | 'Acce' : _Enum_Acce, |
|---|
| 2358 | n/a | 'BXbr' : _Enum_BXbr, |
|---|
| 2359 | n/a | 'DbSA' : _Enum_DbSA, |
|---|
| 2360 | n/a | 'DgBL' : _Enum_DgBL, |
|---|
| 2361 | n/a | 'ErrT' : _Enum_ErrT, |
|---|
| 2362 | n/a | 'Inte' : _Enum_Inte, |
|---|
| 2363 | n/a | 'Lang' : _Enum_Lang, |
|---|
| 2364 | n/a | 'PPrm' : _Enum_PPrm, |
|---|
| 2365 | n/a | 'PXdg' : _Enum_PXdg, |
|---|
| 2366 | n/a | 'PthF' : _Enum_PthF, |
|---|
| 2367 | n/a | 'RefP' : _Enum_RefP, |
|---|
| 2368 | n/a | 'STKd' : _Enum_STKd, |
|---|
| 2369 | n/a | 'SrcT' : _Enum_SrcT, |
|---|
| 2370 | n/a | 'TmpB' : _Enum_TmpB, |
|---|
| 2371 | n/a | 'TxtF' : _Enum_TxtF, |
|---|
| 2372 | n/a | 'savo' : _Enum_savo, |
|---|
| 2373 | n/a | } |
|---|