From 110bf828a76910a5499f1cf211b8abb09cc5450a Mon Sep 17 00:00:00 2001 From: paul Date: Wed, 13 Sep 1995 18:04:35 +0000 Subject: Add missing internal object functions, hard-coded for ncurses for now. --- lib/libforms/objects.c | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/lib/libforms/objects.c b/lib/libforms/objects.c index 0a51cae..0e3c294 100644 --- a/lib/libforms/objects.c +++ b/lib/libforms/objects.c @@ -371,3 +371,21 @@ add_menu_option(MENU_OBJECT *menu, char *option) return (++menu->no_options); } + + +/* Default object functions */ + +void +draw_box(OBJECT *object) +{ + /* Gross hack for now */ + ncurses_draw_box(object); +} + +void +draw_shadow(OBJECT *object) +{ + /* Gross hack for now */ + ncurses_draw_shadow(object); +} + -- cgit v1.1