blob: 704923eb497b698c1ced151ee0bffef1c2a733e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
/** \file
* \brief GTK Message Loop
*
* See Copyright Notice in "iup.h"
*/
#include <stdio.h>
#include <string.h>
#include <gtk/gtk.h>
#include "iup.h"
#include "iupcbs.h"
/* local variables */
static IFidle gtk_idle_cb = NULL;
static guint gtk_idle_id;
static gboolean gtkIdleFunc(gpointer data)
{
(void)data;
if (gtk_idle_cb)
{
int ret = gtk_idle_cb();
if (ret == IUP_CLOSE)
{
gtk_idle_cb = NULL;
IupExitLoop();
return FALSE; /* removes the idle */
}
if (ret == IUP_IGNORE)
{
gtk_idle_cb = NULL;
return FALSE; /* removes the idle */
}
return TRUE; /* keeps the idle */
}
return FALSE; /* removes the idle */
}
void iupdrvSetIdleFunction(Icallback f)
{
if (gtk_idle_cb)
g_source_remove(gtk_idle_id);
gtk_idle_cb = (IFidle)f;
if (gtk_idle_cb)
gtk_idle_id = g_idle_add(gtkIdleFunc, NULL);
}
void IupExitLoop(void)
{
if (gtk_main_iteration_do(FALSE)==FALSE)
gtk_main_quit();
}
int IupMainLoopLevel(void)
{
return gtk_main_level();
}
int IupMainLoop(void)
{
gtk_main();
return IUP_NOERROR;
}
int IupLoopStepWait(void)
{
if (gtk_main_iteration_do(TRUE))
return IUP_CLOSE;
return IUP_DEFAULT;
}
int IupLoopStep(void)
{
if (gtk_main_iteration_do(FALSE))
return IUP_CLOSE;
return IUP_DEFAULT;
}
void IupFlush(void)
{
IFidle old_gtk_idle_cb = NULL;
if (gtk_idle_cb)
{
old_gtk_idle_cb = gtk_idle_cb;
iupdrvSetIdleFunction(NULL);
}
while (gtk_events_pending())
gtk_main_iteration();
if (old_gtk_idle_cb)
iupdrvSetIdleFunction((Icallback)old_gtk_idle_cb);
}
|