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
|
/*******************************************************************************
**3456789 123456789 123456789 123456789 123456789 123456789 123456789 123456789
** 10 20 30 40 50 60 70 80
**
** project:
** alsdorf
**
** file:
** stack-display.c
**
** author(s):
** Mirco "MacSlow" Mueller <mirco.mueller@canonical.com>
** David Barth <david.barth@canonical.com>
**
** copyright (C) Canonical, oct. 2008
**
*******************************************************************************/
#include <gtk/gtk.h>
#include "Python.h"
#include "bubble.h"
void
stack_push_notification (gchar *title,
gchar *message)
{
GtkWidget* window = NULL;
window = bubble_new (30, 30, 300, 100);
gtk_widget_show_all (window);
}
static PyObject *
stack_push_notification_py (PyObject *self,
PyObject *args)
{
char *title = NULL;
char *message = NULL;
if (!PyArg_ParseTuple(args, "ss", &title, &message))
return NULL;
stack_push_notification(title, message);
return Py_BuildValue("");
}
static PyMethodDef notification_methods[] = {
{"push", stack_push_notification_py, METH_VARARGS, "Insert a new message in the notification stack"},
{NULL, NULL} /* sentinel */
};
void
stack_init_python_interface (void)
{
PyImport_AddModule("notifications");
Py_InitModule("notifications", notification_methods);
}
|