Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
10answers
2k views

How do I make a command line text editor?

I have gotten to know my way around a few programming languages, and I'd like to try my hand at making a command-line text editor -- something that runs in the terminal, like vim/emacs/nano, but is ...
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 ...
4
votes
4answers
783 views

Text User Interface Design Reference?

Is there a good book or other references on Text User Interface Design? I am not interested in graphical user interfaces. I am interested in usability for good command line and scripting interfaces. ...
4
votes
8answers
1k views

GUI/TUI linux library

Is there any UI library that can be to build both a text user interface (ncurses) and graphical user interface (GTK? QT?) from the same source? I know that debconf can be used with various frontends, ...
3
votes
1answer
106 views

Does a C++ shell framework exist?

I used to develop some Perl programs using Fry::Shell. I think it is very powerful and easy to use. For one of my C++ projects I need to create a command line client. The idea is to create a TUI like ...
3
votes
4answers
3k views

Python Text User Interface

I want to build simple console applications, but want something like QT and not like ncurses. Is there such a thing or is it only my dream UI?
2
votes
2answers
49 views

I need to restructure this class without the use of instance variables

So I'm doing a TUI and this was my first iteration. package bulb.classes; import java.util.Scanner; import java.util.ArrayList; public class RoomTUI { private ArrayList<Room> rooms; Scanner ...
2
votes
2answers
387 views

GUIs vs TUIs in Python

I'm interested in doing rapid app development in Python. Since this is mainly for prototyping purposes, I'm looking for a way of creating "rough" user interfaces. By this, I mean that they don't have ...
1
vote
0answers
23 views

multiple problems with GDB's TUI mode

Problem A: I start gdb in command line with "gdb test" I press ctrl-x,ctrl-a before I do anything else Then I set break point using "b main" Then I start running the program using "r" Till this ...
1
vote
2answers
254 views

Highlighting and Selecting text with Python curses

This is my first post to stack overflow. I've been lurking this site for information for years, and it's always helpful, so I thought that I would post my first question. I've been searching for ...
1
vote
3answers
933 views

Text-Based User Interface Development

Where can I find resources related to the design and development of text-based user interfaces (e.g. interfaces exported via serial port from embedded devices to VT100 terminals)? I am interested in ...
0
votes
1answer
30 views

Is it possible to use ncurses through a telnet connection?

I wanna use a TUI over telnet connection between two Linux boxes like ncurses, is there a way to do this or to use TUIs through telnet in C?
0
votes
1answer
111 views

What ncurses frameworks are available for BASH?

Is there some more TUI frameworks for BASH like this?: http://code.google.com/p/bashsimplecurses/ i want to take user input (data entry) process the entry
0
votes
2answers
194 views

IDE which uses a textual user interface ( like ncurses)

are there any IDEs which run in a shell instead of a gui. As i really don't like to use a mouse (except of scrolling, everything is faster for example in firefox using shortcuts). I really like ...
0
votes
1answer
135 views

convert TUI to GUI in haskell

I am trying to convert a Haskell program to a Haskell GUI program, but since I am very very new at Haskell, every time I try something I get lots of errors. I asked on Stack Overflow many time for ...
0
votes
0answers
113 views

Gdb in tui mode not expanding CMD window

Using gdb in tui mode and I'm having a problem with the size of the work area of the CMD window. Using the winheight I am able to modify the hight for the SRC and CMD windows, but the CMD window ...
0
votes
1answer
60 views

Why is TUI used in stores?

In many big stores/rental/service companys the system they are using for managing customers and looking up products is based on a Text User Interface (TUI). Are there any reason why they choose TUI ...
0
votes
1answer
216 views

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 ...
0
votes
3answers
748 views

How to build a top-like UI in Ruby

I want to build an application with a text based UI that is similar to the Linux command 'top', in Ruby. What toolkits and/or techniques can I use to build the UI? In particular I want an area of ...