home *** CD-ROM | disk | FTP | other *** search
/ ftp.alstevens.com / 2014.06.ftp.alstevens.com.tar / ftp.alstevens.com / editor / README < prev    next >
Text File  |  2000-02-25  |  1KB  |  38 lines

  1. Editor Build 0004
  2. -----------------
  3.  
  4. Editor is a programmers' editor that I developed to add to the Quincy 99 IDE,
  5. a project in the C Programming Column of Dr. Dobb's Journal. The Editor program
  6. uses the text editor classes in a standalone program to test the classes before
  7. putting them into Quincy 99.
  8.  
  9. Things Fixed in Build 0004
  10. --------------------------
  11.  
  12. 1. Changed the scroll bar code to work with 32-bit scroll position rather than 16.
  13.  
  14. 2. The Find backward operation aborted if the string was not found.
  15.  
  16. 3. The font size algorithm used fixed numbers. Changed it to use the actual font size.
  17.  
  18. 4. Added syntax highlighting for C/C++ source code files.
  19.  
  20. Things Fixed in Build 0003
  21. --------------------------
  22.  
  23. 1. Splitting a line with the Enter key did not reset the horizontal scroll bar
  24.    position. This could put Editor into a dead loop later if you pressed End on
  25.    a line that exceeded the window width.
  26.  
  27. 2. Inserting tab characters did not scroll horizontally when the tab insertion
  28.    went past the window's right margin.
  29.  
  30. Things Fixed in Build 0002
  31. --------------------------
  32.  
  33. 1. Find and Replace did not scroll to the found text.
  34.  
  35. 2. Following Find, Replace, New, and Open when executed with Ctrl+ accelerator keys,
  36.    Editor thought the Ctrl key was still down.
  37.  
  38.