Cyrillic for to-do list

Started by OlegAney on 2-May-2016/2:32:32-7:00
I need to add new tasks in Russian to my Rebol to-do list window. But it seems impossible. Can I fix it? The code for the programme is simple: R E B O L [title: 'Personal Calendar/Scheduler'] write/append %mycal '' forever [ if none = d: request-date [quit] view center-face layout [ text bold form d a: area form select (l: load %mycal) d btn 'Save' [ save %mycal head insert l reduce [d a/text] unview ] ] ]
I wonder whether it is all about encoding and decoding to and from UTF-8 strings?
R3-GUI could perhaps do it? http://stackoverflow.com/questions/22216359/does-rebol-3-r3-gui-field-support-non-ascii-string-input?rq=1
@ Ebbot Thank you for the link. That could be a solution to the issue. I've been browsing the link and other similar sites but can't find such thing as Rebol3 with GUI that runs on Linux machine. Does R3 with GUI for Linux exist?
http://www.atronixengineering.com/downloads/ "Recent improvements include enabling full Linux support for graphics and the clipboard" I have not used it myself, so...
It works. UTF-8 characters look fine! Thank you. I think a little adjustment to my code will run my 'todo list' programme.

Reply