Search found 5443 matches

by airsoftsoftwair
Sat Jun 09, 2018 11:55 am
Forum: Wishlist
Topic: Changing size could also change graphics automatically
Replies: 2
Views: 2631

Re: Changing size could also change graphics automatically

Sure, it's doable but it's currently not in the agenda because it's too special interest. The best idea is to implement this in script code by just using a list with brushes of different sizes and then return the correct brush for the needed size. Should be possible pretty easily in script code.
by airsoftsoftwair
Sat Jun 09, 2018 11:53 am
Forum: RapaGUI
Topic: Modal Dialogs in Linux Ubuntu
Replies: 34
Views: 21979

Re: Modal Dialogs in Linux Ubuntu

Please post some very brief sample code and also specify your exact Ubuntu version.
by airsoftsoftwair
Wed Jun 06, 2018 5:49 pm
Forum: General programming
Topic: Linux x86 Executables launched from a Linux Shell
Replies: 2
Views: 3369

Re: Linux x86 Executables launched from a Linux Shell

Actually, it should be working without an X server when not opening any windows. I'll check.
by airsoftsoftwair
Wed Jun 06, 2018 5:44 pm
Forum: General plugin questions
Topic: Compress file with XAD or ZIP
Replies: 5
Views: 6083

Re: Compress file with XAD or ZIP

zip.AddFile() won't do anything except adding the file to an internal list. Compression is done by zip.CloseArchive() and this function also allows you to monitor progress.
by airsoftsoftwair
Wed Jun 06, 2018 5:42 pm
Forum: RapaGUI
Topic: Modal Dialogs in Linux Ubuntu
Replies: 34
Views: 21979

Re: Modal Dialogs in Linux Ubuntu

Does the "Dialogs" example that comes with RapaGUI work?
by airsoftsoftwair
Sat Jun 02, 2018 12:25 am
Forum: Wishlist
Topic: SSL / https
Replies: 4
Views: 5731

Re: SSL / https

Yes, this is already being worked on and will definitely come. Although on MorphOS you'll have to live with 68k SSL because AmiSSL v4 isn't available in a MorphOS native version.
by airsoftsoftwair
Sat Jun 02, 2018 12:25 am
Forum: Amiga IDE questions
Topic: Amiga/MorphOS and utf
Replies: 1
Views: 6346

Re: Amiga/MorphOS and utf

No, Cubic unfortunately doesn't support UTF. I talked to Dietmar about it and unfortunately, he's not going to do it, even though it really wouldn't be much work for basic UTF-8 support through codesets.library or charsets.library. It could be hacked into Cubic by hacking xpkmaster.library which Cub...
by airsoftsoftwair
Fri Jun 01, 2018 4:03 pm
Forum: RapaGUI
Topic: fixes size windows
Replies: 1
Views: 2382

Re: fixes size windows

Set Area.FixWidth and Area.FixHeight to TRUE for all resizable widgets in your window and then the window won't be sizable any longer.
by airsoftsoftwair
Fri Jun 01, 2018 4:00 pm
Forum: Polybios
Topic: Loading PDF on 68k?
Replies: 10
Views: 11051

Re: Loading PDF on 68k?

No, the PDF renderer is currently not supported on 68k. I'm waiting for Bebbo to fix this issue. As soon as there is a proper 68k gcc with C++11 and wide char support, the PDF renderer can be made available on 68k as well.
by airsoftsoftwair
Tue May 29, 2018 9:35 pm
Forum: RapaGUI
Topic: Textentry size
Replies: 4
Views: 4069

Re: Textentry size

This is not easily possible. Character widths of typical UI fonts used by the text entry widget aren't monospaced so setting a certain character size for them won't make sense anyway because character widths differ. It would only make sense for monospace fonts but then we'd also need an option to fo...