nana
nana copied to clipboard
listview?
I'm considering building a new portable version of debugview++ https://github.com/CobaltFusion/DebugViewPP
using nanapro, a couple of questions:
-
is there a virtual listview widget? (where only the stuff currently on the screen is actually in memory), I deal with 10 million+ of lines of strings, so keeping that in memory will quickly run out of memory.
-
can I use llvm-clang to compile with nanapro ?
-
can I statically link everything ? I believe the footprint of the hello world is quite small (1.2mb) but I would like to keep it in one executable.
1, no virtual mode. IMO, it is easy to create your own listview that supports virtual mode. 2, yes 3, yes
That sounds good, I dont mind creating my own, do you have an example how to draw a completely custom control using line/curve primitives?