PageRenderTime 29ms CodeModel.GetById 19ms RepoModel.GetById 1ms app.codeStats 0ms

/lib-python/2.7/plat-mac/lib-scriptpackages/CodeWarrior/Metrowerks_Shell_Suite.py

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