Interfaces autocompletion and statusbar help

Got an idea for enhancing PureBasic? New command(s) you'd like to see?
User avatar
luis
Addict
Addict
Posts: 3893
Joined: Wed Aug 31, 2005 11:09 pm
Location: Italy

Interfaces autocompletion and statusbar help

Post by luis »

As it is now, we have name auto-completion for the procedures we write and the help in the statusbar for the expected parameters to that procedures.

Could be possible to extend that to Interfaces too ?

For example:

Code: Select all

Interface Triangle
 Destroy()
 GetSide.d(Side.s)
 SetSide(Side.s, Value.d)
 CalcExtent.d()
EndInterface
If we declare

Code: Select all

tri.Triangle
and then we start to type

Code: Select all

tri\
we get the list of the available methods

Code: Select all

tri\SetSide(
at this point it would be very nice to have in the statusbar the help for the expected parameters like we have for the normal procedures: SetSide(Side.s, Value.d)

Is there any chance, or maybe some way to obtain this already ?

Thank you.
"Have you tried turning it off and on again ?"
A little PureBasic review
freak
PureBasic Team
PureBasic Team
Posts: 5940
Joined: Fri Apr 25, 2003 5:21 pm
Location: Germany

Re: Interfaces autocompletion and statusbar help

Post by freak »

This is planned for 4.50
quidquid Latine dictum sit altum videtur
User avatar
luis
Addict
Addict
Posts: 3893
Joined: Wed Aug 31, 2005 11:09 pm
Location: Italy

Re: Interfaces autocompletion and statusbar help

Post by luis »

GREAT!

Thank you so much !
"Have you tried turning it off and on again ?"
A little PureBasic review
Mistrel
Addict
Addict
Posts: 3415
Joined: Sat Jun 30, 2007 8:04 pm

Re: Interfaces autocompletion and statusbar help

Post by Mistrel »

Wow. That would be exciting. :D
User avatar
DoubleDutch
Addict
Addict
Posts: 3220
Joined: Thu Aug 07, 2003 7:01 pm
Location: United Kingdom
Contact:

Re: Interfaces autocompletion and statusbar help

Post by DoubleDutch »

This is planned for 4.50
Can't wait to see what else is going to be in 4.5 :D
https://deluxepixel.com <- My Business website
https://reportcomplete.com <- School end of term reports system
User avatar
luis
Addict
Addict
Posts: 3893
Joined: Wed Aug 31, 2005 11:09 pm
Location: Italy

Re: Interfaces autocompletion and statusbar help

Post by luis »

freak wrote:This is planned for 4.50
It's there! Wow! Thank you very much for adding this :)
"Have you tried turning it off and on again ?"
A little PureBasic review
Post Reply