"wxncurses" 0.20081206 proof of concept by Jan Engelhardt A tiny proof-of-concept package (37KB) that does a bit of layouting with a few widgets and draws the thing. The codebase builds on top of an existing wxWidgets install and as such currently uses the "wxnc" prefix (e.g. wxncSizer) to not clash with wx's own class definitions. The API is roughly modeled upon wx's of course, and test.cpp can be compiled against the native wxWidgets toolkit too (which is done to ensure it goes in line with the wx API). I have dramatically cut back on some functionality so as to not needlessy reimplement things already available in wx, especially event handling and the layout magic. Requirements: - ncurses 5.6 (olde unix curses won't do it) Nits: - vz might warn about coding style issues (uses std::list.. - hey it's a demo) Limitations: - obviously incomplete - no event processing or so, just layouting and display - only BoxSizer available as sizer - only StaticText, Button, CheckBox widgets - only MenuBar, no MenuItems - only one field in StatusBar