old-www/HOWTO/NCURSES-Programming-HOWTO/ncurses_programs/basics
ᎠᎡ. Ѕϵrgϵ Ѵictor 512343884e GIT-alisation of old www content. 2020-08-23 10:33:19 +00:00
..
Makefile GIT-alisation of old www content. 2020-08-23 10:33:19 +00:00
README GIT-alisation of old www content. 2020-08-23 10:33:19 +00:00
acs_vars.c GIT-alisation of old www content. 2020-08-23 10:33:19 +00:00
hello_world.c GIT-alisation of old www content. 2020-08-23 10:33:19 +00:00
init_func_example.c GIT-alisation of old www content. 2020-08-23 10:33:19 +00:00
key_code.c GIT-alisation of old www content. 2020-08-23 10:33:19 +00:00
mouse_menu.c GIT-alisation of old www content. 2020-08-23 10:33:19 +00:00
other_border.c GIT-alisation of old www content. 2020-08-23 10:33:19 +00:00
printw_example.c GIT-alisation of old www content. 2020-08-23 10:33:19 +00:00
scanw_example.c GIT-alisation of old www content. 2020-08-23 10:33:19 +00:00
simple_attr.c GIT-alisation of old www content. 2020-08-23 10:33:19 +00:00
simple_color.c GIT-alisation of old www content. 2020-08-23 10:33:19 +00:00
simple_key.c GIT-alisation of old www content. 2020-08-23 10:33:19 +00:00
temp_leave.c GIT-alisation of old www content. 2020-08-23 10:33:19 +00:00
win_border.c GIT-alisation of old www content. 2020-08-23 10:33:19 +00:00
with_chgat.c GIT-alisation of old www content. 2020-08-23 10:33:19 +00:00

README

Description of files 
--------------------
  basics
    |
    |----> acs_vars.c	    -- ACS_ variables example
    |----> hello_world.c	-- Simple "Hello World" Program
    |----> init_func_example.c	-- Initialization functions example
    |----> key_code.c		-- Shows the scan code of the key pressed
    |----> mouse_menu.c		-- A menu accessible by mouse
    |----> other_border.c	-- Shows usage of other border functions apart
    |				-- box()
    |----> printw_example.c	-- A very simple printw() example
    |----> scanw_example.c	-- A very simple getstr() example
    |----> simple_attr.c	-- A program that can print a c file with comments
    |				-- in attribute
    |----> simple_color.c	-- A simple example demonstrating colors
    |----> simple_key.c		-- A menu accessible with keyboard UP, DOWN arrows
    |----> temp_leave.c		-- Demonstrates temporarily leaving curses mode
    |----> win_border.c		-- Shows Creation of windows and borders
    |----> with_chgat.c		-- chgat() usage example