fphelp.pas 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582
  1. {
  2. $Id$
  3. This file is part of the Free Pascal Integrated Development Environment
  4. Copyright (c) 1998 by Berczi Gabor
  5. Help routines for 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 FPHelp;
  13. interface
  14. uses
  15. Drivers,HelpCtx,
  16. WHelp,WHlpView,WHTML,
  17. {$ifdef EDITORS}
  18. Editors,
  19. {$else}
  20. WEditor,
  21. {$endif}
  22. WViews,FPViews;
  23. type
  24. PIDEStatusLine = ^TIDEStatusLine;
  25. TIDEStatusLine = object(TAdvancedStatusLine)
  26. function Hint(AHelpCtx: Word): String; virtual;
  27. procedure HandleEvent(var Event: TEvent); virtual;
  28. end;
  29. procedure Help(FileID, Context: THelpCtx; Modal: boolean);
  30. procedure HelpIndex(Keyword: string);
  31. procedure HelpTopicSearch(Editor: PEditor);
  32. procedure HelpTopic(const S: string);
  33. procedure CloseHelpWindows;
  34. procedure InitHelpSystem;
  35. procedure DoneHelpSystem;
  36. procedure InitHelpFiles;
  37. procedure DoneHelpFiles;
  38. procedure PushStatus(S: string);
  39. procedure SetStatus(S: string);
  40. procedure ClearStatus;
  41. procedure PopStatus;
  42. const
  43. HelpWindow : PFPHelpWindow = nil;
  44. HelpInited : boolean = false;
  45. implementation
  46. uses Objects,Views,App,MsgBox,Commands,
  47. WHTMLHlp,
  48. FPConst,FPVars,FPUtils;
  49. const
  50. MaxStatusLevel = {$ifdef FPC}10{$else}1{$endif};
  51. var StatusStack : array[0..MaxStatusLevel] of string[MaxViewWidth];
  52. const
  53. StatusStackPtr : integer = 0;
  54. procedure TIDEStatusLine.HandleEvent(var Event: TEvent);
  55. begin
  56. case Event.What of
  57. evBroadcast :
  58. case Event.Command of
  59. cmUpdate : Update;
  60. end;
  61. end;
  62. inherited HandleEvent(Event);
  63. end;
  64. function TIDEStatusLine.Hint(AHelpCtx: Word): String;
  65. var S: string;
  66. begin
  67. case AHelpCtx of
  68. hcNoContext : S:='';
  69. hcSourceWindow : S:='';
  70. hcHelpWindow : S:='';
  71. hcCalcWindow : S:='';
  72. hcInfoWindow : S:='';
  73. hcClipboardWindow:S:='';
  74. hcBrowserWindow : S:='';
  75. hcMessagesWindow: S:='';
  76. hcASCIITableWindow: S:='';
  77. hcGDBWindow : S:='Raw GDB communication window';
  78. hcBreakpointListWindow : S:='All current breakpoints';
  79. hcSystemMenu : S:='System menu';
  80. hcUpdate : S:='Refresh and redraw display';
  81. hcAbout : S:='Show version and copyright information';
  82. hcFileMenu : S:='File managment commands (Open, New, Save, etc.)';
  83. hcNew : S:='Create a new file in a new edit window';
  84. hcNewFromTemplate:S:='Create a new file using a code template';
  85. hcOpen : S:='Locate and open a file in an edit window';
  86. hcSave : S:='Save the file in the active edit window';
  87. hcSaveAs : S:='Save the current file under a different name, directory or drive';
  88. hcSaveAll : S:='Save all modified files';
  89. hcChangeDir : S:='Choose a new default directory';
  90. hcDOSShell : S:='Temporarily exit to DOS';
  91. hcQuit : S:='Exit the IDE';
  92. hcRecentFileBase..hcRecentFileBase+10
  93. : S:='Open indicated file in a new editor window';
  94. hcEditMenu : S:='Clipboard editing commands';
  95. hcUndo : S:='Undo the previous editor operation';
  96. hcRedo : S:='Redo the previously undone editor operation';
  97. hcCut : S:='Remove the selected text and put it in the clipboard';
  98. hcCopy : S:='Copy the selected text in the clipboard';
  99. hcPaste : S:='Insert selected text from the clipboard at the cursor position';
  100. hcCopyWin : S:='Copy the selected text in windows clipboard';
  101. hcPasteWin : S:='Insert selected text from windows clipboard at the cursor position';
  102. hcClear : S:='Delete the selected text';
  103. hcShowClipboard : S:='Open then clipboard window';
  104. hcSearchMenu : S:='Text and symbols search commands';
  105. hcFind : S:='Search for text';
  106. hcReplace : S:='Search for text and replace it with new text';
  107. hcSearchAgain : S:='Repeat the last Search or Replace command';
  108. hcGotoLine : S:='Move the cursor to a specified line number';
  109. hcObjects : S:='Open a browser displaying all objects in the program';
  110. hcModules : S:='Open a browser displaying all modules of the program';
  111. hcGlobals : S:='Open a browser displaying all global symbols in the program';
  112. hcSymbol : S:='Open a browser a current word (not yet scope sensitive)';
  113. hcRunMenu : S:='Execution and parameters';
  114. hcRun : S:='Run the current program';
  115. hcParameters : S:='Set command-line parameters passed to program at execution';
  116. hcResetDebugger : S:='Reset Program';
  117. hcContToCursor : S:='Go on until Cursor position';
  118. hcUntilReturn : S:='Go on until end of current function';
  119. hcUserScreen : S:='Switch to the full-screen user output';
  120. hcCompileMenu : S:='Compile, build & make';
  121. hcCompile : S:='Compile the current source file';
  122. hcMake : S:='Rebuild source file and all other files that have been modified';
  123. hcBuild : S:='Rebuild program and all available source files';
  124. hcTarget : S:='Select target platform to compile for';
  125. hcPrimaryFile : S:='Define then file that is the focus of Make and Build';
  126. hcClearPrimary : S:='Clear the file previously set to Primary';
  127. hcInformation : S:='Show compiler messages and program information';
  128. hcCompilerMessages:S:='Show compiler messages window';
  129. hcDebugMenu : S:='Debug Program';
  130. hcToggleBreakpoint : S:='Toggles Breakpoint';
  131. hcNewBreakpoint : S:='Create a new breakpoint';
  132. hcEditBreakpoint : S:='Edit focused breakpoint';
  133. hcDeleteBreakpoint : S:='Delete focused breakpoint';
  134. hcOpenGDBWindow : S:='Open direct window to GDB';
  135. hcAddWatch : S:='Add a new expression to watch';
  136. hcWatches : S:='Open the Watches Window';
  137. hcStack : S:='Show call stack';
  138. hcBreakpointList : S:='Edit breakpoints';
  139. hcToolsMenu : S:='User installed tools';
  140. hcCalculator : S:='Show calculator';
  141. hcGrep : S:='Run grep';
  142. hcMsgGotoSource : S:='Edit source';
  143. hcRegisters : S:='Open the Registers Window';
  144. hcToolsMessages : S:='Open the message window';
  145. hcToolsBase..
  146. hcToolsBase+MaxToolCount
  147. : S:='User installed tool';
  148. hcASCIITable : S:='Show ASCII table';
  149. hcOptionsMenu : S:='Setting for compiler, editor, mouse, etc.';
  150. hcSwitchesMode : S:='Select settings for normal, debug or release version';
  151. hcCompiler : S:='Set default compiler directives and conditional defines';
  152. hcMemorySizes : S:='Set default stack and heap sizes for generated programs';
  153. hcLinker : S:='Set linker options';
  154. hcDebugger : S:='Set debug information options';
  155. hcDirectories : S:='Set paths for units, include, object and generated files';
  156. hcBrowser : S:='Specify global browser settings';
  157. hcTools : S:='Create or change tools';
  158. hcEnvironmentMenu:S:='Specify environment settins';
  159. hcPreferences : S:='Specify desktop settings';
  160. hcEditor : S:='Specify default editor settings';
  161. hcCodeCompleteOptions:S:='Specify CodeComplete keywords';
  162. hcCodeTemplateOptions:S:='Specify CodeCompletes';
  163. hcMouse : S:='Specify mouse settings';
  164. hcDesktopOptions: S:='Specify desktop settings';
  165. hcStartup : S:='Permanently change default startup options';
  166. hcColors : S:='Customize IDE colors for windows, menus, editors, etc.';
  167. hcOpenINI : S:='Load a previously saved options file';
  168. hcSaveINI : S:='Save all the changes made in the options menu';
  169. hcSaveAsINI : S:='Save all the changes made under a different name';
  170. hcWindowMenu : S:='Windows managment commands';
  171. hcTile : S:='Arrange windows on desktop by tiling';
  172. hcCascade : S:='Arrange windows on desktop by cascading';
  173. hcCloseAll : S:='Close all windows on the desktop';
  174. hcResize : S:='Change the size/postion of the active window';
  175. hcZoom : S:='Enlarge or restore the size of the active window';
  176. hcNext : S:='Make the next window active';
  177. hcPrev : S:='Make the previous window active';
  178. hcClose : S:='Close the active window';
  179. hcWindowList : S:='Show a list of all open windows';
  180. hcUserScreenWindow:S:='Show contents of user screen in a window';
  181. hcHelpMenu : S:='Get online help';
  182. hcHelpContents : S:='Show table of contents for Online Help';
  183. hcHelpIndex : S:='Show index for Online Help';
  184. hcHelpTopicSearch:S:='Display help on the word at cursor';
  185. hcHelpPrevTopic : S:='Redisplay the last-viewed Online Help screen';
  186. hcHelpUsingHelp : S:='How to use Online Help';
  187. hcHelpFiles : S:='Install or remove installed help files';
  188. hcOpenAtCursor : S:='Attempt to open the file indicated by the word at cursor';
  189. hcBrowseAtCursor: S:='Attempt to browse the symbol at cursor';
  190. hcEditorOptions : S:='Specify editor settings';
  191. else S:='???';
  192. end;
  193. Hint:=S;
  194. end;
  195. procedure InitHelpSystem;
  196. procedure AddOAFile(HelpFile: string);
  197. begin
  198. {$IFDEF DEBUG}SetStatus(strLoadingHelp+' ('+SmartPath(HelpFile)+')');{$ENDIF}
  199. HelpFacility^.AddOAHelpFile(HelpFile);
  200. {$IFDEF DEBUG}SetStatus(strLoadingHelp);{$ENDIF}
  201. end;
  202. procedure AddHTMLFile(TOCEntry,HelpFile: string);
  203. begin
  204. {$IFDEF DEBUG}SetStatus(strLoadingHelp+' ('+SmartPath(HelpFile)+')');{$ENDIF}
  205. HelpFacility^.AddHTMLHelpFile(HelpFile, TOCEntry);
  206. {$IFDEF DEBUG}SetStatus(strLoadingHelp);{$ENDIF}
  207. end;
  208. var I,P: sw_integer;
  209. S: string;
  210. TopicTitle: string;
  211. begin
  212. New(HelpFacility, Init);
  213. PushStatus(strLoadingHelp);
  214. { AddHTMLFile('User''s guide','C:\FP\USER\USER.HTM');}
  215. for I:=0 to HelpFiles^.Count-1 do
  216. begin
  217. S:=HelpFiles^.At(I)^; TopicTitle:='';
  218. P:=Pos('|',S);
  219. if P>0 then
  220. begin TopicTitle:=copy(S,P+1,255); S:=copy(S,1,P-1); end;
  221. if TopicTitle='' then TopicTitle:=S;
  222. if copy(UpcaseStr(ExtOf(S)),1,4)='.HTM' then { this recognizes both .htm and .html }
  223. AddHTMLFile(TopicTitle,S)
  224. else
  225. AddOAFile(S);
  226. end;
  227. PopStatus;
  228. end;
  229. procedure CheckHelpSystem;
  230. begin
  231. if HelpInited then Exit;
  232. InitHelpSystem;
  233. HelpInited:=true;
  234. end;
  235. procedure DoneHelpSystem;
  236. begin
  237. if assigned(HelpFacility) then
  238. begin
  239. Dispose(HelpFacility, Done);
  240. HelpFacility:=nil;
  241. end;
  242. HelpInited:=false;
  243. end;
  244. procedure HelpCreateWindow;
  245. var R: TRect;
  246. begin
  247. CheckHelpSystem;
  248. if HelpWindow=nil then
  249. begin
  250. Desktop^.GetExtent(R); R.Grow(-15,-3); Dec(R.A.Y);
  251. New(HelpWindow, Init(R, 'Help', 0, 0, SearchFreeWindowNo));
  252. if HelpWindow<>nil then
  253. begin
  254. HelpWindow^.Hide;
  255. Desktop^.Insert(HelpWindow);
  256. end;
  257. end;
  258. end;
  259. procedure Help(FileID, Context: THelpCtx; Modal: boolean);
  260. begin
  261. if Modal then
  262. begin MessageBox('Sorry, modal help not yet implemented.',nil,mfInformation+mfInsertInApp+mfOKButton); Exit; end;
  263. HelpCreateWindow;
  264. with HelpWindow^ do
  265. begin
  266. HelpWindow^.ShowTopic(0,Context);
  267. if GetState(sfVisible)=false then Show;
  268. MakeFirst;
  269. end;
  270. Message(Application,evCommand,cmUpdate,nil);
  271. end;
  272. procedure HelpTopicSearch(Editor: PEditor);
  273. var S: string;
  274. begin
  275. if Editor=nil then S:='' else
  276. S:=GetEditorCurWord(Editor);
  277. HelpTopic(S);
  278. end;
  279. procedure HelpTopic(const S: string);
  280. var FileID: word;
  281. Ctx : THelpCtx;
  282. var Found: boolean;
  283. begin
  284. CheckHelpSystem;
  285. PushStatus(strLocatingTopic);
  286. Found:=HelpFacility^.TopicSearch(S,FileID,Ctx);
  287. PopStatus;
  288. if Found then
  289. Help(FileID,Ctx,false)
  290. else
  291. HelpIndex(S);
  292. end;
  293. procedure HelpIndex(Keyword: string);
  294. begin
  295. HelpCreateWindow;
  296. with HelpWindow^ do
  297. begin
  298. PushStatus(strBuildingHelpIndex);
  299. HelpWindow^.ShowIndex;
  300. if Keyword<>'' then
  301. HelpWindow^.HelpView^.Lookup(Keyword);
  302. PopStatus;
  303. if GetState(sfVisible)=false then Show;
  304. MakeFirst;
  305. end;
  306. Message(Application,evCommand,cmUpdate,nil);
  307. end;
  308. procedure PushStatus(S: string);
  309. begin
  310. if StatusLine=nil then
  311. Exit;
  312. If StatusStackPtr<=MaxStatusLevel then
  313. StatusStack[StatusStackPtr]:=PAdvancedStatusLine(StatusLine)^.GetStatusText
  314. else
  315. StatusStack[MaxStatusLevel]:=PAdvancedStatusLine(StatusLine)^.GetStatusText;
  316. SetStatus(S);
  317. Inc(StatusStackPtr);
  318. end;
  319. procedure PopStatus;
  320. begin
  321. if StatusLine=nil then
  322. Exit;
  323. Dec(StatusStackPtr);
  324. If StatusStackPtr<=MaxStatusLevel then
  325. SetStatus(StatusStack[StatusStackPtr])
  326. else
  327. SetStatus(StatusStack[MaxStatusLevel]);
  328. end;
  329. procedure SetStatus(S: string);
  330. begin
  331. if StatusLine=nil then
  332. Exit;
  333. PAdvancedStatusLine(StatusLine)^.SetStatusText(S);
  334. end;
  335. procedure ClearStatus;
  336. begin
  337. PAdvancedStatusLine(StatusLine)^.ClearStatusText;
  338. end;
  339. procedure InitHelpFiles;
  340. begin
  341. New(HelpFiles, Init(10,10));
  342. end;
  343. procedure DoneHelpFiles;
  344. begin
  345. if assigned(HelpFiles) then
  346. Dispose(HelpFiles, Done);
  347. end;
  348. procedure CloseHelpWindows;
  349. procedure CloseIfHelpWindow(P: PView); {$ifndef FPC}far;{$endif}
  350. begin
  351. if P^.HelpCtx=hcHelpWindow then
  352. begin
  353. Message(P,evCommand,cmClose,nil);
  354. Dispose(P, Done); { help windows are only hidden on close so we've
  355. to destroy them manually }
  356. end;
  357. end;
  358. begin
  359. Desktop^.ForEach(@CloseIfHelpWindow);
  360. end;
  361. END.
  362. {
  363. $Log$
  364. Revision 1.27 2000-02-07 11:58:01 pierre
  365. Gabor's code inserted
  366. Revision 1.26 2000/01/08 18:26:20 florian
  367. + added a register window, doesn't work yet
  368. Revision 1.25 2000/01/05 17:25:26 pierre
  369. * typo error corrected
  370. Revision 1.24 2000/01/03 11:38:33 michael
  371. Changes from Gabor
  372. Revision 1.23 1999/09/09 16:31:45 pierre
  373. * some breakpoint related fixes and Help contexts
  374. Revision 1.22 1999/09/09 14:15:27 pierre
  375. + cmCopyWin,cmPasteWin
  376. Revision 1.21 1999/08/16 18:25:17 peter
  377. * Adjusting the selection when the editor didn't contain any line.
  378. * Reserved word recognition redesigned, but this didn't affect the overall
  379. syntax highlight speed remarkably (at least not on my Amd-K6/350).
  380. The syntax scanner loop is a bit slow but the main problem is the
  381. recognition of special symbols. Switching off symbol processing boosts
  382. the performance up to ca. 200%...
  383. * The editor didn't allow copying (for ex to clipboard) of a single character
  384. * 'File|Save as' caused permanently run-time error 3. Not any more now...
  385. * Compiler Messages window (actually the whole desktop) did not act on any
  386. keypress when compilation failed and thus the window remained visible
  387. + Message windows are now closed upon pressing Esc
  388. + At 'Run' the IDE checks whether any sources are modified, and recompiles
  389. only when neccessary
  390. + BlockRead and BlockWrite (Ctrl+K+R/W) implemented in TCodeEditor
  391. + LineSelect (Ctrl+K+L) implemented
  392. * The IDE had problems closing help windows before saving the desktop
  393. Revision 1.20 1999/08/03 20:22:31 peter
  394. + TTab acts now on Ctrl+Tab and Ctrl+Shift+Tab...
  395. + Desktop saving should work now
  396. - History saved
  397. - Clipboard content saved
  398. - Desktop saved
  399. - Symbol info saved
  400. * syntax-highlight bug fixed, which compared special keywords case sensitive
  401. (for ex. 'asm' caused asm-highlighting, while 'ASM' didn't)
  402. * with 'whole words only' set, the editor didn't found occourences of the
  403. searched text, if the text appeared previously in the same line, but didn't
  404. satisfied the 'whole-word' condition
  405. * ^QB jumped to (SelStart.X,SelEnd.X) instead of (SelStart.X,SelStart.Y)
  406. (ie. the beginning of the selection)
  407. * when started typing in a new line, but not at the start (X=0) of it,
  408. the editor inserted the text one character more to left as it should...
  409. * TCodeEditor.HideSelection (Ctrl-K+H) didn't update the screen
  410. * Shift shouldn't cause so much trouble in TCodeEditor now...
  411. * Syntax highlight had problems recognizing a special symbol if it was
  412. prefixed by another symbol character in the source text
  413. * Auto-save also occours at Dos shell, Tool execution, etc. now...
  414. Revision 1.19 1999/07/12 13:14:17 pierre
  415. * LineEnd bug corrected, now goes end of text even if selected
  416. + Until Return for debugger
  417. + Code for Quit inside GDB Window
  418. Revision 1.18 1999/07/10 01:24:16 pierre
  419. + First implementation of watches window
  420. Revision 1.17 1999/06/30 23:58:14 pierre
  421. + BreakpointsList Window implemented
  422. with Edit/New/Delete functions
  423. + Individual breakpoint dialog with support for all types
  424. ignorecount and conditions
  425. (commands are not yet implemented, don't know if this wolud be useful)
  426. awatch and rwatch have problems because GDB does not annotate them
  427. I fixed v4.16 for this
  428. Revision 1.16 1999/06/28 19:32:19 peter
  429. * fixes from gabor
  430. Revision 1.15 1999/06/25 00:39:58 pierre
  431. help for cmSymbol,cmAddWatch,cmStack and cmBreakpoint list
  432. Revision 1.14 1999/04/07 21:55:46 peter
  433. + object support for browser
  434. * html help fixes
  435. * more desktop saving things
  436. * NODEBUG directive to exclude debugger
  437. Revision 1.13 1999/03/23 15:11:28 peter
  438. * desktop saving things
  439. * vesa mode
  440. * preferences dialog
  441. Revision 1.12 1999/03/16 12:38:09 peter
  442. * tools macro fixes
  443. + tph writer
  444. + first things for resource files
  445. Revision 1.11 1999/03/01 15:41:53 peter
  446. + Added dummy entries for functions not yet implemented
  447. * MenuBar didn't update itself automatically on command-set changes
  448. * Fixed Debugging/Profiling options dialog
  449. * TCodeEditor converts spaces to tabs at save only if efUseTabChars is set
  450. * efBackSpaceUnindents works correctly
  451. + 'Messages' window implemented
  452. + Added '$CAP MSG()' and '$CAP EDIT' to available tool-macros
  453. + Added TP message-filter support (for ex. you can call GREP thru
  454. GREP2MSG and view the result in the messages window - just like in TP)
  455. * A 'var' was missing from the param-list of THelpFacility.TopicSearch,
  456. so topic search didn't work...
  457. * In FPHELP.PAS there were still context-variables defined as word instead
  458. of THelpCtx
  459. * StdStatusKeys() was missing from the statusdef for help windows
  460. + Topic-title for index-table can be specified when adding a HTML-files
  461. Revision 1.10 1999/02/22 11:51:35 peter
  462. * browser updates from gabor
  463. Revision 1.9 1999/02/19 18:43:45 peter
  464. + open dialog supports mask list
  465. Revision 1.8 1999/02/11 19:07:21 pierre
  466. * GDBWindow redesigned :
  467. normal editor apart from
  468. that any kbEnter will send the line (for begin to cursor)
  469. to GDB command !
  470. GDBWindow opened in Debugger Menu
  471. still buggy :
  472. -echo should not be present if at end of text
  473. -GDBWindow becomes First after each step (I don't know why !)
  474. Revision 1.7 1999/02/08 17:40:01 pierre
  475. + cmContToCursor added
  476. Revision 1.6 1999/02/08 10:37:43 peter
  477. + html helpviewer
  478. Revision 1.5 1999/02/04 12:23:44 pierre
  479. + cmResetDebugger and cmGrep
  480. * Avoid StatusStack overflow
  481. Revision 1.4 1999/01/21 11:54:13 peter
  482. + tools menu
  483. + speedsearch in symbolbrowser
  484. * working run command
  485. Revision 1.3 1999/01/04 11:49:44 peter
  486. * 'Use tab characters' now works correctly
  487. + Syntax highlight now acts on File|Save As...
  488. + Added a new class to syntax highlight: 'hex numbers'.
  489. * There was something very wrong with the palette managment. Now fixed.
  490. + Added output directory (-FE<xxx>) support to 'Directories' dialog...
  491. * Fixed some possible bugs in Running/Compiling, and the compilation/run
  492. process revised
  493. Revision 1.2 1998/12/28 15:47:44 peter
  494. + Added user screen support, display & window
  495. + Implemented Editor,Mouse Options dialog
  496. + Added location of .INI and .CFG file
  497. + Option (INI) file managment implemented (see bottom of Options Menu)
  498. + Switches updated
  499. + Run program
  500. Revision 1.3 1998/12/22 10:39:42 peter
  501. + options are now written/read
  502. + find and replace routines
  503. }