Default File Layout in Codegear C++ Builder (and Delphi) - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T16:37:53Zhttp://stackoverflow.com/feeds/question/898458http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/898458/default-file-layout-in-codegear-c-builder-and-delphi3Default File Layout in Codegear C++ Builder (and Delphi)TommyA2009-05-22T15:25:35Z2009-05-22T21:05:16Z
<p>I've had a major annoyance with the Borland/Codegear C++ Builder IDE for some time now. When I code I always use a standard layout for the code files. I have a standard header that I use, including, ie. the Licens of the file, filename, date, etc.</p>
<p>But I haven't been able to find anywhere to insert this, so that when I - for instance - create a new unit, get this header inserted automatically. Of course I can just paste it in, every time, but it gets a bit irritating to use time doing this.</p>
<p>So my question is - is it possible to create a file template for default C++ files or modify the existing ones so that they always start with my predefined layout. My fear is that just as with most other things in the C++ Builder IDE, this is hardcoded into it.</p>
<p>Currently creating a new unit creates a .cpp file with:</p>
<pre><code>//---------------------------------------------------------------------------
#pragma hdrstop
#include "Unit1.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
</code></pre>
<p>and a corresponding header file with:</p>
<pre><code>//---------------------------------------------------------------------------
#ifndef Unit1H
#define Unit1H
//---------------------------------------------------------------------------
#endif
</code></pre>
<p>This is what I wish to alter to my own defined layout.</p>
<p>I'm using Codegear C++ Builder 2007.</p>
<p>Any help would be appreciated.</p>
http://stackoverflow.com/questions/898458/default-file-layout-in-codegear-c-builder-and-delphi/898537#8985373Answer by Kris Kumler for Default File Layout in Codegear C++ Builder (and Delphi)Kris Kumler2009-05-22T15:39:06Z2009-05-22T15:39:06Z<p>See "Adding Items to the Object Repository" in the help file.</p>
<p>Basically,
1. Create the unit file(s) as you wish
2. Go to Project -> Add to Repository
3. Add information.
4. It will be available from the File -> New... area</p>
<p>There are also ways to share and edit repository items. The default distribution items are not quite as flexible, but creating your own should do just what you need.</p>
http://stackoverflow.com/questions/898458/default-file-layout-in-codegear-c-builder-and-delphi/900000#9000001Answer by skamradt for Default File Layout in Codegear C++ Builder (and Delphi)skamradt2009-05-22T21:05:16Z2009-05-22T21:05:16Z<p>For the defaults, see the answers to the question on <a href="http://stackoverflow.com/questions/880125/how-do-i-reduce-uses-boilerplate-for-new-forms">reducing the "uses" clause boilerplate</a> also located on stack overflow. This would require the same changes.</p>