Tagged Questions

The ncurses package is a subroutine library for terminal-independent screen-painting and input-event handling.

learn more… | top users | synonyms

11
votes
4answers
7k views

Is ncurses available for windows?

Are there any ncurses libraries in C/C++ for Windows that emulate ncurses in native resizable Win32 windows (not in console mode)?
10
votes
3answers
2k views

curses-like library for cross-platform console app in python

i'm looking into developing a console-app in python which should be able to run under windows as well as linux. for this, i'd really like to use a high-level console library like curses. however, as ...
7
votes
4answers
188 views

ncurses api with the D Programming Language

I am trying to teach myself AI using neural networks. Long story short, I wanted to create a simple graphic that would display what is happening in my program using ncurses. The tutorial that I am ...
7
votes
6answers
3k views

What's the best way to get text user-interfaces (ncurses-like) functionality in Java?

I need to implement a console application (possibly in Java) with ncurses-like functionality (such as navigating a menu and redrawing the whole screen). The only solutions that I can find to do this ...
6
votes
3answers
101 views

embedded software maintainability - configuation

I am developing a embedded software that is meant to run on two to three different family of micro controllers. For now we have makefiles that reads the configuration switches and does compilation. ...
6
votes
3answers
2k views

Getting 256 colors out of ruby-ncurses

I've got 256 colors working great in my terminal (test scripts here), but it stops working when I use ncurses (via Ruby-ncurses). Printing the escape sequences given on that page works fine, but when ...
5
votes
1answer
59 views

Library for Dialogs and Widgets in Win32 Console Application ( in C )

I've seen a lot of console apps (that run on windows) having some dialog boxes and widgets inside them. Say for example: A there are a lot more. Now my question: Is there any library (in C) for ...
5
votes
1answer
89 views

How can I end ncurses without ending the C++ program?

I've been trying to make an ncurses program that will end the ncurses mode at a certain point, and resume in normal terminal mode, but still keeping the program running. Is it possible? endwin(); ends ...
5
votes
1answer
125 views

A slider for curses based UI

As a learning project, I'd like to set-out to make an ncurses-based UI for a program I had in mind, written in python. After looking at urwid documentation, I cannot see anyway to create a simple ...
5
votes
4answers
97 views

More advanced command-line interfaces

I've been working with C for a while and am reasonably proficient at simple command-line interfaces. I've also had a play with the curses library, for terminal applications that do more than write ...
5
votes
1answer
762 views

Where do stdout and stderr go when in curses mode?

Where do stdout and stderr go when curses is active? import curses, sys def test_streams(): print "stdout" print >>sys.stderr, "stderr" def curses_mode(stdscr): test_streams() ...
5
votes
2answers
3k views

Python library for (n)curses widgets

While Python's standard library has a module for curses, that seems to require a lot of fairly low-level handling. Is there a simpler way to get started with writing a basic curses UI which includes ...
5
votes
4answers
2k views

Receiving key press and key release events in Linux terminal applications?

I would like to write a simple C program that will perform different actions based on both "key down" and "key up" events. This program will be run from inside rxvt. What library or mechanism should ...
5
votes
2answers
1k views

Using GNU Readline; how can I add ncurses in the same program?

The title is a bit more specific than my actual goal: I have a command-line program which uses GNU Readline, primarily for command history (i.e. retrieving previous commands using up-arrow) and some ...
5
votes
5answers
978 views

NCurses initialization without clearing the screen

I am writing a program that's similar to a shell. Once started up, there's a prompt and you enter in some app-specific commands. So far this works just fine. However, I want to add support for ...
4
votes
2answers
97 views

Python ncurses, CDK, urwid difference

What's the difference between these 3? As far as I understand it they both provide binding to curses which is the C library for terminal text-based UI. I currently have no knowledge of any of the 3 ...
4
votes
1answer
87 views

Last character of a window in python + curses

The following program raises an error: import curses def test(scr): top = curses.newwin(1, 10, 0, 0) top.addstr(0, 9, "X") curses.wrapper(test) It looks like whenever I try to use addstr() to ...
4
votes
1answer
205 views

hscurses or ncurses, which one to use?

I'm writing a program which needs a UI. The program is in haskell. For the UI, I think of using ncurses library. Should I use hscurses library for haskell and write the UI in haskell or should I use ...
4
votes
2answers
221 views

Keys not being interpreted by ncurses

I have a curses based application (WordGrinder). I've just had a bug report from a user saying that some keys aren't working properly on his keyboard. On investigation, he's right. The keys in ...
4
votes
2answers
223 views

Specify arch in GHC?

I'm writing a multiplatform ncurses text adventure game. The required C library, ncursesw, is configured for x86, but my OS is Mac OS X 10.6.6 x86_64. ghc --make -o rogue rogue.hs [1 of 2] Compiling ...
4
votes
2answers
736 views

Edit text using Python and curses Textbox widget?

Has anybody got a working example of using the curses.textpad.Textbox widget to edit existing text? This is, of course, in a Linux terminal (e.g. xterm).
4
votes
4answers
248 views

How to get input from keyboard while doing other things at the same time?

I'm using C (gcc) and ncurses, to make a program that will be monitoring data coming from the serial port. The program has a big while, where it reads the data coming from the port and at the same ...
4
votes
2answers
176 views

C - going from ncurses ui to external program and back

I'm making a program that displays some info in ncurses, and then opens vim (using system) to allow the user to edit a file. After vim is exited, though, the ncurses screen won't redraw. refresh and ...
4
votes
4answers
546 views

calling calloc - memory leak valgrind

The following code is an example from the NCURSES menu library. I'm not sure what could be wrong with the code, but valgrind reports some problems. Any ideas... ==4803== 1,049 (72 direct, 977 ...
4
votes
2answers
345 views

Curses for PHP on Windows

Is there a Windows equivalent of ncurses for PHP? I've created a CLI script and want to display various statistics (currently processed record, completion percentage etc.) in a nice way, without ...
4
votes
4answers
598 views

NCurses-Like System for Windows

Are there any C++ libraries similar to Ncurses, but for Windows? It seems there are no ports of Ncurses and I need a really good display system like it. Any suggestions? Cross-platform is a plus.
4
votes
5answers
412 views

Storing an integer into a char* in C++

I'm writing some code that returns an integer, which then needs to be outputted using printw from the ncurses library. However, since printw only takes char*, I can't figure out how to output it. ...
4
votes
4answers
809 views

ncurses novice - starting out with GNU C

A simpler life I am returning to C to help reinvigorate my programming lobe. The last time I learned to program I was at college working with Turbo C on MSDOS. Simple ASCII animations became an ...
4
votes
4answers
1k views

how can I write an ANSI C console screen buffer?

I'm working on making an ASCII based game, and everywhere I look people are saying to use Console.Write() from MSDN, which is dandy and all if you're using Windows, but I'm not. And thus, I'm trying ...
4
votes
3answers
871 views

What's the difference between -lcurses and -lncurses when compiling C using ncurses lib?

I'm learning C and playing with the ncurses lib. I have seen references to both -lcurses and -lncurses but I have yet to find any differences (both work when compiling). Appreciate the help!
4
votes
2answers
4k views

C++ wrappers for ncurses?

Can anyone recommend a C++ wrapper for ncurses?
3
votes
2answers
106 views

Python curses - can't get TAB key

I need to catch TAB key in Python. For any other keys I do: x = self.myscreen.getch() if( x == curses.KEY_DOWN ): # and so.. What's the constant for TAB key? I searched here (bottom of page) and ...
3
votes
2answers
438 views

Change Terminal Font Size with C++

I'm doing a small project for fun in C++ (in Ubuntu 11.04) and the program is text-based (all in the Gnome terminal). I'm using the ncurses library to change the font color, but I also want to print ...
3
votes
2answers
130 views

printing to right side or bottom side of terminal using (n)curses

What's the standard way to print to the right side and/or bottom side of the terminal window using n/curses? Here's a little sketch: Terminal window: ...
3
votes
2answers
58 views

How can I find the value of LC_XXX locale integr constants so that I can use them with cffi

I have this code: (define-foreign-library libc (:unix "libc.so.6")) (use-foreign-library libc) (defcfun "setlocale" :pointer (category :int) (locale :pointer)) and I want to do: ...
3
votes
3answers
187 views

Coloured texted in console/terminal

How would I do this with ncurses in C++ simply and would it work or at least not break it in mingw. Are there any other libraries that can do this? I know that you can do it by ASCII characters but ...
3
votes
1answer
250 views

Using node-ncurses client-side through server-side script?

I wrote a small node.js netServer chat application. I want to work on creating an ncurses user-interface for it. Problem is, the chat application is written server-side, and people connect via netcat, ...
3
votes
1answer
453 views

Create a function to check for key press in unix using ncurses

I have been looking for an equivalent to kbhit() and I have read several forums on this subject, and the majority seems to suggest using ncurses. How should I go about checking if a key is pressed in ...
3
votes
2answers
1k views

Linux: Pipe into Python (ncurses) script, stdin and termios

Apparently this is almost a duplicate of "Bad pipe filedescriptor when reading from stdin in python - Stack Overflow"; however, I believe this case is slightly more complicated (and it is not Windows ...
3
votes
2answers
339 views

NCurses Refresh

I have a small ncurse program I'm running, but the output doesn't seem to show up unless I stick the wrefresh() in a while loop. Is there some buffering going on or something? I tried other refresh ...
3
votes
2answers
288 views

Where can I find a good book on writing curses applications with perl?

I have been in search of a good way to write curses apps. So far I have found Curses::UI and Curses::Toolkit, but none of them are as maleable as I want them to be. Now I'm looking to write my app ...
3
votes
1answer
4k views

NCurses and Perl, any guides?

I need to use NCurses, with Perl. I found some very short bits of text about it but no example at all. Is there anyone aware of any existing guide online? Thanks!
3
votes
3answers
219 views

Creating terminal based installer/wizard

I would like to create a terminal based installer/wizard. Ideally, it'd be like the Ubuntu server installer, or the Arch Linux installer - a ncurses (?) heavy GUI with lots of form and arrow key ...
3
votes
3answers
159 views

If statement not effective

void spriteput(int x,int y, int stype) { char sprite1[5]="OOOO"; char sprite2[5]="OOOO"; char sprite3[5]="OOOO"; char sprite4[5]="OOOO"; if (stype == 1) { char ...
3
votes
3answers
365 views

In-place progress output in the terminal or console

When you run git clone, it updates progress in place. For example, the percentage of the objects received changes in place. user@athena:~/cloj/src$ git clone git://git.boinkor.net/slime.git ...
3
votes
3answers
2k views

Python on AIX: What are my options?

I need to make some Python applications for a work project. The target platform is AIX 5.3. My question is: What version of Python should I be using? My requirements are: The Python version must ...
3
votes
2answers
245 views

ncurses to external shell and back messing with keys

I have this ncurses application that is doing the standard recipe for temporarily dropping out of ncurses, running an external editor/shell/whatever, and then dropping back to ncurses when it's done. ...
3
votes
1answer
568 views

256 colors, foreground and background

This is a tale of two scripts and is related to a previous question. The two scripts are at http://gist.github.com/50692. The ansi.rb script displays all 256 colors on all 256 background colors. The ...
3
votes
3answers
4k views

Console interface tutorials and tips (pdcurses)

I'm looking for tutorials on using PDCurses library. Unfortunately there is text only documentation, which is more like function reference. Are pdcurses similar enough to ncurses to use ncurses ...
3
votes
3answers
2k views

curses API

Where can I find a complete reference of the ncurses C API?

1 2 3 4 5