Tagged Questions

0
votes
1answer
42 views

NCURSES stdin in C

For some reason ncurses does not like stdin, I know I could use instead getstr(), here it is what I'm doing so far, while (fgets(str, BUF, stdin) != NULL) { printf("input some …
2
votes
1answer
33 views

Erlang: Building Issue of not finding Ncurses on Solaris 10

I am trying to build Erlang on Solaris 10. The build process fails with the message that it can not find libncurses.so.5. I have installed libncurses from sunfreeware.com, which I …
1
vote
4answers
124 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 anima …
0
votes
1answer
55 views

Any likely causes of a double-free in ncurses?

I have an ncurses app that does the following, sometimes instantly after launch, sometimes after some fiddling. malloc: *** error for object 0x100300400: double free Program recei …
0
votes
1answer
7 views

How can I add to the terminal’s scrollback using ncurses?

I'm writing an app using ncurses which displays the status of tests running on multiple machines. It displays several progress bars at the bottom of the screen, and a failure log …
1
vote
1answer
21 views

ncurses and stdin blocking problem

I have stdin in a select() set and I want to take a string from stdin whenever the user types it and hits ENTER. But select is triggering stdin as ready to read before ENTER is hi …
0
votes
2answers
69 views

Problem compiling Python 2.6.4 on AIX 5.3

I'm trying to build Python 2.6.4 on AIX 5.3. I'm running configure like this: ./configure --prefix=/home/chenf/python --disable-ipv6 --disable-shared --with-libs='/usr/lib/libncu …
1
vote
6answers
224 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 …
1
vote
3answers
82 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 P …
1
vote
1answer
340 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 …
0
votes
2answers
96 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 curse …
2
votes
4answers
156 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 …
1
vote
1answer
199 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 bac …
0
votes
4answers
209 views

Curses getting arrow keys

In trying to get input from the arrow keys via curses (ncurses) it won't catch as KEY_UP etc. I used the keypad function with a true argument but getch still returns an escaped se …
3
votes
4answers
165 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. A …

1 2 3 next
15 30 50 per page