Questions tagged [tui]

Text User Interface development: command line, menu driven or full screen applications.

A Text User Interface is any kind of interface that uses only fixed width text mode display. Command line interfaces, which may have no display whatsoever also fall into this category. A text user interface may be menu driven or use mouse input in addition to keyboard input. Graphics may be rendered using extended characters sets, such as high/extended ASCII.

There's now a Stack Exchange site devoted to user interface design: ui.stackexchange.com

Similar tags:

See also:

199 questions
0
votes
1 answer

gdb tui, dl-debug.c:74 no such file or directory

If I start gdb -tui or gdbtui with an -g flag compiled file, then set b main and press r I get the hint dl-debug.c:74 no such file or directory and the output while stepping through the source window will be written to the source window at the…
John Goofy
  • 1,330
  • 1
  • 10
  • 20
0
votes
1 answer

Python, returning data collected in npyscreen

So I'm creating a basic TUI for a script I created. The goal is to collect several variables that include paths to directories and files. What I'm not sure about is once I've created the visual aspect of it, how to get those pieces of information to…
0
votes
1 answer

Pygame, Tkinter or something else for TUI and responding to keyboard input?

I'm quite new to programming and trying to write a fairly simple program that records the times in between different keyboard button presses (a bit like multiple reaction time tests) and prints these times on screen in an array, then terminates and…
neptune36
  • 789
  • 1
  • 6
  • 10
0
votes
2 answers

Clear only part of the screen in Python

So basically I'm trying to create a text based user interface for a python application. This is what I got so far: #!/usr/bin/env python # encoding: utf-8 from blessed import Terminal import sqlite3 import sys import…
John Lisboa
  • 73
  • 1
  • 2
  • 12
0
votes
0 answers

Adding to an ArrayList using a TUI

I'm implementing a class called "BorrowerTUI" to an existing project for an assignment. I've been trying for hours and I just can't work out how to add to my ArrayList using the TUI. The information that needs to be added is in a class called…
0
votes
0 answers

Accessing array list methods from another class

I have two classes I want to use together. An array list class and a Text User Interface class which will call methods from the array list class in order to complete tasks. Whenever I try to call methods with parameters in my array list class from…
0
votes
1 answer

npyscreen toggle option between TUI and CLI

I am developing a console application to manage firewall devices from a unix server. The console application is based on npyscreen library of python. One of the options I need to provide to the users is login to the device CLI from the TUI thats…
0
votes
3 answers

Where can I find detailed info about creating Text user interface (TUI) [Character User Interface (CUI)]?

I would be very gratefull for the links for material with detailed info about creating the API for Text user interface (TUI) [Character User Interface (CUI)] which can be used in console mode even. It is interesting for me how to create such API, it…
Andrey Bushman
  • 11,712
  • 17
  • 87
  • 182
0
votes
0 answers

How to write a TUI in RHEL/CentOS

Does anybody know if the system-config-..-tui commands use a shared library for building their TUIs? Is it possible to write a Bash Script with the same TUI interface (no GTK/GNOME/KDE - pure Text)?
Markus
  • 1
  • 1
0
votes
2 answers

TUI using slang with pure ascii (7 bit) characters via termcap

I am using newt/snack (a TUI graphical Widgit library for Python based on slang) to have some interactive scripts. However for some target terminals the output of those screens are not very nice. I can change the look of them by changing the $TERM…
Chen Levy
  • 15,438
  • 17
  • 74
  • 92
0
votes
2 answers

Perl print line over Prompt

My script asks for download URLs and sends them to the download queue. The progress of the download should be printed back. I don't find a way to keep the prompt on bottom and do the status over it. I tried a search on CPAN, but I found no module…
Lebewesen
  • 147
  • 1
  • 8
0
votes
0 answers

Independently Scrolling Columns in Java ouput

Is it possible to have two (or more) independently scrolling columns in Java? I am asking for functionality like this: Before: Output 11 Output 21 Output 12 Output 22 Output 13 Output 23 After: Another line was added to column 2, it…
diestl
  • 2,020
  • 4
  • 23
  • 37
0
votes
2 answers

Is there any way to maintain two windows in a terminal?

I'm building a small script where I'd need to maintain two windows in a terminal (TTY). I'd like to do something like tmux's status bar, but can't manage to get the bottom bar to update meanwhile I'm printing stuff on the rest of the screen. I want…
pmerino
  • 5,900
  • 11
  • 57
  • 76
0
votes
1 answer

Keep script position in terminal

I want to write a Powershell script that shows a few lines (maybe 5), but they stay in the same spot/position in the terminal window. For example: If I was writing a script that printed if a few devices were pingable, I wouldn't want the output to…
EGr
  • 2,072
  • 10
  • 41
  • 61
0
votes
1 answer

Text user interface showing a list of items, displaying more information for particular item

I created a Python command-line application. One of the features is that it prints a list of items taken from database when you call it with -l switch. Each item has associated a detailed description. 1: item1 2: item2 3: item3 4: item4 What is a…
xralf
  • 3,312
  • 45
  • 129
  • 200
1 2 3
13
14