vote up 3 vote down star
1

Can anyone recommend a C++ wrapper for ncurses?

flag

6% accept rate
I'm curious, why would you need C++ wrappers? Why not use the C API directly? Just wondering :) – hhafez Feb 13 at 1:11
Sure if wrappers don't exist. But if wrappers do exist why not use them. I suspose you just use assembler for everything? – BubbaT Feb 13 at 2:22
it is a bit of a stretch comparing going from C to C++ with going from C to assembler isn't it? – hhafez Feb 17 at 10:18
If you think so, then you really don't klnow C++. – BubbaT Feb 21 at 7:25
Please try to be more friendly. You're much more likely to get useful responses, at the very least. – JoshJordan Jul 25 at 18:30

2 Answers

vote up 1 vote down

Try this source forge project. It's an NCurses development kit for C++

http://ndk-xx.sourceforge.net/

link|flag
And you have used this? – BubbaT Feb 13 at 1:59
Looks kinda abandoned to me. – Ryan Graham Feb 19 at 4:02
Yep Ryan, that's why I asked. – BubbaT Feb 21 at 6:34
vote up 0 vote down

I've written my own a few years back... I did so because an ncurses-compatible library was installed in Linux, but not under Win32. (I could use PDCurses, but at the time I couldn't prevent PDC_breakout() from stopping a refresh() operation without popping open the source code.)

This wrapper was written within 7 days, as part of a rapid development. As such, it has a few (removable) dependencies on non input/output datatypes specific to a program, but they can be safely removed.

Basically, I have two major functions - initialization, which calls all the curses initialization functions and colour definitions that I don't plan on tweaking later, and the refresh function, which transfers the "internal" display buffer to the output.

Overall, you may feel more comfortable creating in index card or cheat sheet containing "initscr(); cbreak(); noecho(); move(y,x); addch(ch); endwin();", but if you want to use my wrapper, you can message me or download it from here as long as you abide by the Creative Commons license.

link|flag
Thank you but no. This is a personal project, and I started to write a streams based version. Should only take me a few more hours to get a basic skeleton done. – BubbaT Feb 21 at 7:24

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.