Jump to content

mael

Members
  • Content Count

    29
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by mael

  1. Thanks. There is definitely a structure and ranges that are assigned the same value. But there is no special documentation in the Unicode standard that would go beyond what you can directly deduce from the mapping available in Delphi. I actually started with the standard, then looked for efficient encodings. The standard vaguely suggests using a data structure like a trie. The Unicode documentation itself only lists every character and gives it a matching category. The Delphi implementation apparently uses some kind of Hashmap. But I haven't been able to figure out the "inverse function" yet, to create the table. Edit: I have looked into writing my own hashing function, assuming the division of the original key into three parts (one 13 bit key, and two 4 bit keys) as the original RTL code does. I could reproduce the values after a while, eventhough it seems the RTL wastes a bit of value range. I will update this post when I found out the final solution.
  2. Hi, When you make a code block it defaults to HTML syntax highlighting. For a Delphi forum it would be better if Pascal was selected by default.
  3. I briefly browsed through the list of posts, but didn't find an obviously similar one.
  4. mael

    Property editor - on the finest art

    That's very useful! I always wanted to have an option that would keep certain properties "pinned", no matter what control is selected.
×