The ncurses package is a subroutine library for terminal-independent screen-painting and input-event handling.
0
votes
2answers
35 views
How use key_name from ncurses
sorry for my bad english.
I make app in c with ncurses-5.9 lib. In docs for lib ( ncurses-5.9/doc/html/man/curs_util.3x.html ) I found what function key_name defined in curses.h, but if I include
...
3
votes
1answer
59 views
Ascii graphic interface library (ncurses-like) for emacs scripts?
Is there any interface library for emacs scripts, allowing to draw various gui in emacs buffers?
As far as I know, emacs extensions interface is limited by key-bindings and dialogues in the message ...
0
votes
0answers
26 views
NCURSES - How to identify which selection was made in C
I wanted to make a simple GUI with NCURSES. I'm using C, and Mac OS X as OS. I have the code to make the GUI, with some "buttons" and highlight selection, which can be moved with the arrow keys. ...
1
vote
1answer
32 views
Trouble porting over python-2.7 curses to python-2.4
I wrote my python code at home for 2.7, but now I'm trying to fix it to run on 2.4 here at work.
The first is hline does not work for me. I have
stdscr.hline(0,0,'=',5)
but it only prints out ...
0
votes
1answer
31 views
Curses::UI::Grid module
This is first example from perldoc
use Curses::UI;
my $cui = new Curses::UI;
my $win = $cui->add('window_id', 'Window');
my $grid =$win->add(
'mygrid', 'Grid'
-rows => 3,
-columns ...
0
votes
2answers
76 views
Printing a vertical histogram with cursor manipulation C++[ncurses][Solved w/o ncurses]
I've asked such question before but it was kinda misleading since i didn't include printing order.Since i learned whole concept changes with that i thought asking it again would be more approtiate.
...
1
vote
0answers
17 views
is there any way to resize a terminal with ncurses?
I'm trying to build a program using curses and ruby. There is a resizeterm function that changes the dimensions of the curses window resizeterm. But it does not actually resize my mac terminal window ...
0
votes
0answers
30 views
Separate STDOUT noise from ncurses
I am trying to run an ncurses GUI application on an ARM board. I am running it using the serial console ttyAMA0 port. But when I run the ncurses program, the other processes running in the background ...
1
vote
2answers
35 views
How to render a remote ncurses console?
I wanna write a remote console, working like a telnet server. User is able to use telnet to log into the server, then write some commands to do some works.
A good example for this is the console of ...
0
votes
0answers
23 views
ncurses dialog shows qqqq/xxxx lines instead of lines
dialog --version --> Version: 1.0-20051107
I have two machines, both RHEL5 linux, with identical versions of dialog.
On machine A, my dialog renders nicely. On machine B, I get the same colors and ...
1
vote
1answer
22 views
ncurses window resizing patterns
I have seen some other questions on SO dealing with window resizing, e.g., ncurses - resizing glitch
The code in that question has a for loop to redraw the contents of the window after the resize.
...
2
votes
1answer
35 views
ncurses new_menu segmentation fault
I'm having trouble creating a simple file selection in ncurses. The following code fails, valgring saying "conditional jump or move depends on uninitialised value(s) from main.cpp:122"
// Create ...
1
vote
2answers
46 views
How to effectively debug a multi-threaded curses client-server application with gdb?
I'm writing a small client/server application that uses ncurses as TUI toolkit on the clients. The clients are multithreaded, there is a thread that is used to communicate with the server(via sockets) ...
0
votes
0answers
29 views
printf-like library with color support?
I am looking for ways how I could add color support to software which I maintain. It consists of many programs and scripts, which shares single xterm terminal, and prints on it using standard ...
0
votes
0answers
31 views
cursor doesn't shift to new line after pressing enter key in ncurses
i am making a text editor program using ncurses library file.but in my program i am not able to shift the cursor to new line after pressing enter key. I am using switch case to determine which Key is ...
0
votes
0answers
29 views
terminal output in ruby without curses?
I'm working in Linux ( and konsole if that makes a sifference ) and would like to have some basic control over the screen. What I need is simple and does not need the full power of ncurses, I real ...
0
votes
1answer
34 views
Different key code behavior in xterm and curses
Running the following code to determine the correct key code for Ctrl+Down using curses gives me two different outputs (both servers are running Debian 6).
ssh server1 (wrong output):
Press a Key ...
0
votes
1answer
87 views
Undefined reference to `initscr' Ncurses
I'm trying to compile my project and I use the lib ncurse. And I've got some errors when compiler links files.
Here is my flags line in Makefile:
-W -Wall -Werror -Wextra -lncurses
I've included ...
0
votes
1answer
126 views
Background colour of player character (@) overlapping other tiles
I'm making a rogue like game using pdcurses in C++ and all it's going ok at the moment. But I'm facing a problem right now that I don't know how to solve.
Let's see a screenshot of the problem for ...
0
votes
1answer
46 views
c++ duplicate function name using ncurses library
I'm implementing Tetris game using ncurses library.
I was trying to implementing key handler class and it has member functions named timeout and getch.
key_handler.h
#ifndef KEY_HANDLER_H_
#define ...
0
votes
1answer
33 views
Refresh overlapping windows using ncurses
I create a pop-up window that overlaps other windows, I alter it and then delete it. But when I do this the background window keeps the blank spaces.
popup(){
WINDOW* backgroundWin = ...
0
votes
1answer
48 views
Reading the Device Status Report ANSI escape sequence reply
I'm trying to retrieve the coordinates of cursor in a VT100 terminal using the following code:
void getCursor(int* x, int* y) {
printf("\033[6n");
scanf("\033[%d;%dR", x, y);
}
I'm using the ...
2
votes
0answers
70 views
Cursor waits in the wrong window
I am developing a simple chat. The chat client is based on ncurses, and has two window:
The "input" window, where users enter messages.
The "output" window, where users see messages by other users.
...
0
votes
3answers
59 views
Displaying % symbol in C++ and Ncurses
does anyone know how to display the percentage % character in an ncurses-based C++ / C=based program?
I have tried using \x25 and %, but they do not work.
1
vote
1answer
69 views
C code with ncurses compiled with libtinfo dependency
I've recently written a minesweeper implementation in C using ncurses on linux; everything works fine on my pc, but if I try to give the compiled binaries to someone else they often get the error:
...
0
votes
1answer
24 views
ncurses - how the TINFO_SETUP_TERM works?
I trying to understand working of ncurses as we called initscr() for ncurses to init screen
function defined in file ncurses lib_initscr.c and tries to open terminal through newterm i.e. ...
0
votes
1answer
112 views
NCurses read from stdin to std::string, C++
I'm writing a Linux app in which I must read a password from stdin using ncurses. I can read into a C-style string with no problem, however, this poses a security risk, so I must find a way to read ...
0
votes
1answer
56 views
Is it possible to change the mouse icon from a terminal app?
Title pretty much says it all: I'm wondering whether it's possible to change the mouse cursor icon in response to feedback in a terminal app (e.g., a click event) from the ncurses library or another ...
0
votes
0answers
43 views
curses-based program for selection item from the list
Is there in the linux any program which can output results of such commands as, for example, ls, cat, grep, ps etc, by means of curses (for example as listbox)? So by means of such I would like to ...
0
votes
0answers
66 views
Need help to resolve cyclic dependencies in C++
I have a small program consisting of a server and a client. The client has a UI written using ncurses. My problem is that I can't figure out how to get my NewsClient class and ClientUI class to ...
0
votes
0answers
33 views
Can an Upstart-spawned process listen to stdin while redirecting stdout?
A multi-threaded C program 'foo' needs to be spawned by Upstart. One of the threads of foo waits for a specific key from stdin so that it may pause the other threads while performing a system call. ...
1
vote
0answers
29 views
Ncurses 'new_item' function mem leak or what am i doing wrong?
I'm making a calendar in Ncurses, which means I have to dynamically allocate and free memory. The thing is that Valgrind --leak-check=full shows memory leaks in the new_item function. Here is my code. ...
0
votes
0answers
34 views
ncurses printing to screen from mysql
Sorry I am new to the c api for mysql, and I am simply trying to use the selected output of my query as a character to be printed to my ncurses window.
I am trying this:
mysql_query(conn, "SELECT 10 ...
0
votes
1answer
98 views
Qt-creator and ncurses: initscr() not found
I am on Xubuntu x64 and I want to use ncurses in my software. This software is being build with Qt Creator 4.8. I have no problems including the ncurses.h file, but when I want to use functions of ...
0
votes
1answer
43 views
disable menu mark in ncurses menu
i'm trying to use ncurses for creating a boot menu.
i want to remove the selected item mark ( default to "-" ).
man set_menu_mark tells that i can change that string, but i cannot remove it.
any ...
2
votes
2answers
100 views
Ncurses program exits when terminal resized
When i resize my terminal window, the below program exits. Why and how can stop it?
#include <ncurses.h>
#include <unistd.h>
int main () {
initscr ();
printw ("Some text\n");
...
0
votes
2answers
68 views
Variable randomly becomes null before input is even taken
So, here is my problem. I am using ncurses, and when I press the up or down button, it says up arrow, and so I expect to move on in to my while loop, and take further input. The problem is, the ...
9
votes
1answer
211 views
Difference for ncurses between interpreted and compiled Haskell?
I have a strange problem with functions timeout and getch from the ncurses library used in Haskell. When I use them from GHCi or runhaskell, they work as expected -- getch waits for the number of ...
1
vote
1answer
99 views
Linux ncurses overwriting border created by box()
When I execute this code, the left side of the border I've created is being overwritten in the top-right box. The problem seems to be localized to this area, even though the code seems identical. How ...
1
vote
1answer
101 views
Display wchar_t using ncurses
i'm currently working on a C++ project in which I need to display some extended characters (wchar_t).
The main problem is that, even if it works fine in C (using wprintf), it doesn't work in c++ ...
1
vote
1answer
82 views
How to correctly remove menu in ncurses?
I need to know what is the correct way of removing a menu from the screen. The menu is posted inside a window I created specifically for it, see the code:
void makeMenu() {
MENU *menu;
WINDOW ...
10
votes
2answers
371 views
Haskell `ncurses` library
I would like to use a text-based UI in my Haskell program. I found some bindings for the ncurses library (see also hscurses or ncurses, which one to use?). The hscurses and nanocurses packages are ...
0
votes
1answer
72 views
Wrong key constants in ncurses
I am trying to get familiar with ncurses and I have a problem - the constants such as KEY_LEFT seem to be wrong.
For example, I'm trying to catch keyboard arrows. Should be as simple as
while (ch = ...
1
vote
0answers
81 views
Eclipse can't find 32bit ncurses library
I am running Ubuntu and need to use a 32 bit version of ncurses with my program. I downloaded ncurses-5.9 using wget from http://ftp.gnu.org/pub/gnu/ncurses/ncurses-5.9.tar.gz. I then entered:
gzip ...
0
votes
1answer
135 views
Linux Dialog Input Box Problems
I'm having a issue with the input-box on dialog. It is overlaying the text that was typed when enter is pressed. This happens wherever the cursor focus is when enter is pressed.
This is the code im ...
0
votes
3answers
78 views
C: brightyellow and brightgreen colors (ncurses)?
I have been looking for nice colors such as mc has for yellow and green.
Into ncurses, you can specify those RVB:
10.2. Changing Color Definitions
The function init_color()can be used to ...
1
vote
0answers
157 views
Building HelloWorld C++ Program in Linux with ncurses
I successfully ran sudo apt-get install libncurses5-dev
Within my Eclipse window I then try to build the following HelloWord.cpp program:
#include <ncurses.h>
int main()
{
initscr(); ...
0
votes
1answer
52 views
Tracking KEY_ENTER in Ncurses
How does one track KEY_ENTER in ncurses? I have tried tracking \n using getch(), KEY_ENTER, and raw(), to no avail.
0
votes
1answer
109 views
QtCreator and ncurses
I have a little program with C++ and ncurses in QtCreator:
#include <ncurses.h>
int main()
{
initscr();// inicializa pantalla
printw("Hello world!");
refresh();
...
1
vote
1answer
66 views
Ncurses: Difference between doupdate() and refresh() for panels
What is the difference between doupdate() and refresh()?
It appears that refresh () can be substituted for doupdate(), however text does not appear unless refresh() is called.
Also, does refresh() ...


