vote up 6 vote down star

I was wondering if there is an equivalent to Visual Studio's #regions in RAD Studio.

We use CodeGear's delphi and c++builder IDEs where I work and I would love to be able to use something like regions.

My coworkers and I have yet to find an equivalent way of grouping code... do you know of any?

Thanks!

flag

4 Answers

vote up 14 vote down check

You can apply a special {$REGION 'Region Name'} directive to mark a "named" collapsible regions in the code editor.

To mark code as a region, surround it with the REGION and ENDREGION directives. You may include a caption that will be displayed when the code is folded and hidden.

Here's an exampe of the two (nested) regions:

{$REGION 'Iterate Panels'}
for j := 0 to StatusBar1.Panels.Count - 1 do
begin
  x := x + StatusBar1.Panels[j].Width;
  {$REGION 'Inner if Region'}
  if mpt.X < x then
  begin
    panel := j;
    Break;
  end;
  {$ENDREGION}
end;
{$ENDREGION}

To fold or unfold a region, click on the [+] (if expanded) or [-] (if collapsed) marker left to the $region directive. This will look:

alt text

link|flag
This is exactly what I was looking for. Thank you very much. – stevosaurus Jun 4 at 19:15
FYI, I believe this was introduced in Delphi 2005. – Jim McKeeth Jun 4 at 19:42
vote up 0 vote down

What is the use of region if its not working correct? Sure u can fold it and its looks cool, but after u edit some code or make new function its automaticly unfolds. This bug is on Borlad studio c++, rad studio 2009/2010. Useless.

link|flag
Yeah, we discovered this shortly after starting to use the regions. It works great when editing delphi code in the (same release version even), but all of the versions of c++ builder act in the way you describe. – stevosaurus Oct 13 at 19:35
vote up 2 vote down

As an addition to eKek0's answer note that (at least in d2009) you can select the code lines that you want to put in a region, right click and choose Surround | Region. You'll be prompted for the region name.

link|flag
vote up 3 vote down

For C++Builder, use

#pragma region [name]
and
#pragma end_region
, as described in the documentation.

link|flag
1  
There is however a thing, at least when using C++ Builder, the IDE does not remember which regions you have folded, and have a nasty tendency of unfolding them whenever you edit other parts of the document. So each time you open the file you have to fold the regions again, if that is what you wish. – TommyA Aug 16 at 19:49
Yes, that's quite annoying, and I think it's a bug. For folded classes/functions, this was fixed in C++Builder 2010, but not yet for #pragma region... – Moritz Beutel Aug 27 at 13:56

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.