- 14 Dec, 2019 1 commit
-
-
ROOL authored
Detail: 3 extra tokens in support of clipboard operations. Admin: Submission for Clipboard Support bounty.
-
- 10 Oct, 2015 1 commit
-
-
Jeffrey Lee authored
Detail: This restores support for Wimp_ClaimFreeMemory, via having the Wimp manage a small-ish (4MB) DA that is used to satisfy Wimp_ClaimFreeMemory requests. The Wimp will only ever grow the DA, but the DA is shrinkable, so the system should shrink it as necessary should the free pool run too low. Options/s/!Default, Options/s/32, Options/s/Ursula - Add DynamicAreaWCF option to control support for the Wimp_ClaimFreeMemory DA. Enable the option for any builds of the module destined for RISC OS 5. Options/s/!Debug - New debug option for Wimp_ClaimFreeMemory debugging (mainly DynamicAreaWCF code path) Wimp/s/Wimp01 - Add calls to create/destroy DA on startup/shutdown Wimp/s/Wimp08s - DA create/destroy implementation. DA is only used if the free pool is a PMP or the Wimp expects kernel free pool locking but the kernel doesn't support it. Modify Wimp_ClaimFreeMemory to use the DA if it's present. Admin: Tested on Raspberry Pi Restores compatibility with software which relies on Wimp_ClaimFreeMemory, e.g. GDraw module (cause of "No free memory" errors reported by many) Note that Wimp_ClaimFreeMemory is still considered deprecated and support may be removed in future OS versions. Version 5.50. Tagged as 'Wimp-5_50'
-
- 24 Jun, 2012 1 commit
-
-
Robert Sprowson authored
Messages updated to be more specific/helpful. Magic numbers for OS_File swapped to use names from Hdr:HighFSI. Version 5.15. Not tagged
-
- 28 Nov, 2002 1 commit
-
-
Ben Avison authored
Detail: * Removed Acorn/ACORN from keyboard shortcuts. * Added Red/RED/Green/GREEN/Blue/BLUE (and an attempt at German versions too) to keyboard shortcuts. * Capitalised the 'B' in -Fully3DIconBar to hint that it's necessary in the short form of the switch to *WimpVisualFlags. Admin: Not tested. Version 4.81. Tagged as 'Wimp-4_81'
-
- 29 Oct, 2001 1 commit
-
-
Steve Revill authored
Detail: The titlebar and input focus colours for the window template for error boxes is now cream (12). This is more intuitive. Builds which do not have a title bar will not look any different. Admin: Included the little utility which did the modification in Test/ResMod (as in Resources Modifier - but who cares). May be of use in future. Version 4.70. Tagged as 'Wimp-4_70'
-
- 11 Aug, 2000 1 commit
-
-
Simon Forrest authored
Detail: * Files changed include the Messages, Template and Sprite files, all of which now contain appropriate translated versions. This is a TRUNK version of the changes applied to the Bethany branch. Admin: * Sprite files contain an equivalent set of sprites to those in the UK variant; these have been rationalised recently so as to remove duplicates contained in other software components. * New file structure preserved; this is NOT a direct copy from the Bethany branch version of the Wimp. Version 4.54. Tagged as 'Wimp-4_54'
-
- 28 Apr, 2000 1 commit
-
-
Paul Skirrow authored
Detail: Title bar is not visible on the NC but it is still written to and must be indirected with 60 byte string. This fault was introduced in Wimp 4.48. Admin: Should fix customer fault 075. Untested. Version 4.49. Tagged as 'Wimp-4_49'
-
- 26 Apr, 2000 1 commit
-
-
Kevin Bracey authored
Byrne. Version 4.47. Not tagged
-
- 13 Apr, 2000 1 commit
-
-
John Beranek authored
Detail: !WinEdit appears to have corrupted the Templates file when it was editted to change the Japanese translations. Hopefully rectified this by reapplying the translation changes using !FormEd. Also changed the translation for the middle button in the error box back so that it reads "Cancel" (in Japanese of course). Version 4.46. Tagged as 'Wimp-4_46'
-
- 10 Apr, 2000 1 commit
-
-
John Beranek authored
Detail: Added Japanese translations received from customer into Messages and Templates files Version 4.45. Tagged as 'Wimp-4_45'
-
- 29 Mar, 2000 1 commit
-
-
Ben Avison authored
Detail: * New STB Sprites, Templates and Tools files imported, based upon the Lazarus UI rather than the old STB UI. * STB build now includes WIMPSymbol. * No longer attempts to use WIMPSymbol font in UTF8 builds which didn't register the font in ResourceFS. * Simplified Resources directories by assigning only a single pair of Messages files to each locale, rather than for each UI directory within each locale directory. The only code change required is to make the Wimp error box always use the "Continue" token for NC/STB builds, rather than using one of "OK" and "Continue", as with desktop builds. Admin: Not tested. Version 4.42. Tagged as 'Wimp-4_42'
-
- 07 Jan, 1999 1 commit
-
-
Kevin Bracey authored
Version 4.14. Tagged as 'Wimp-4_14'
-
- 21 Oct, 1998 1 commit
-
-
Ben Avison authored
Service_SwitchingOutputToSprite code optimised: graphics parameters are now only cached when making the first Wimp_PlotIcon call while output is switched to a sprite, and upon return to screen output after such an occurrence. All error box templates featuring "border" icons updated to have button type 0 (never). This prevents IconHigh from mistakenly allowing them to be selected. Version 4.07. Tagged as 'Wimp-4_07'
-
- 20 Oct, 1998 2 commits
-
-
Ben Avison authored
UTF-8 support from previous version switched in; additional alphabet- conditional support added as follows: * Correctly converts character index returned from Font_FindCaret into byte index into raw string. * Left-arrow, right-arrow, delete-left and delete-right now act as far as the next character boundary, instead of to the next byte. * Menu item text justification works again (it relies on overwriting spaces with hard space characters, which are two-byte characters in UTF-8). * General key handling code has been rewritten. The Wimp now has three internal key input buffers - one each for taking keyboard-generated, task-generated, and function-key-generated strings. Each input buffer is processed in chunks of one character, rather than one byte; malformed UTF-8 characters are rejected, so tasks don't have to worry about them (simplifying their character-handling code). There is also a key output buffer, to ensure that (UTF-8) sequences of Key_Pressed events are not broken up. * As a result of the above, multiple calls to Wimp_ProcessKey are now possible between calls to Wimp_Poll. Previously, this resulted in bytes getting jumbled up - making it useless for input of UTF-8 characters. * Multi-byte characters are inserted into writeable icons in one go, so you don't see a brief flicker of the "malformed character" symbol while the initial bytes are being inserted. * Multi-byte characters that don't entirely fit in a writeable icon buffer are not inserted at all. * A new validation string command ("U") can limit the contents of a writeable by number of characters, instead of bytes. This will hide the character sizes from the user interface. * Allowable characters (validation string command "A") now works on Unicode characters and character ranges. * Various other minor bugs are fixed (Wimp_ProcessKey 13 can activate a writeable menu item, Shift-arrow keys are always consistent in firing off Key_Pressed events, etc.) * Password icons supported: one symbol is displayed for each character (instead of for each byte); the display character (validation string command "D") can be any UTF-8 character; correctly displays the caret after set-caret-by-index calls, even though characters in the processed string are different width to those in the raw string, in password icons. Other changes: * The border around NC-style error boxes is resized when the error window is grown or shrunk. * Messages, CmdHelp and Template files made consistent across resource directories, including support for all Ursula features. * ShrinkableAreas turned back on in System=RCA builds. * User interface features of desktop OS builds standardised. Version 4.06. Tagged as 'Wimp-4_06'
-
Ben Avison authored
UTF-8 support from previous version switched in; additional alphabet- conditional support added as follows: * Correctly converts character index returned from Font_FindCaret into byte index into raw string. * Left-arrow, right-arrow, delete-left and delete-right now act as far as the next character boundary, instead of to the next byte. * Menu item text justification works again (it relies on overwriting spaces with hard space characters, which are two-byte characters in UTF-8). * General key handling code has been rewritten. The Wimp now has three internal key input buffers - one each for taking keyboard-generated, task-generated, and function-key-generated strings. Each input buffer is processed in chunks of one character, rather than one byte; malformed UTF-8 characters are rejected, so tasks don't have to worry about them (simplifying their character-handling code). There is also a key output buffer, to ensure that (UTF-8) sequences of Key_Pressed events are not broken up. * As a result of the above, multiple calls to Wimp_ProcessKey are now possible between calls to Wimp_Poll. Previously, this resulted in bytes getting jumbled up - making it useless for input of UTF-8 characters. * Multi-byte characters are inserted into writeable icons in one go, so you don't see a brief flicker of the "malformed character" symbol while the initial bytes are being inserted. * Multi-byte characters that don't entirely fit in a writeable icon buffer are not inserted at all. * A new validation string command ("U") can limit the contents of a writeable by number of characters, instead of bytes. This will hide the character sizes from the user interface. * Allowable characters (validation string command "A") now works on Unicode characters and character ranges. * Various other minor bugs are fixed (Wimp_ProcessKey 13 can activate a writeable menu item, Shift-arrow keys are always consistent in firing off Key_Pressed events, etc.) * Password icons supported: one symbol is displayed for each character (instead of for each byte); the display character (validation string command "D") can be any UTF-8 character; correctly displays the caret after set-caret-by-index calls, even though characters in the processed string are different width to those in the raw string, in password icons. Other changes: * The border around NC-style error boxes is resized when the error window is grown or shrunk. * Messages, CmdHelp and Template files made consistent across resource directories, including support for all Ursula features. * ShrinkableAreas turned back on in System=RCA builds. * User interface features of desktop OS builds standardised. Version 4.06. Tagged as 'Wimp-4_06'
-
- 12 Oct, 1998 1 commit
-
-
Kevin Bracey authored
Following resources updated for Ursula changes: Germany/Ursula, Japan/NC2, UK/NC2. Others will probably still need doing. Version 4.04. Tagged as 'Wimp-4_04'
-
- 01 Oct, 1998 1 commit
-
-
Kevin Bracey authored
Version 4.01. Not tagged
-
- 30 Sep, 1998 1 commit
-
-
Kevin Bracey authored
Changed to use srccommit. All conditionals on "Version" removed. Version 4.01. Tagged as 'Wimp-4_01'
-