Annotation of freem/src/mwapi_event.h, revision 1.1.1.1
1.1 snw 1: /*
2: * *
3: * * *
4: * * *
5: * ***************
6: * * * * *
7: * * MUMPS *
8: * * * * *
9: * ***************
10: * * *
11: * * *
12: * *
13: *
14: * mwapi_event.h
15: * mwapi event support
16: *
17: *
18: * Author: Serena Willis <jpw@coherent-logic.com>
19: * Copyright (C) 1998 MUG Deutschland
20: * Copyright (C) 2014, 2020, 2021 Coherent Logic Development LLC
21: *
22: *
23: * This file is part of FreeM.
24: *
25: * FreeM is free software: you can redistribute it and/or modify
26: * it under the terms of the GNU Affero Public License as published by
27: * the Free Software Foundation, either version 3 of the License, or
28: * (at your option) any later version.
29: *
30: * FreeM is distributed in the hope that it will be useful,
31: * but WITHOUT ANY WARRANTY; without even the implied warranty of
32: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
33: * GNU Affero Public License for more details.
34: *
35: * You should have received a copy of the GNU Affero Public License
36: * along with FreeM. If not, see <https://www.gnu.org/licenses/>.
37: *
38: **/
39:
40: #include "config.h"
41:
42: #if !defined(__MWAPI_EVENT_H) && defined(HAVE_MWAPI_MOTIF)
43: # define __MWAPI_EVENT_H
44:
45: #include <Xm/Xm.h>
46:
47: typedef struct mwapi_event {
48:
49: char *evclass;
50: char *window_name;
51:
52: char *entryref;
53:
54: Widget *window;
55:
56:
57: } mwapi_event;
58:
59: typedef struct mwapi_event_queue_entry {
60:
61: mwapi_event *e;
62:
63: struct mwapi_event_queue_entry *next;
64:
65: } mwapi_event_queue_entry;
66:
67:
68: extern mwapi_event_queue_entry *mwapi_event_queue_head;
69: extern short evt_sync_enabled;
70:
71: mwapi_event *mwapi_event_new(char *evclass, char *window_name, Widget *window);
72: void mwapi_wire_event(mwapi_event *e, char *entryref);
73: void mwapi_enqueue_event(Widget *widget, void *data);
74: int mwapi_dequeue_events(char *result);
75: void mwapi_on_merge_complete(char *window_name);
76:
77: #endif
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>