News:

Accounts with zero posts and zero activity during the last months will be deleted periodically to fight SPAM!

Main Menu

Function listing ?

Started by webspy, April 14, 2006, 02:04:21 PM

Previous topic - Next topic

webspy

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) ?

sethjackson

Quote from: 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) ?

Uhh you mean the function parameters? Then yes. I think you need AutoComplete enabled, and maybe CodeCompletion......

TDragon

Quote from: webspy on April 14, 2006, 02:04:21 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.
[url="https://jmeubank.github.io/tdm-gcc/"]https://jmeubank.github.io/tdm-gcc/[/url] - TDM-GCC compiler suite for Windows (GCC 9.2.0 2020-03-08, 32/64-bit, no extra DLLs)

webspy

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 ?

sethjackson

Quote from: 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 ?

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.