IonicWind Software

Aurora Compiler => General Discussion => Topic started by: Doc on February 17, 2006, 08:39:47 PM

Title: [IDE] New request
Post by: Doc on February 17, 2006, 08:39:47 PM
Sometime in the not too distant future when there are much less important design issues to think about, can we add the ability to select/open multiple source files (not a project) instead of each individually.

No urgency of any sort, just a nice option for the IDE, in my always humble opinion.  :D

-Doc-
Title: Re: [IDE] New request
Post by: LarryMc on February 22, 2006, 08:07:39 AM
A pulldown window with a list of all the methods/subroutines in the code would be nice; like in that 'other' lang.
Title: Re: [IDE] New request
Post by: Parker on February 22, 2006, 08:20:33 AM
I think that may be in the class browser when it is created ( near the end of betas ), but we'll have to see how Paul wants to do that.
Title: Re: [IDE] New request
Post by: kryton9 on July 30, 2006, 08:19:08 PM
Something probably very easy to do and would be of use, in the compiling results window at the bottom, to reverse the order of output. That is to put the error and line number at the beginning of the output message and where the file is at the end.

So it would be

line number,error description, filename and then where the file is located.
Title: Re: [IDE] New request
Post by: Ionic Wind Support Team on July 30, 2006, 08:22:01 PM
It's in that order for a reason.  Just double click to bring up the offending file and line.
Title: Re: [IDE] New request
Post by: Parker on July 31, 2006, 12:32:35 PM
The problem with listing the filename last is it's harder to extract that way. The way it is, you can first look for "File: ", then read the filename up to the "(n" where n is a number, and extract the line number from what's inside the parenthesis. Some compilers like gcc take it a step further, which is easier to extract but not as pretty looking. error: somefile.c: 9: identifier `stuff' was undeclared this use (or whatever it says).
Title: Re: [IDE] New request
Post by: Kale on July 31, 2006, 01:39:12 PM
Another cool feature (imho) would be to specify a directory to hold all of the '.o', '.map', .opts files instead of being placed in the same dir as the exe. This would be quick and useful to compile directly to distributable folders, and not have to worry about clearing it all out before shipping a release.

EDIT: also a close source button on the toolbar. ;D
Title: Re: [IDE] New request
Post by: J B Wood (Zumwalt) on July 31, 2006, 02:07:55 PM
I'll stick with the simple request of a type-ahead lookup :)
mymethod.[show list]
InternalMethod.[show list]

ok, not so simple :)
no rush on that at all, seriously, put that on like a year from now list
Title: Re: [IDE] New request
Post by: Zen on July 31, 2006, 04:14:35 PM
The Scintilla control that Aurora uses already has the abillity to do the lookahead (Intelisense) built into the control. All it needs to do is for Paul to hook up the code to use it. Im guessing that has not yet been done bacause we are still in Alpha and the Syntax and classes, althought prety complete are not yet 100% set in stone.

Lewis
Title: Re: [IDE] New request
Post by: Parker on July 31, 2006, 04:21:21 PM
Private and public are needed, as well as method overloading, and then I think it will be complete.
Title: Re: [IDE] New request
Post by: J B Wood (Zumwalt) on July 31, 2006, 08:15:38 PM
Your forgetting about Internal.
Title: Re: [IDE] New request
Post by: Parker on August 01, 2006, 11:35:31 AM
??? What is internal? Is it like static?
Title: Re: [IDE] New request
Post by: Zen on August 01, 2006, 12:45:54 PM
Yes Internal is the same, or very similar to Static

Lewis
Title: Re: [IDE] New request
Post by: J B Wood (Zumwalt) on August 01, 2006, 04:12:48 PM
Internal is public without being public to com.
Its public to the project itself, but private to com.
Title: Re: [IDE] New request
Post by: Steven Picard on August 01, 2006, 07:13:15 PM
Paul, can you add the mind reader extension to the IDE?  I'm looking for something that would read my mind and automatically program it for me.  :P
Title: Re: [IDE] New request
Post by: Rock Ridge Farm (Larry) on August 02, 2006, 08:15:40 AM
Yup - that is the one I want and it needs to understand how to correct my misconceptions.
Title: Re: [IDE] New request
Post by: Zen on August 02, 2006, 08:35:51 AM
Well, i have to say, If you could make it, there would be a lot of money in it for you Paul. Hey its worth a try ;)

Lewis