- 28 Nov, 2015 1 commit
-
-
Robert Sprowson authored
Both the TextArea gadget and ScrollList were outputting an unhelpful white rectangle and mysterious black rectangle when asked to plot the gadget prototype (eg. in the gadget palette in ResEd). The black rectangle turned out to represent a scroll bar, though it was the wrong width. Changed to plot a 2D scrollbar (ala RISC OS 2) then overlay a virtual icon with the name of the gadget type. main.c: Relocate helper functions into glib. Return 'Bad SWI' for unknown subreasons. glib.c/glib3.c: Remove various unused functions. Added new function to plot a grey scrollbar from nested rectangles. TextArea.c: Add a vertical, or horixontal, or both, scrollbar plus the label "TextArea". ScrollList.c: Add a vertical scrollbar plus the label "ScrollList". Requires Common-0_25 for the colour defines. Tested in !ResEd in various eigenfactor modes. Version 0.40. Tagged as 'Gadgets-0_40'
-
- 30 Aug, 2013 2 commits
-
-
Robert Sprowson authored
Supporting code borrowed from 'Iconbar' toolbox module. Tested in a ROM build and RAM build, triggering one error message and checking the dynamic area in task manager. Version 0.37. Tagged as 'Gadgets-0_37'
-
Robert Sprowson authored
For some reason this toolbox module was unique in linking against the public toolboxlib rather than the internal one, this meant having to carefully tippy toe around not mixing header files (as they contain similar but differently named definitions). A massive search and replace job. Tested briefly using ResEd/ResTest and a textarea and scrolllist in a ROM build. Requires Common-0_21. Version 0.36. Tagged as 'Gadgets-0_36'
-
- 14 Jan, 2012 1 commit
-
-
Robert Sprowson authored
The last change meant it was no longer being generated, so ammended the code to not need it in line with all the other toolbox modules. Version 0.34. Tagged as 'Gadgets-0_34'
-
- 25 Jun, 2011 1 commit
-
-
Jeffrey Lee authored
Detail: c/ScrollList, c/TextArea - ScrollList_SetFont and TextArea_SetFont now accept font handles instead of just font names. The handles are handled in the same way as the Window module, i.e. the handle will be managed and freed by the TextGadgets modules. Fixes bug #212. c/ScrollList, c/Scrollbar, c/TextArea - Fix handling of Toolbox_ObjectDeleted events. Original code would corrupt the object lists when deleting items, and reallocate much more memory than was actually needed. Fixes bug #214 c/MemMan - Fix grow_handlers to not leave handle_list as NULL if the realloc fails. Fixes bug #216. c/MemMan, c/TextArea, c/TextMan, h/MemMan, h/TextMan - Changed how the 'Handle' type is handled. Instead of MemMan giving out direct pointers to Handle instances, it now gives out identifiers (HandleId). These identifiers are then converted to Handle pointers via get_handle whenever the contents need to be accessed. This allows the handle_list to be safely realloc'd without breaking all the existing Handle pointers. Fixes bug #217 c/MemMan - Reduced HDNLE_GRW_BY from 1000 to 128 to save a bit of memory Admin: Module compiles and runs, but actual functionality is untested. Fixes bugs 212, 214, 216, 217. Version 0.32. Tagged as 'Gadgets-0_32'
-
- 28 Feb, 2010 1 commit
-
-
Robert Sprowson authored
Previously, a number of errors were contructed as automatic variables then returned to the caller - potentially accessing stale stack area. All error blocks are now held in ROM and cast from there. Error numbers are now not &00000000 or &20202020, using the allocated base - requires 'Common-0_15'. Trimmed some unused debugging code out, saves about 3k. Renamed C++ clashing variables to stop the compiler moaning. Implemented feature request to accept the empty string "" as no font handle in _SetFont calls. At some point, this module needs internationalising. Version 0.31. Tagged as 'Gadgets-0_31'
-
- 18 Feb, 2003 1 commit
-
-
Robert Sprowson authored
NEWDELETE switch like RISCOSLib is now). Key 8 deletes left Key 127 deletes right The Copy key does nothing (home and end aren't implemented it seems). Fix from Kevin for it claiming a Dynamic area of maximum size - greedy guts now limited to 16M. Version 0.26. Tagged as 'Gadgets-0_26'
-
- 18 Jun, 1999 1 commit
-
-
John Beranek authored
* Fixed the textarea_set/get_cursor_position methods to use the method interface as specified in docs.textarea. I wasn't returning values in R4 as it showed in the document, I am now. The fetching of the cursor position (in both the get and set calls) doesn't appear to work (always returns 0) with what appears to be the correct code to achieve this. The fixing of this is left as an exercise for the bored and very brave person...textarea internals are "interesting". * Added some description of the methods into docs.textarea Version 0.21. Tagged as 'Gadgets-0_21'
-
- 17 Jun, 1999 1 commit
-
-
John Beranek authored
TextArea_SetCursorPosition and TextArea_GetCursorPosition. * Removed a lot of unneeded comments that wrapped around changes I made a while ago. * !MkRam now enables throwback. Version 0.20. Tagged as 'Gadgets-0_20'
-
- 26 Mar, 1999 1 commit
-
-
Andrew Hodgkinson authored
Title background colour of gadgets was either undefined or set to 0; should be 2. Corrected. Would be apparent with 2D tools or any transparent tool sprite set. SELECT clicks on deselected entries in a ScrollList now deselect any other selected items before selecting the new one. Embedded window of TextArea and ScrollList now put in the right place. At create time, the sizes of the current tool sprite set is also checked; this used to be hard coded. If the tool sizes and/or Desktop scaling changes at run-time this won't be noticed yet, as no mechanism to pass Wimp messages to *external* gadgets exists in the Toolbox currently. Still, at least it gets it right the next time a new instance of the gadget is created. Flag bit ScrollList_SelectionChangingMethod_SendEvent to any of scrolllist_select_item, scrolllist_deselect_item or scrolllist_delete_items prompts them to send ScrollList_Selection to the client on completion. This can help simplify client UI code for UIs which depend on what is selected (e.g. a "Select all" button greys out if all items are selected by a keyboard shortcut - this can now all work on just the one event handler). Flag bit ScrollList_SelectionChangingMethod_OnAll to either of scrolllist_select_item or scrolllist_deselect_item tells the methods to act like a "Select all" or "Clear selection" call. This is a common client operation and it's a lot easier for the ScrollList gadget to do it than have the client iterate over all items. Supports new method ScrollList_CountItems (scrolllist_count_items veneer present in tboxlibs 0.04 or later). Returns number of entries in gadget. Avoids clumsy situation of both the gadget and the clienty keeping track of how many entries are present. Note that docs.ScrollList mis-documented some flags settings. Now fixed. Version 0.15. Not tagged
-
- 21 Oct, 1998 1 commit
-
-
Pete Goodliffe authored
Version 0.13. Not tagged
-
- 19 Jun, 1998 2 commits
-
-
Stewart Brodie authored
Changed TextArea windows to be created with the NoBounds window flag set. Version 0.11. Tagged as 'Gadgets-0_11'
-
Stewart Brodie authored
* Fixed 'long' #include directives. * Removed duplicate function prototypes from TextGadget.h (use ModHdr.h for correct prototypes). * Capability to build with pre- and post-5.16 versions of CMHG.
-
- 20 Jan, 1998 2 commits
-
-
Rob Lougher authored
-
Rob Lougher authored
Changed _insert_text to call set_caret, forcing window to scroll. Also uses more efficient insert_text. Changes to set_caret to allow invisibility.
-
- 07 Jan, 1998 1 commit
-
-
Rob Lougher authored
-
- 16 Dec, 1997 3 commits
-
-
Rob Lougher authored
Moved a MemCheck_UnRegisterMiscBlock by one line - was causing spurious memory violations to be reported by MemCheck...
-
Mark RISON authored
-
Rob Lougher authored
Fixed a couple of data aborts, made all gadgets not quit if tasks are still using them and freed all memory when they do quit.
-
- 21 Nov, 1997 2 commits
-
-
Rob Lougher authored
-
Rob Lougher authored
-
- 21 Aug, 1997 1 commit
-
-
Rob Lougher authored
-
- 03 Jul, 1997 1 commit
-
-
Piers Wombwell authored
-
- 18 Jun, 1997 1 commit
-
-
Rob Lougher authored
-
- 23 May, 1997 1 commit
-
-
Rob Lougher authored
-
- 13 May, 1997 1 commit
-
-
Rob Lougher authored
(TextGadget, etc.) and the makefiles to complete the Java ROM build under RiscOS.
-