Annotation of freem/src/mwapi_event.c, revision 1.3
1.1 snw 1: /*
1.3 ! snw 2: * $Id$
1.1 snw 3: * mwapi event support
4: *
5: *
1.2 snw 6: * Author: Serena Willis <snw@coherent-logic.com>
1.1 snw 7: * Copyright (C) 1998 MUG Deutschland
1.3 ! snw 8: * Copyright (C) 2014, 2020, 2021, 2025 Coherent Logic Development LLC
1.1 snw 9: *
10: *
11: * This file is part of FreeM.
12: *
13: * FreeM is free software: you can redistribute it and/or modify
14: * it under the terms of the GNU Affero Public License as published by
15: * the Free Software Foundation, either version 3 of the License, or
16: * (at your option) any later version.
17: *
18: * FreeM is distributed in the hope that it will be useful,
19: * but WITHOUT ANY WARRANTY; without even the implied warranty of
20: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21: * GNU Affero Public License for more details.
22: *
23: * You should have received a copy of the GNU Affero Public License
24: * along with FreeM. If not, see <https://www.gnu.org/licenses/>.
25: *
1.3 ! snw 26: * $Log$
! 27: *
! 28: * SPDX-FileCopyrightText: (C) 2025 Coherent Logic Development LLC
! 29: * SPDX-License-Identifier: AGPL-3.0-or-later
1.1 snw 30: **/
31: #include "config.h"
32:
33: #if defined(HAVE_MWAPI_MOTIF)
34:
35: #include <stdlib.h>
36: #include <Xm/Xm.h>
37: #include "mpsdef0.h"
38: #include "mwapi_event.h"
39: #include "mwapi_window.h"
40:
41: short evt_sync_enabled = FALSE;
42: mwapi_event_queue_entry *mwapi_event_queue_head;
43:
44: mwapi_event *mwapi_event_new(char *evclass, char *window_name, Widget *window)
45: {
46: mwapi_event *e = (mwapi_event *) malloc (sizeof (mwapi_event));
47: NULLPTRCHK(e,"mwapi_event_new");
48:
49: e->evclass = evclass;
50: e->window_name = window_name;
51: e->window = window;
52:
53: stcnv_m2c (e->window_name);
54:
55: return e;
56: }
57:
58: void mwapi_wire_event(mwapi_event *e, char *entryref)
59: {
60:
61: char m_gtk_ev[100];
62:
63: if (strcmp (e->evclass, "CLOSE") == 0) strcpy (m_gtk_ev, "destroy");
64:
65: e->entryref = (char *) malloc (strlen (entryref) * sizeof (char));
66: NULLPTRCHK(e->entryref,"mwapi_wire_event");
67:
68: strcpy (e->entryref, entryref);
69:
70: //g_signal_connect (e->window, m_gtk_ev, G_CALLBACK(mwapi_enqueue_event), (gpointer) e);
71:
72: }
73:
74: void mwapi_enqueue_event(Widget *widget, void *data)
75: {
76: mwapi_event *e = (mwapi_event *) malloc (sizeof (mwapi_event));
77: NULLPTRCHK(e,"mwapi_enqueue_event");
78:
79: mwapi_event_queue_entry *t = (mwapi_event_queue_entry *) malloc (sizeof (mwapi_event_queue_entry));
80: NULLPTRCHK(t,"mwapi_enqueue_event");
81:
82: e = (mwapi_event *) data;
83:
84: //printf ("mwapi_enqueue_event(): evclass = '%s' window_name = '%s' entryref = '%s'\r\n\r\n", e->evclass, e->window_name, e->entryref);
85:
86: t->e = e;
87: t->next = mwapi_event_queue_head;
88: mwapi_event_queue_head = t;
89:
90: return;
91: }
92:
93: int mwapi_dequeue_events(char *result)
94: {
95:
96: mwapi_event_queue_entry *t;
97: int i = 0;
98:
99: for (t = mwapi_event_queue_head; t != NULL; t = t->next) {
100:
101: strcat (result, t->e->entryref);
102: strcat (result, ",");
103: i++;
104:
105: }
106:
107: // TODO: delete events
108: mwapi_event_queue_head = NULL;
109:
110: /* chop off the final comma */
111: result[strlen (result) - 1] = '\0';
112:
113: return i;
114:
115: }
116:
117: void mwapi_on_merge_complete(char *window_name)
118: {
119: mwapi_window *t;
120:
121: if (stcmp (window_name, "\201") == 0) {
122: /* we're merging to the global directly; no specified subscript */
123: /* we'll do a loop here */
124: }
125: else {
126: /* merging to a specific window */
127: t = mwapi_win_get (window_name);
128: mwapi_win_show (t);
129: }
130:
131: }
132:
133: #endif
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>