diff options
author | paul <paul@FreeBSD.org> | 1995-02-01 04:06:37 +0000 |
---|---|---|
committer | paul <paul@FreeBSD.org> | 1995-02-01 04:06:37 +0000 |
commit | 0305d2ddc1bf66ecafae556f714242e7c8a04664 (patch) | |
tree | 576ca2890714ba0aff9ce46fa51c6d9c6eaaeba4 /lib/libforms/forms.h | |
parent | 0f25422ca89f5fe648e16dedf4c0e6cb062c6c61 (diff) | |
download | FreeBSD-src-0305d2ddc1bf66ecafae556f714242e7c8a04664.zip FreeBSD-src-0305d2ddc1bf66ecafae556f714242e7c8a04664.tar.gz |
Implemented height field for text fields so they can now be more than
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.
Diffstat (limited to 'lib/libforms/forms.h')
-rw-r--r-- | lib/libforms/forms.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/libforms/forms.h b/lib/libforms/forms.h index 094ca7a..36031be 100644 --- a/lib/libforms/forms.h +++ b/lib/libforms/forms.h @@ -94,6 +94,7 @@ struct field { int type; int y; int x; + int height; int width; int attr; int selattr; @@ -122,3 +123,4 @@ int initfrm(struct form *); void endfrm(struct form *); void exit_form(void); void cancel_form(void); +void print_status(char *); |