Search found 554 matches

by chris
Tue Oct 20, 2015 11:59 am
Forum: AmigaOS Feature Requests
Topic: 11 Requests / Improvements
Replies: 9
Views: 9180

Re: 11 Requests / Improvements

Is KeyShow a "toolbox" window? In which case it shouldn't make Notepad or the gadget lose focus. Also 11) IIRC Hans was looking into writing an improved animation datatype which would be able to support modern video formats many years ago. I assume he got distracted by other things (driver...
by chris
Mon Sep 28, 2015 7:59 pm
Forum: SDK Support
Topic: CLIB2 failures
Replies: 19
Views: 28946

Re: CLIB2 failures

You are best off posting this bug to the clib2 project: http://sourceforge.net/p/clib2/bugs/
The SDK simply provides a pre-compiled version.
by chris
Thu Sep 24, 2015 11:58 am
Forum: AmigaOS Feature Requests
Topic: Tabs for Notepad
Replies: 12
Views: 13564

Re: Tabs for Notepad

Fix amigaguide.library whilst you're there Yeah, that annoing thing which are here for 10 years : broken copy+paste by mouse from amiga guide documents ! I just can't mark by mouse portions of text in amiga guide to be able to ctrl+c it for later ctrl+v. It was discussed few times, it was reported ...
by chris
Wed Sep 23, 2015 1:36 pm
Forum: AmigaOS Feature Requests
Topic: Tabs for Notepad
Replies: 12
Views: 13564

Re: Tabs for Notepad

trixie wrote:Well I'm volunteering to do all those mundane little jobs the Team can never find time for :-) If that requires signing a contract, very well, that's no problem.
Fix amigaguide.library whilst you're there ;)
by chris
Fri Sep 18, 2015 11:03 am
Forum: General AmigaOS
Topic: Bug in Multiview Search requester
Replies: 43
Views: 32727

Re: Bug in Multiview Search requester

reported as bug 9302 Thanks. I knew it was one of those things that show up at random, but I got it more often than not. Thanks for confirming and raising. Since you would normally use <RAmiga>-N (find next) after the first search, most people would never see this bug. It's always a good idea to fi...
by chris
Fri Sep 18, 2015 10:46 am
Forum: AmigaOS Feature Requests
Topic: Intuition Menu image alignment
Replies: 9
Views: 8274

Re: Intuition Menu image alignment

I would think the glyph would always be the same (hard coded in) No, glyphs are scaleable and in the case of menus they are scaled based on the font height. That would break selectable items that have their label entirely defined as a BOOPSI image... Since this is a new MenuClass, don't allow this ...
by chris
Tue Sep 15, 2015 4:19 pm
Forum: AmigaOS Feature Requests
Topic: Intuition Menu image alignment
Replies: 9
Views: 8274

Re: Intuition Menu image alignment

broadblues wrote:I'd would have like the MA_image to be to left of the checkbox, but that's not the way it works so....
That would break selectable items that have their label entirely defined as a BOOPSI image...
by chris
Mon Sep 14, 2015 12:22 pm
Forum: AmigaOS Feature Requests
Topic: Intuition Menu image alignment
Replies: 9
Views: 8274

Re: Intuition Menu image alignment

Like I said: do it just like the shortcut key column. Grow/shrink as needed. If no images, then 24 is the "default" indentation. When the layouting is done, the empty space left should be the width of the widest image. If there are no images in the menu, no space should be left. The check...
by chris
Fri Sep 11, 2015 2:32 pm
Forum: General Developer Support
Topic: Splay trees
Replies: 2
Views: 2651

Re: Splay trees

What I need to be able to do is deallocate some resources when the tree is destroyed. I can't see any way of adding a callback when node are deleted, so this causes a big memory leak problem. Why not just use a memory pool for these allocations that you then free just after freeing the splay tree? ...
by chris
Thu Sep 10, 2015 11:21 pm
Forum: General Developer Support
Topic: Intuition Menu Class
Replies: 25
Views: 17147

Re: Intuition Menu Class

mritter0 wrote: Is there something special about it? The ID would be 0 in the enum
That's likely your problem - 0 is invalid. You need to start at 1.