box-o-sand/basics
2009-11-21 11:35:38 -05:00
..
acs_vars.c doing some find+sed cleanup 2009-11-18 19:38:43 -05:00
hello_world.c working through Hello World 2009-11-18 19:41:30 -05:00
hello_world.py added python version of hello_world 2009-11-18 20:22:50 -05:00
init_func_example.c up through example 4.7 2009-11-18 19:57:50 -05:00
init_func_example.py adding python version of init_func_example 2009-11-18 20:33:10 -05:00
key_code.c doing some find+sed cleanup 2009-11-18 19:38:43 -05:00
Makefile Revert "doing some find+sed cleanup" 2009-11-18 19:37:27 -05:00
mouse_menu.c doing some find+sed cleanup 2009-11-18 19:38:43 -05:00
other_border.c doing some find+sed cleanup 2009-11-18 19:38:43 -05:00
printw_example.c worked through the printw_example exercise, added python version 2009-11-19 20:29:11 -05:00
printw_example.py worked through the printw_example exercise, added python version 2009-11-19 20:29:11 -05:00
README Revert "doing some find+sed cleanup" 2009-11-18 19:37:27 -05:00
scanw_example.c working through C version of scanw example (7.4) 2009-11-21 11:00:10 -05:00
scanw_example.py finished python version of scanw_example (7.4) 2009-11-21 11:04:40 -05:00
simple_attr.c a less-mangled version of the simple_attr demo 2009-11-21 11:19:08 -05:00
simple_attr.py busted first stab at python version of simple_attr example 2009-11-21 11:35:38 -05:00
simple_color.c doing some find+sed cleanup 2009-11-18 19:38:43 -05:00
simple_key.c doing some find+sed cleanup 2009-11-18 19:38:43 -05:00
temp_leave.c doing some find+sed cleanup 2009-11-18 19:38:43 -05:00
win_border.c doing some find+sed cleanup 2009-11-18 19:38:43 -05:00
with_chgat.c doing some find+sed cleanup 2009-11-18 19:38:43 -05:00

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