Search found 1562 matches

by BruceSteers
Friday 21st January 2022 7:45pm
Forum: Component Showcase
Topic: Joystick Class
Replies: 5
Views: 9261

Re: Joystick Class

there was merge request made by Tobias Boerge 2 years ago for a class called gb.joystick

might be worth a look...

https://gitlab.com/gambas/gambas/-/tree/gb.joystick
by BruceSteers
Thursday 20th January 2022 9:47pm
Forum: Lounge
Topic: pluma like "External Tools" in my gambas :) :)
Replies: 11
Views: 13438

Re: pluma like "External Tools" in my gambas :) :)

Hi Bruce, How does it integrate into the ide, will i have to do a merge every time the IDE is updated? It is something I have been looking for, How are the plugins executed from the IDE? Thanks for your work on this! To add further to integration. My last explanation says how it adds the Tools mana...
by BruceSteers
Thursday 20th January 2022 7:58pm
Forum: Lounge
Topic: pluma like "External Tools" in my gambas :) :)
Replies: 11
Views: 13438

Re: pluma like "External Tools" in my gambas :) :)

Hi Brian, modifications to the IDE code are minimal. I added a menu to FMain.form { mnuRunExtTool Menu Action = "external-tools" Text = ("External Tools") & "..." Picture = Picture["icon:/small/properties"] } I added an action for the menu click in FMain.c...
by BruceSteers
Thursday 20th January 2022 10:04am
Forum: Project showcase
Topic: Gambas Function sorter
Replies: 8
Views: 8423

Re: Gambas Function sorter

Added some argument options. Options: -m --modal No file load box -n --nosource No source file view -o --output Save button outputs text not save file -c --close Save button exits after save. -f --file <Path> File to load -V --version Display version -h --help Display this help i have this set up no...
by BruceSteers
Thursday 20th January 2022 4:47am
Forum: Lounge
Topic: pluma like "External Tools" in my gambas :) :)
Replies: 11
Views: 13438

pluma like "External Tools" in my gambas :) :)

I've only been and done it. I added External tools to my ScriptEd editor as it's really useful. now i've finally managed to do the same with Gambas :D https://gitlab.com/bsteers4/gambas/-/tree/External-Tools It works well :) it creates a dir to store the scripts in $HOME/.local/share/gambas3/ Data c...
by BruceSteers
Thursday 20th January 2022 12:25am
Forum: Project showcase
Topic: Gambas Function sorter
Replies: 8
Views: 8423

Re: Gambas Function sorter

Bildschirmfoto_2022-01-19_12-50-11.png Do you not have the latest gambas? Okay just for you dude I've removed the FileBox and used a Buttonbox instead Aah it might have been that one of it's own source files was loading as a test file. that work in the IDE but not the compiled exe. So i copied the ...
by BruceSteers
Wednesday 19th January 2022 8:24pm
Forum: Project showcase
Topic: Gambas Function sorter
Replies: 8
Views: 8423

Re: Gambas Function sorter

EDIT: I have added "Groups" to it. groups are.... By default.. FileMap.GroupOrder = [GRP_Static, GRP_Hidden, GRP_Other, GRP_Event, GRP_Property] GroupOrder[] can be rearranged like this.. FileMap.GroupOrder = [GRP_Static, GRP_Hidden, GRP_Event, GRP_Property, GRP_Other] GroupOrder[] does no...
by BruceSteers
Wednesday 19th January 2022 4:33pm
Forum: Project showcase
Topic: Gambas Function sorter
Replies: 8
Views: 8423

Re: Gambas Function sorter

PJBlack wrote: Wednesday 19th January 2022 11:51am Image
Do you not have the latest gambas?

Okay just for you dude I've removed the FileBox and used a Buttonbox instead

plus there's a few other upgrades...
by BruceSteers
Wednesday 19th January 2022 3:46am
Forum: Project showcase
Topic: Gambas Function sorter
Replies: 8
Views: 8423

Re: Gambas Function sorter

I have been a naughty boy and snuck the FileMap.class into my gambas IDE Editor ;)

by BruceSteers
Wednesday 19th January 2022 3:46am
Forum: Project showcase
Topic: Gambas Function sorter
Replies: 8
Views: 8423

Gambas Function sorter

Darn my code becomes a mess. So i was working on a function sorter. I then integrated the code into my gambas :) Attached is the test proggy. Screenshot at 2022-01-19 03-25-54.png How it works... You load a gambas source code into it and it analyses the text... Anything in the global space above the...