Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Changes In Branch NewWidgets Through [ffeeb8d937] Excluding Merge-Ins
This is equivalent to a diff from 10fcf3a92e to ffeeb8d937
|
2015-11-21
| ||
| 17:14 | Mouse selection for TEdit control and also caret problems fixed (?). check-in: a209b18030 user: johnfound tags: NewWidgets | |
| 11:37 | Work on TEdit. Procedure BlendSolidRect has been implemented. check-in: ffeeb8d937 user: johnfound tags: NewWidgets | |
|
2015-11-20
| ||
| 21:24 | Some trick with the message processing in order to stop keyboard buffer overflow on slow machines. check-in: 8cc10ecdd8 user: johnfound tags: NewWidgets | |
|
2015-05-26
| ||
| 18:36 | A branch for experiments with new architecture for the GUI widgets. The idea is to not use the OS provided windows, but to make our own windows structure and to keep the OS provided windows only for the top-level windows. This solution will be biger and more complex, but will be faster, more portable and allows full featured GUI even for systems with rudimentary windows features. check-in: 681971e932 user: johnfound tags: NewWidgets | |
|
2015-03-11
| ||
| 12:44 | Work on the font and text handling in Linux using FreeType library. Closed-Leaf check-in: 10fcf3a92e user: johnfound tags: FreshLibGUI | |
|
2015-02-24
| ||
| 18:04 | Fixed some issues with font rendering in all modes: mono, gray, lcd and rgba(not tested). The blending of the alpha values is now properly implemented. Some MMX optimizations. check-in: 6fc7f25125 user: johnfound tags: FreshLibGUI | |
Changes to freshlib/TestFreshLib.fpr.
cannot compute difference between binary files
Added freshlib/_doc/CheckListFresh3.txt.
|
Changes to freshlib/data/all.asm.
1 2 3 4 5 6 7 8 9 10 | 1 2 3 4 5 6 7 8 9 10 11 | + | include 'i18n.asm' include 'arrays.asm' include 'strlib.asm' include 'base64.asm' include 'uconfig.asm' include 'memstream.asm' include 'markdown.asm' include 'hashes.asm' include 'bitstream.asm' include 'bytestream.asm' |
| ︙ |
Changes to freshlib/data/arrays.asm.
| ︙ | |||
649 650 651 652 653 654 655 | 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 | - + - + | ; Frees all elements of the list calling ; [FreeProc] on every element. ; (proc FreeProc, ptrItem) ; Frees the array of items ;-------------------------------------------- proc ListFree, .ptrList, .FreeProc begin |
Added freshlib/data/base64.asm.