Code::Blocks Forums

User forums => Using Code::Blocks => Topic started by: webspy on April 14, 2006, 02:04:21 pm

Title: Function listing ?
Post by: webspy on April 14, 2006, 02:04:21 pm
Is there any function listing feature in Code Blocks ? I mean, is it possible to display the function header after  "(" (writing "CreateWindowEx(" will display the function header) ?
Title: Re: Function listing ?
Post by: sethjackson on April 14, 2006, 05:53:01 pm
Is there any function listing feature in Code Blocks ? I mean, is it possible to display the function header after  "(" (writing "CreateWindowEx(" will display the function header) ?

Uhh you mean the function parameters? Then yes. I think you need AutoComplete enabled, and maybe CodeCompletion......
Title: Re: Function listing ?
Post by: TDragon on April 14, 2006, 06:51:39 pm
Is there any function listing feature in Code Blocks ?
Yes.
Quote
I mean, is it possible to display the function header after  "("
Yes.
Quote
(writing "CreateWindowEx(" will display the function header) ?
No.

The code completion parser is a work-in-progress, and as such will not yet magically handle macros like CreateWindowEx and 90% of the rest of the Win32 API. For your own simple functions it will usually work.
Title: Re: Function listing ?
Post by: webspy on April 14, 2006, 11:34:38 pm
I'm a beginner in Win32 programming and code/function completion would help me very much. So is there any other way to make it easier for me to program using CodeBlocks ?
Title: Re: Function listing ?
Post by: sethjackson on April 14, 2006, 11:42:12 pm
I'm a beginner in Win32 programming and code/function completion would help me very much. So is there any other way to make it easier for me to program using CodeBlocks ?

1. Use wxWidgets (cross-platform GUI toolkit).  :D

http://www.wxwidgets.org/

2. MSDN might help you with Win32 API calls.

http://msdn.microsoft.com/library/

3. Wait for code completion to be finished.