Purebasic Linux IDE beta1 released

Developed or developing a new product in PureBasic? Tell the world about it.
Polo
Addict
Addict
Posts: 2422
Joined: Tue May 06, 2003 5:07 pm
Location: UK

Post by Polo »

freak -> I'm using your IDE right now, i've just found out that if i write #pb_any, it's not automatically correcting it to #PB_Any like japbe does. Will you implement this feature ?
BTW, your ide is really really good ! now i've got an icon on my Linux desktop for Purebasic 8)
Polo
Addict
Addict
Posts: 2422
Joined: Tue May 06, 2003 5:07 pm
Location: UK

Post by Polo »

Another stuff : I'm playing a little with the IDE, and when i start typing any commands like MessageRequester, let say i type Mess, then the autocomplete tool (that i had to active in the preference menu) show me MessageRequester. Good, then i just doubleclick on it or use tab, and it adds MessareRequester. It's good, but i would rather have it adding MessageRequester( ;)
freak
PureBasic Team
PureBasic Team
Posts: 5940
Joined: Fri Apr 25, 2003 5:21 pm
Location: Germany

Post by freak »

About the case of the constants... didn't think of that. I will add an option for this.
About the "MessageRequester(" there is an option for that in the preferences.
just enable "Add opening Brackets to Functions/Arrays/Lists" and thats it ;)
quidquid Latine dictum sit altum videtur
Bonne_den_kule
Addict
Addict
Posts: 841
Joined: Mon Jun 07, 2004 7:10 pm

Post by Bonne_den_kule »

When do we get this IDE on Windows?
Polo
Addict
Addict
Posts: 2422
Joined: Tue May 06, 2003 5:07 pm
Location: UK

Post by Polo »

New suggestions: Add case to variables too, and also autocompleting/case for user commands, i mean:

Code: Select all

Procedure MyCommand()
EndProcedure
When in type my I should see MyCommand in the autocomplete tool, and mycommand should be replaced by MyCommand.

I'm giving you work :wink:

Also, when a procedure is folded, we can still write in it, is it normal ? Japbe doesn't allow that (i don't really know why, but i'm used to this :))
freak
PureBasic Team
PureBasic Team
Posts: 5940
Joined: Fri Apr 25, 2003 5:21 pm
Location: Germany

Post by freak »

Bonne_den_kule:
I am doing more improvements on PB/linux still. The windows version will
be a little delayed because of that. You have to be patient some more...

Polo: Have a close look at the preferences options. Much of it is there,
just not enabled by default.
For example the box at the bottom of the autocomplete preferences gives
you many choises on what to/and not to display in the autocomplete box.

About the variables cases. The current parsing routine sort of hit its limits there.
I have a new one in mind, but adding it now would delay things too much.

I have to keep some nice additions for future versions too ;)
quidquid Latine dictum sit altum videtur
Polo
Addict
Addict
Posts: 2422
Joined: Tue May 06, 2003 5:07 pm
Location: UK

Post by Polo »

A bug (maybe) : autocompletion doesn't work when it's not the start of the line :

typing :

Code: Select all

Mess
will show MessageRequester

but typing

Code: Select all

       Mess
won't show anything.
Polo
Addict
Addict
Posts: 2422
Joined: Tue May 06, 2003 5:07 pm
Location: UK

Post by Polo »

I've checked again, the autocomplete doesn't work when there's a real tab before the text, maybe that help :) with space it works.
User avatar
GeoTrail
Addict
Addict
Posts: 2794
Joined: Fri Feb 13, 2004 12:45 am
Location: Bergen, Norway
Contact:

Post by GeoTrail »

Just done a quick test using the IDE in Ubuntu 5.04 and it's working great.
I really love the user defined folding options ;)

Any chance for a Visual Designer too?

I can't get the variable viewer to work. When I start it it doesn't display any values.
I Stepped On A Cornflake!!! Now I'm A Cereal Killer!
olejr
Enthusiast
Enthusiast
Posts: 152
Joined: Sun Jul 11, 2004 7:48 pm
Location: Lillehammer, No(r)way
Contact:

Post by olejr »

GeoTrail wrote:Just done a quick test using the IDE in Ubuntu 5.04 and it's working great.
I really love the user defined folding options ;)

Any chance for a Visual Designer too?

I can't get the variable viewer to work. When I start it it doesn't display any values.
Visual Designer is on a todolist somewhere I think..

And variable viewer doesn't display any values?
Hmm. no i doesn't... Only structures & arrays..

@freak: Didn't you say something about the parsing of variables.. only globals, or something..?
freak
PureBasic Team
PureBasic Team
Posts: 5940
Joined: Fri Apr 25, 2003 5:21 pm
Location: Germany

Post by freak »

Yes, currently only explicitly declared variables (ie. DefType, Global, Static, Shared, Protected)
are detected.
I hope to improve that with a future version.
quidquid Latine dictum sit altum videtur
User avatar
GeoTrail
Addict
Addict
Posts: 2794
Joined: Fri Feb 13, 2004 12:45 am
Location: Bergen, Norway
Contact:

Post by GeoTrail »

ok thanks for the info :)
can't wait to see a visual designer too.
I Stepped On A Cornflake!!! Now I'm A Cereal Killer!
Polo
Addict
Addict
Posts: 2422
Joined: Tue May 06, 2003 5:07 pm
Location: UK

Post by Polo »

freak: another stuff for the ide: it seems we cannot fold structure ? Maybe it's also in preference, i'll check ;)
Polo
Addict
Addict
Posts: 2422
Joined: Tue May 06, 2003 5:07 pm
Location: UK

Post by Polo »

I've also something: when i declare a procedure like this :

Code: Select all

Procedure MyProc()
[...]

EndProcedure
and then i just call it, when i doubleclick on the name of the procedure, the ide go to the line where there is "Procedure MyProc()"
That's really annoying, it should be done with an option on the right click, but, well, this should be an option ;)

Sorry to give you work ;)
olejr
Enthusiast
Enthusiast
Posts: 152
Joined: Sun Jul 11, 2004 7:48 pm
Location: Lillehammer, No(r)way
Contact:

Post by olejr »

Polo wrote:freak: another stuff for the ide: it seems we cannot fold structure ? Maybe it's also in preference, i'll check ;)
Look into Prefs->Folding :wink:
Post Reply