2
0

fpconst.pas 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573
  1. {
  2. $Id$
  3. This file is part of the Free Pascal Integrated Development Environment
  4. Copyright (c) 1998 by Berczi Gabor
  5. Constants used by the IDE
  6. See the file COPYING.FPC, included in this distribution,
  7. for details about the copyright.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  11. **********************************************************************}
  12. unit FPConst;
  13. interface
  14. uses Views,App,Commands,
  15. WViews;
  16. const
  17. VersionStr = '0.9';
  18. MaxRecentFileCount = 5;
  19. MaxToolCount = 16;
  20. ReservedWordMaxLen = 16;
  21. CompilerStatusUpdateDelay = 0.8; { in secs }
  22. ININame = 'fp.ini';
  23. SwitchesName = 'fp.cfg';
  24. DesktopName = 'fp.dsk';
  25. BrowserName = 'fp.brw';
  26. ToolCaptureName = '__tool__.out'; { all '$' signs replaces with '_'s }
  27. FilterCaptureName = '_filter_.out';
  28. FPOutFileName = 'fp___.out';
  29. FPErrFileName = 'fp___.err';
  30. GDBOutFileName = 'gdb___.out';
  31. GDBOutPutFileName = 'gdb___.txt';
  32. DesktopTempName = 'fp___.dsk';
  33. HelpFileExts = '*.tph;*.htm*';
  34. EnterSign = #17#196#217;
  35. { Strings/Messages }
  36. strLoadingHelp = 'Loading help files...';
  37. strBuildingHelpIndex = 'Building Help Index...';
  38. strLocatingTopic = 'Locating topic...';
  39. { Main menu submenu indexes }
  40. menuFile = 0;
  41. menuTools = 6;
  42. { MouseAction constants }
  43. acNone = 0;
  44. acTopicSearch = 1;
  45. acGotoCursor = 2;
  46. acBreakpoint = 3;
  47. acEvaluate = 4;
  48. acAddWatch = 5;
  49. acBrowseSymbol = 6;
  50. acFirstAction = acTopicSearch;
  51. acLastAction = acBrowseSymbol;
  52. { Startup Option constants }
  53. soReturnToLastDir = $00000001;
  54. { Desktop Flag constants - what to include in the desktop file }
  55. dfHistoryLists = $00000001;
  56. dfClipboardContent = $00000002;
  57. dfWatches = $00000004;
  58. dfBreakpoints = $00000008;
  59. dfOpenWindows = $00000010;
  60. dfSymbolInformation = $00000020;
  61. { Auto Save flag constants }
  62. asEditorFiles = $00000001; { Editor files }
  63. asEnvironment = $00000002; { .INI file }
  64. asDesktop = $00000004; { .DSK file }
  65. { Misc. Options flag constants }
  66. moAutoTrackSource = $00000001;
  67. moCloseOnGotoSource = $00000002;
  68. moChangeDirOnOpen = $00000004;
  69. { Desktop Location constants }
  70. dlCurrentDir = $00;
  71. dlConfigFileDir = $01;
  72. { Command constants }
  73. cmShowClipboard = 201;
  74. cmFindProcedure = 206;
  75. cmObjects = 207;
  76. cmModules = 208;
  77. cmGlobals = 209;
  78. cmRun = 210;
  79. cmParameters = 211;
  80. cmCompile = 212;
  81. cmMake = 213;
  82. cmBuild = 214;
  83. cmTarget = 215;
  84. cmPrimaryFile = 216;
  85. cmClearPrimary = 217;
  86. cmInformation = 218;
  87. cmWindowList = 219;
  88. cmHelpTopicSearch = 220;
  89. cmMsgGotoSource = 221;
  90. cmMsgTrackSource = 222;
  91. cmGotoCursor = 223;
  92. {cmToggleBreakpoint = 224; never disabled =>2403 }
  93. cmAddWatch = 225;
  94. cmTraceInto = 226;
  95. cmStepOver = 227;
  96. cmResetDebugger = 228;
  97. cmContToCursor = 229;
  98. cmOpenGDBWindow = 230;
  99. cmToolsMsgNext = 231;
  100. cmToolsMsgPrev = 232;
  101. cmGrep = 233;
  102. cmCompilerMessages = 234;
  103. cmSymbol = 235;
  104. cmStack = 236;
  105. cmBreakpointList = 237;
  106. cmWatches = 238;
  107. cmUntilReturn = 239;
  108. { WARNING these two are also defined in weditor.pas PM }
  109. { and why aren't these defines then removed? Gabor }
  110. cmCopyWin = 240;
  111. cmPasteWin = 241;
  112. cmRegisters = 242;
  113. cmNotImplemented = 1000;
  114. cmNewFromTemplate = 1001;
  115. cmSearchWindow = 1500;
  116. cmSourceWndClosing = 1601;
  117. cmCalculatorPaste = 1603;
  118. cmMsgClear = 1604;
  119. cmUpdateTools = 1605;
  120. { cmGrep = 160?;}
  121. cmAddItem = 1620;
  122. cmEditItem = 1621;
  123. cmDeleteItem = 1622;
  124. cmUserScreen = 1650;
  125. cmUserScreenWindow = 1651;
  126. cmEvaluate = 1652;
  127. cmCalculator = 1653;
  128. cmASCIITable = 1654;
  129. cmToolsMessages = 1700;
  130. cmToolsBase = 1800;
  131. cmRecentFileBase = 1850;
  132. cmCompiler = 2000;
  133. cmMemorySizes = 2001;
  134. cmLinker = 2002;
  135. cmDebugger = 2003;
  136. cmDirectories = 2004;
  137. cmTools = 2005;
  138. cmPreferences = 2006;
  139. cmEditor = 2007;
  140. cmMouse = 2008;
  141. cmStartup = 2009;
  142. cmColors = 2010;
  143. cmOpenINI = 2011;
  144. cmSaveINI = 2012;
  145. cmSaveAsINI = 2013;
  146. cmSwitchesMode = 2014;
  147. cmBrowser = 2015;
  148. cmDesktopOptions = 2016;
  149. cmHelpContents = 2100;
  150. cmHelpIndex = 2101;
  151. cmHelpPrevTopic = 2103;
  152. cmHelpUsingHelp = 2104;
  153. cmHelpFiles = 2105;
  154. cmAbout = 2106;
  155. cmOpenAtCursor = 2200;
  156. cmBrowseAtCursor = 2201;
  157. cmEditorOptions = 2202;
  158. cmBrowserOptions = 2203;
  159. cmTrackReference = 2300;
  160. cmGotoReference = 2301;
  161. cmEditBreakpoint = 2400;
  162. cmNewBreakpoint = 2401;
  163. cmDeleteBreakpoint = 2402;
  164. cmToggleBreakpoint = 2403;
  165. cmDumpUndo = 2500;
  166. cmUndoAll = 2501;
  167. cmRedoAll = 2502;
  168. { Help constants }
  169. hcSourceWindow = 8000;
  170. hcHelpWindow = 8001;
  171. hcClipboardWindow = 8002;
  172. hcCalcWindow = 8003;
  173. hcInfoWindow = 8004;
  174. hcBrowserWindow = 8005;
  175. hcMessagesWindow = 8006;
  176. hcGDBWindow = 8007;
  177. hcBreakpointListWindow = 8008;
  178. hcASCIITableWindow = 8009;
  179. hcShift = 10000;
  180. hcUsingHelp = 2;
  181. hcContents = 3;
  182. hcQuit = hcShift+cmQuit;
  183. hcRedo = hcShift+cmRedo;
  184. hcFind = hcShift+cmFind;
  185. hcReplace = hcShift+cmReplace;
  186. hcSearchAgain = hcShift+cmSearchAgain;
  187. hcGotoLine = hcShift+cmJumpLine;
  188. hcUserScreen = hcShift+cmUserScreen;
  189. hcUserScreenWindow = hcShift+cmUserScreenWindow;
  190. hcToolsMessages = hcShift+cmToolsMessages;
  191. hcToolsBase = hcShift+cmToolsBase;
  192. hcRecentFileBase = hcShift+cmRecentFileBase;
  193. hcCompiler = hcShift+cmCompiler;
  194. hcMemorySizes = hcShift+cmMemorySizes;
  195. hcLinker = hcShift+cmLinker;
  196. hcDebugger = hcShift+cmDebugger;
  197. hcDirectories = hcShift+cmDirectories;
  198. hcTools = hcShift+cmTools;
  199. hcPreferences = hcShift+cmPreferences;
  200. hcEditor = hcShift+cmEditor;
  201. hcMouse = hcShift+cmMouse;
  202. hcStartup = hcShift+cmStartup;
  203. hcColors = hcShift+cmColors;
  204. hcOpenINI = hcShift+cmOpenINI;
  205. hcSaveINI = hcShift+cmSaveINI;
  206. hcSaveAsINI = hcShift+cmSaveAsINI;
  207. hcCalculator = hcShift+cmCalculator;
  208. hcAsciiTable = hcShift+cmAsciiTable;
  209. { hcGrep = hcShift+cmGrep;}
  210. hcSwitchesMode = hcShift+cmSwitchesMode;
  211. hcBrowser = hcShift+cmBrowser;
  212. hcDesktopOptions = hcShift+cmDesktopOptions;
  213. hcAbout = hcShift+cmAbout;
  214. hcCompilerMessages = hcShift+cmCompilerMessages;
  215. hcSystemMenu = 9000;
  216. hcFileMenu = 9001;
  217. hcEditMenu = 9002;
  218. hcSearchMenu = 9003;
  219. hcRunMenu = 9004;
  220. hcCompileMenu = 9005;
  221. hcDebugMenu = 9006;
  222. hcToolsMenu = 9007;
  223. hcOptionsMenu = 9008;
  224. hcEnvironmentMenu = 9009;
  225. hcWindowMenu = 9010;
  226. hcHelpMenu = 9011;
  227. hcFirstCommand = hcSystemMenu;
  228. hcLastCommand = 65535;
  229. hcShowClipboard = hcShift+cmShowClipboard;
  230. hcCopyWin = hcShift+cmCopyWin;
  231. hcPasteWin = hcShift+cmPasteWin;
  232. hcFindProcedure = hcShift+cmFindProcedure;
  233. hcObjects = hcShift+cmObjects;
  234. hcModules = hcShift+cmModules;
  235. hcGlobals = hcShift+cmGlobals;
  236. hcSymbol = hcShift+cmSymbol;
  237. hcRun = hcShift+cmRun;
  238. hcParameters = hcShift+cmParameters;
  239. hcResetDebugger = hcShift+cmResetDebugger;
  240. hcContToCursor = hcShift+cmContToCursor;
  241. hcUntilReturn = hcShift+cmUntilReturn;
  242. hcOpenGDBWindow = hcShift+cmOpenGDBWindow;
  243. hcToolsMsgNext = hcShift+cmToolsMsgNext;
  244. hcToolsMsgPrev = hcShift+cmToolsMsgPrev;
  245. hcCompile = hcShift+cmCompile;
  246. hcMake = hcShift+cmMake;
  247. hcBuild = hcShift+cmBuild;
  248. hcTarget = hcShift+cmTarget;
  249. hcPrimaryFile = hcShift+cmPrimaryFile;
  250. hcClearPrimary = hcShift+cmClearPrimary;
  251. hcInformation = hcShift+cmInformation;
  252. hcWindowList = hcShift+cmWindowList;
  253. hcNewFromTemplate = hcShift+cmNewFromTemplate;
  254. hcHelpTopicSearch = hcShift+cmHelpTopicSearch;
  255. hcHelpContents = hcShift+cmHelpContents;
  256. hcHelpIndex = hcShift+cmHelpIndex;
  257. hcHelpPrevTopic = hcShift+cmHelpPrevTopic;
  258. hcHelpUsingHelp = hcShift+cmHelpUsingHelp;
  259. hcHelpFiles = hcShift+cmHelpFiles;
  260. hcUpdate = hcShift+cmUpdate;
  261. hcMsgClear = hcShift+cmMsgClear;
  262. hcMsgGotoSource = hcShift+cmMsgGotoSource;
  263. hcMsgTrackSource = hcShift+cmMsgTrackSource;
  264. hcGotoCursor = hcShift+cmGotoCursor;
  265. hcNewBreakpoint = hcShift+cmNewBreakpoint;
  266. hcEditBreakpoint = hcShift+cmEditBreakpoint;
  267. hcDeleteBreakpoint = hcShift+cmDeleteBreakpoint;
  268. hcToggleBreakpoint = hcShift+cmToggleBreakpoint;
  269. hcEvaluate = hcShift+cmEvaluate;
  270. hcAddWatch = hcShift+cmAddWatch;
  271. hcWatches = hcShift+cmWatches;
  272. hcGrep = hcShift+cmGrep;
  273. hcStack = hcShift+cmStack;
  274. hcBreakPointList = hcShift+cmBreakpointList;
  275. hcRegisters = hcShift+cmRegisters;
  276. hcOpenAtCursor = hcShift+cmOpenAtCursor;
  277. hcBrowseAtCursor = hcShift+cmBrowseAtCursor;
  278. hcEditorOptions = hcShift+cmEditorOptions;
  279. { History constants }
  280. hisChDirDialog = 2000;
  281. CIDEHelpDialog =
  282. #128#129#130#131#132#133#134#135#136#137#138#139#140#141#142#143 +
  283. #144#145#146#147#148#149#150#151#152#153#154#155#156#157#158#159 +
  284. #160#161#162#163 +
  285. #164#165#166;
  286. CSourceWindow =
  287. #167#168#169#170#171#172#173#174#175#176#177#178#179#180#181#182 +
  288. #183#184#185#186#187#188#189#190#191#192#193#194#195#196#197#198 +
  289. #199#200#201#202#203#204#205#206#207#208#209#210#211#212#213#214 ;
  290. CBrowserWindow =
  291. #215#216#217#218#219#220#221#222#223#224#225#226;
  292. CBrowserListBox =
  293. #9#9#10#11#12;
  294. CBrowserTab =
  295. #6#12;
  296. CBrowserOutline = #9#10#10#11;
  297. CGDBInputLine = #9#9#10#11#12;
  298. CFPClockView = #0#227;
  299. CFPToolTip = #228;
  300. CIDEAppColor = CAppColor +
  301. { CIDEHelpDialog }
  302. {128-143}#$70#$7F#$7A#$13#$13#$70#$70#$7F#$7E#$20#$2B#$2F#$78#$2E#$70#$30 + { 1-16}
  303. {144-159}#$3F#$3E#$1F#$2F#$1A#$20#$72#$31#$31#$30#$2F#$3E#$31#$13#$38#$00 + {17-32}
  304. {160-163}#$30#$3E#$1E#$70 + { CHelpViewer } {33-36}
  305. {164-166}#$30#$3F#$3A + { CHelpFrame } {37-39}
  306. { CSourceWindow }
  307. {167-182}#$17#$1F#$1A#$31#$31#$1E#$71#$1F#$00#$00#$00#$00#$00#$00#$00#$00 + { 1-16}
  308. {183-198}#$00#$00#$00#$00#$00#$00#$00#$00#$00#$00#$00#$00#$00#$00#$00#$00 + {17-32}
  309. {199-214}#$1E#$1F#$17#$1F#$1E#$1B#$13#$1A#$1E#$71#$3F#$30#$1C#$13#$1F#$4E + {33-48}
  310. { CBrowserWindow }
  311. {215-226}#$31#$3F#$3A#$31#$31#$31#$71#$1F#$31#$2F#$3E#$3F +
  312. { CFPClockView }
  313. {227-227}#$70 +
  314. { CToolTip }
  315. {228-228}#$20;
  316. implementation
  317. END.
  318. {
  319. $Log$
  320. Revision 1.33 2000-01-25 00:26:36 pierre
  321. + Browser info saving
  322. Revision 1.32 2000/01/08 18:26:20 florian
  323. + added a register window, doesn't work yet
  324. Revision 1.31 2000/01/03 11:38:33 michael
  325. Changes from Gabor
  326. Revision 1.30 1999/11/03 09:39:23 peter
  327. * fixed uppercase filenames
  328. * savetostream did twice a -1 on the linecount, so the lastline of a
  329. file wasn't saved correctly
  330. Revision 1.29 1999/10/27 12:10:42 pierre
  331. + With DebugUndo added 3 menu items
  332. "Dump Undo" "Undo All" and "Redo All"
  333. for Undo checks
  334. Revision 1.28 1999/10/14 10:23:44 pierre
  335. ClockView Black on Gray by default
  336. Revision 1.27 1999/09/13 16:24:43 peter
  337. + clock
  338. * backspace unident like tp7
  339. Revision 1.26 1999/09/09 16:31:45 pierre
  340. * some breakpoint related fixes and Help contexts
  341. Revision 1.25 1999/09/09 14:15:27 pierre
  342. + cmCopyWin,cmPasteWin
  343. Revision 1.24 1999/08/16 18:25:14 peter
  344. * Adjusting the selection when the editor didn't contain any line.
  345. * Reserved word recognition redesigned, but this didn't affect the overall
  346. syntax highlight speed remarkably (at least not on my Amd-K6/350).
  347. The syntax scanner loop is a bit slow but the main problem is the
  348. recognition of special symbols. Switching off symbol processing boosts
  349. the performance up to ca. 200%...
  350. * The editor didn't allow copying (for ex to clipboard) of a single character
  351. * 'File|Save as' caused permanently run-time error 3. Not any more now...
  352. * Compiler Messages window (actually the whole desktop) did not act on any
  353. keypress when compilation failed and thus the window remained visible
  354. + Message windows are now closed upon pressing Esc
  355. + At 'Run' the IDE checks whether any sources are modified, and recompiles
  356. only when neccessary
  357. + BlockRead and BlockWrite (Ctrl+K+R/W) implemented in TCodeEditor
  358. + LineSelect (Ctrl+K+L) implemented
  359. * The IDE had problems closing help windows before saving the desktop
  360. Revision 1.23 1999/08/03 20:22:27 peter
  361. + TTab acts now on Ctrl+Tab and Ctrl+Shift+Tab...
  362. + Desktop saving should work now
  363. - History saved
  364. - Clipboard content saved
  365. - Desktop saved
  366. - Symbol info saved
  367. * syntax-highlight bug fixed, which compared special keywords case sensitive
  368. (for ex. 'asm' caused asm-highlighting, while 'ASM' didn't)
  369. * with 'whole words only' set, the editor didn't found occourences of the
  370. searched text, if the text appeared previously in the same line, but didn't
  371. satisfied the 'whole-word' condition
  372. * ^QB jumped to (SelStart.X,SelEnd.X) instead of (SelStart.X,SelStart.Y)
  373. (ie. the beginning of the selection)
  374. * when started typing in a new line, but not at the start (X=0) of it,
  375. the editor inserted the text one character more to left as it should...
  376. * TCodeEditor.HideSelection (Ctrl-K+H) didn't update the screen
  377. * Shift shouldn't cause so much trouble in TCodeEditor now...
  378. * Syntax highlight had problems recognizing a special symbol if it was
  379. prefixed by another symbol character in the source text
  380. * Auto-save also occours at Dos shell, Tool execution, etc. now...
  381. Revision 1.22 1999/07/12 13:14:14 pierre
  382. * LineEnd bug corrected, now goes end of text even if selected
  383. + Until Return for debugger
  384. + Code for Quit inside GDB Window
  385. Revision 1.21 1999/07/10 01:24:13 pierre
  386. + First implementation of watches window
  387. Revision 1.20 1999/06/30 23:58:11 pierre
  388. + BreakpointsList Window implemented
  389. with Edit/New/Delete functions
  390. + Individual breakpoint dialog with support for all types
  391. ignorecount and conditions
  392. (commands are not yet implemented, don't know if this wolud be useful)
  393. awatch and rwatch have problems because GDB does not annotate them
  394. I fixed v4.16 for this
  395. Revision 1.19 1999/06/28 19:32:18 peter
  396. * fixes from gabor
  397. Revision 1.18 1999/06/25 00:38:59 pierre
  398. +cmSymbol,cmStack,cmBreakpointList
  399. Revision 1.17 1999/04/07 21:55:44 peter
  400. + object support for browser
  401. * html help fixes
  402. * more desktop saving things
  403. * NODEBUG directive to exclude debugger
  404. Revision 1.16 1999/03/23 15:11:27 peter
  405. * desktop saving things
  406. * vesa mode
  407. * preferences dialog
  408. Revision 1.15 1999/03/19 16:04:28 peter
  409. * new compiler dialog
  410. Revision 1.14 1999/03/16 12:38:08 peter
  411. * tools macro fixes
  412. + tph writer
  413. + first things for resource files
  414. Revision 1.13 1999/03/01 15:41:51 peter
  415. + Added dummy entries for functions not yet implemented
  416. * MenuBar didn't update itself automatically on command-set changes
  417. * Fixed Debugging/Profiling options dialog
  418. * TCodeEditor converts spaces to tabs at save only if efUseTabChars is set
  419. * efBackSpaceUnindents works correctly
  420. + 'Messages' window implemented
  421. + Added '$CAP MSG()' and '$CAP EDIT' to available tool-macros
  422. + Added TP message-filter support (for ex. you can call GREP thru
  423. GREP2MSG and view the result in the messages window - just like in TP)
  424. * A 'var' was missing from the param-list of THelpFacility.TopicSearch,
  425. so topic search didn't work...
  426. * In FPHELP.PAS there were still context-variables defined as word instead
  427. of THelpCtx
  428. * StdStatusKeys() was missing from the statusdef for help windows
  429. + Topic-title for index-table can be specified when adding a HTML-files
  430. Revision 1.12 1999/02/22 11:51:34 peter
  431. * browser updates from gabor
  432. Revision 1.11 1999/02/20 15:18:28 peter
  433. + ctrl-c capture with confirm dialog
  434. + ascii table in the tools menu
  435. + heapviewer
  436. * empty file fixed
  437. * fixed callback routines in fpdebug to have far for tp7
  438. Revision 1.10 1999/02/11 19:07:19 pierre
  439. * GDBWindow redesigned :
  440. normal editor apart from
  441. that any kbEnter will send the line (for begin to cursor)
  442. to GDB command !
  443. GDBWindow opened in Debugger Menu
  444. still buggy :
  445. -echo should not be present if at end of text
  446. -GDBWindow becomes First after each step (I don't know why !)
  447. Revision 1.9 1999/02/08 17:40:00 pierre
  448. + cmContToCursor added
  449. Revision 1.8 1999/02/04 12:23:43 pierre
  450. + cmResetDebugger and cmGrep
  451. * Avoid StatusStack overflow
  452. Revision 1.7 1999/01/22 10:24:02 peter
  453. * first debugger things
  454. Revision 1.6 1999/01/21 11:54:12 peter
  455. + tools menu
  456. + speedsearch in symbolbrowser
  457. * working run command
  458. Revision 1.5 1999/01/12 14:29:33 peter
  459. + Implemented still missing 'switch' entries in Options menu
  460. + Pressing Ctrl-B sets ASCII mode in editor, after which keypresses (even
  461. ones with ASCII < 32 ; entered with Alt+<###>) are interpreted always as
  462. ASCII chars and inserted directly in the text.
  463. + Added symbol browser
  464. * splitted fp.pas to fpide.pas
  465. Revision 1.4 1999/01/04 11:49:43 peter
  466. * 'Use tab characters' now works correctly
  467. + Syntax highlight now acts on File|Save As...
  468. + Added a new class to syntax highlight: 'hex numbers'.
  469. * There was something very wrong with the palette managment. Now fixed.
  470. + Added output directory (-FE<xxx>) support to 'Directories' dialog...
  471. * Fixed some possible bugs in Running/Compiling, and the compilation/run
  472. process revised
  473. Revision 1.2 1998/12/28 15:47:43 peter
  474. + Added user screen support, display & window
  475. + Implemented Editor,Mouse Options dialog
  476. + Added location of .INI and .CFG file
  477. + Option (INI) file managment implemented (see bottom of Options Menu)
  478. + Switches updated
  479. + Run program
  480. Revision 1.3 1998/12/22 10:39:41 peter
  481. + options are now written/read
  482. + find and replace routines
  483. }