[broadway] Wire up the delete event

This commit is contained in:
Alexander Larsson
2011-04-06 22:13:18 +02:00
parent 06fc6e007e
commit 3b1fe05e78
4 changed files with 36 additions and 2 deletions

View File

@ -96,6 +96,11 @@ typedef struct {
int height;
} BroadwayInputConfigureNotify;
typedef struct {
BroadwayInputBaseMsg base;
int id;
} BroadwayInputDeleteNotify;
typedef union {
BroadwayInputBaseMsg base;
BroadwayInputPointerMsg pointer;
@ -105,6 +110,7 @@ typedef union {
BroadwayInputKeyMsg key;
BroadwayInputGrabReply grab_reply;
BroadwayInputConfigureNotify configure_notify;
BroadwayInputDeleteNotify delete_notify;
} BroadwayInputMsg;
struct _GdkBroadwayDisplay