dxx-rebirth/unused/ui/keytrap.c
Bradley Bell 9bd1ba7c47 This commit was generated by cvs2svn to compensate for changes in r2,
which included commits to RCS files with non-trunk default branches.
2001-01-19 03:30:16 +00:00

38 lines
650 B
C

#include <stdlib.h>
#include <string.h>
#include "fix.h"
#include "types.h"
#include "gr.h"
#include "ui.h"
#include "key.h"
UI_GADGET_KEYTRAP * ui_add_gadget_keytrap( UI_WINDOW * wnd, int key_to_trap, int (*function_to_call)(void) )
{
UI_GADGET_KEYTRAP * keytrap;
keytrap = (UI_GADGET_KEYTRAP *)ui_gadget_add( wnd, 8, 0, 0, 0, 0 );
keytrap->parent = (UI_GADGET *)keytrap;
keytrap->trap_key = key_to_trap;
keytrap->user_function = function_to_call;
return keytrap;
}
void ui_keytrap_do( UI_GADGET_KEYTRAP * keytrap, int keypress )
{
int result;
if ( keypress == keytrap->trap_key )
{
result = keytrap->user_function();
}
}
ÿ