tags:

views:

253

answers:

3

Each Delphi's VCL source file has header like this:

{*******************************************************}
{                                                       }
{           CodeGear Delphi Runtime Library             }
{                                                       }
{ Copyright(c) 1995-2010 Embarcadero Technologies, Inc. }
{                                                       }
{   Copyright and license exceptions noted in source    }
{                                                       }
{*******************************************************}

is there any tools/methods available in Delphi IDE or ModelMaker Code Explorer that can let us construct this header graphic faster?

+11  A: 

I would create a Live Template that lets you fill in automatically all the data that you want.

You can find out more about creating live templates here:

http://delphi.wikia.com/wiki/Delphi%5FLive%5FTemplates

Live templates are extremely powerful and flexible. You can get them to do almost anything that you want in the code editor.

Nick Hodges
+5  A: 

You can also use the Unit Header macro template from the Editor Experts in GExperts

François
+2  A: 

cnPack has a good Source Template options, it allow you to insert Unit Header for Delphi & C++ source files, also Class header & procedure headers too.

Mohammed Nasman