summaryrefslogtreecommitdiff
path: root/lib/libforms/examples
Commit message (Collapse)AuthorAgeFilesLines
* Remove libforms, it was never used.Jordan K. Hubbard1996-06-193-239/+0
| | | | Notes: svn path=/head/; revision=16525
* recording cvs-1.6 file deathPeter Wemm1995-12-302-112/+0
| | | | Notes: svn path=/cvs2svn/branches/ATT/; revision=13122
* Removed libdialog.Paul Richards1995-09-161-1/+1
| | | | Notes: svn path=/head/; revision=10821
* Remove trailing whitespace.Rodney W. Grimes1995-05-301-2/+2
| | | | Notes: svn path=/head/; revision=8870
* New libforms.Paul Richards1995-05-123-95/+165
| | | | | | | | | | Bumped major number. Ncurses backend still needs improving. Other back-ends need to be written. Notes: svn path=/head/; revision=8475
* Tweak a few things just to show how form traversal might work fully.Jordan K. Hubbard1995-03-282-8/+8
| | | | | | | | Fix some spelling errors in the example.c file and make error handling a little more explanatory. Notes: svn path=/head/; revision=7437
* Include <strhash.h> instead now.Jordan K. Hubbard1995-03-281-1/+1
| | | | Notes: svn path=/head/; revision=7436
* Use a hash table to hold all the bindings info rather than a linked list.Paul Richards1995-03-262-8/+17
| | | | | | | | | | | | | Forms now have their own local bindings table so that anything declared within a form is local to that form. This means you can have fields of the same name in different forms. Added inlined attribute setting for strings e.g. "This is \bold bold" Added entry and exit functions for fields. Notes: svn path=/head/; revision=7386
* Completely rewrite libforms so everything is done at runtime ratherPaul Richards1995-03-013-41/+57
| | | | | | | | | | | than at compile time. Should have same functionality as old libforms but with new mechanism. Lots of new features that use the new mechanism are still to be added. Notes: svn path=/head/; revision=6799
* Implemented height field for text fields so they can now be more thanPaul Richards1995-02-013-72/+25
| | | | | | | | | | | | | | | one line long. Fixed a bug in the input field with cursor positioning at the end of the field. Make the print_status function available to apps so they can print status messages. Updated the example for the new fib parser. Notes: svn path=/head/; revision=6087
* Add all the necessary bits to use color if the terminal allows it.Paul Richards1995-01-301-3/+10
| | | | | | | | | | | | | | You can now specify separate attributes for selected/not selected cases individually for each field and also an attr for the form as a whole so you can now have colored backgrounds for the form and different coloured fields etc. Update the example. Change the copyright to a BSD style one. Notes: svn path=/head/; revision=6020
* Truncate any default inputs to the input width.Paul Richards1995-01-252-11/+11
| | | | | | | Update the example so it works properly. Notes: svn path=/head/; revision=5881
* New example that uses the new forms language.Paul Richards1995-01-251-6/+96
| | | | Notes: svn path=/head/; revision=5871
* Changed the example to use the forms spec file.Paul Richards1995-01-242-2/+74
| | | | Notes: svn path=/head/; revision=5852
* Added emacs ^A,^E,^B & ^F keybindings to field editor.Paul Richards1995-01-111-1/+1
| | | | | | | Changed a constant to a sizeof in test.c Notes: svn path=/head/; revision=5501
* Change size of example form from 80x25 to 80x24 so it worksPaul Richards1995-01-111-1/+1
| | | | | | | in a standard xterm. Notes: svn path=/head/; revision=5482
* As long as I can't figure out why this doesn't work, I might as wellJordan K. Hubbard1995-01-102-2/+14
| | | | | | | add some error checking to it and clean this up a bit. Notes: svn path=/head/; revision=5470
* New forms library. This provides some basic functions for writingPaul Richards1995-01-102-4/+95
| | | | | | | | | | | | | | | | | | | | | | | | input forms. It has the following simple fields: Text fields: Just titles, labels etc. Input fields: An editable text field that may or may not have an initial default value. Labelled input field: This is an input field that has an initial informative entry in it but it vanishes when you start editing the field. Toggle fields: These are fields with a pre-defined list of options which you cycle through using the space bar. Action fields: These are button type fields that call functions when they are selected. A simple demo is included in examples. Notes: svn path=/head/; revision=5461
* The start of a forms editor library. Currently implements text andPaul Richards1994-11-133-0/+31
input fields. It reads a template file passed to init_forms(char *) and creates a curses based form editor. See the examples directory for a basic demo. Notes: svn path=/head/; revision=4428