Open Source
opentool.txt
Associated article: The Delphi Open Tools API
Tags: Tools Open Source Design
Published source code accompanying the article by Ray Lischner in which he discusses Borland's Delphi Open Tools API, a set of classes for extending and customizing the IDE. Also see OPENTOOL.ZIP.
The Delphi Open Tools API
by Ray Lischner
Listing One
unit Sort;
{ Sort selected lines of text in Delphi's source code editor.
Copyright (c) 1997 Tempest Software, Inc.
}
interface
uses Windows, SysUtils, Classes, Graphics, Controls, Dialogs, Forms,
ExptIntf, ToolIntf, EditIntf, Etk;
...


