Search found 1565 matches

by BruceSteers
Saturday 22nd January 2022 8:03pm
Forum: Lounge
Topic: pluma like "External Tools" in my gambas :) :)
Replies: 11
Views: 13596

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

Ive negated the need for the code sorting addon i did now as i can run the code sorter through the External Tools feature.
:D
by BruceSteers
Saturday 22nd January 2022 5:30pm
Forum: Lounge
Topic: pluma like "External Tools" in my gambas :) :)
Replies: 11
Views: 13596

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

Have you thought about loading gambas scripts as plugins for the tools. Once loaded as a plugin the scripts would have direct access to all parts of the ide. I think that's going a bit high tech , i like this low-brow thing i have done, it's not too invasive on the IDE, just a menu and a way to exp...
by BruceSteers
Saturday 22nd January 2022 7:01am
Forum: Component Showcase
Topic: Joystick Class
Replies: 5
Views: 9538

Re: Joystick Class

Aah sorry fella i just thought maybe you had not seen it and maybe it would be a handy thing to check out to improve your own. My guess would be development stopped at gambas hq due to a lack of interest. if you have a working easy to use class i'd suggest getting on the gambas mailing list and see ...
by BruceSteers
Friday 21st January 2022 7:45pm
Forum: Component Showcase
Topic: Joystick Class
Replies: 5
Views: 9538

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: 13596

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: 13596

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: 8528

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: 13596

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: 8528

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: 8528

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...