Show the current playing song in bold.
[python-gnt.git] / gntcombobox.override
blobf5370c0551d0463796db7dcc131e6f3bd1495c38
1 /**
2  * pygnt- Python bindings for the GNT toolkit.
3  * Copyright (C) 2007 Sadrul Habib Chowdhury <sadrul@pidgin.im>
4  *
5  *   gntcombobox.override: overrides for combobox.
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301
20  * USA
21  */
23 headers
24 #include "common.h"
26 override gnt_combo_box_add_data
27 static PyObject *
28 _wrap_gnt_combo_box_add_data(PyGObject *self, PyObject *args)
30         PyObject *key;
31         char *text;
33         if (!PyArg_ParseTuple(args, "Os:GntComboBox.add_data", &key, &text)) {
34                 return NULL;
35         }
37         gnt_combo_box_add_data(GNT_COMBO_BOX(self->obj), key, text);
38         Py_INCREF(key);
40         Py_INCREF(Py_None);
41         return Py_None;
44 override gnt_combo_box_get_selected_data noargs
45 static PyObject *
46 _wrap_gnt_combo_box_get_selected_data(PyGObject *self)
48         PyObject *ret = gnt_combo_box_get_selected_data(GNT_COMBO_BOX(self->obj));
49         Py_INCREF(ret);
50         return ret;
53 override gnt_combo_box_set_selected
54 static PyObject *
55 _wrap_gnt_combo_box_set_selected(PyGObject *self, PyObject *args)
57         PyObject *key;
59         if (!PyArg_ParseTuple(args, "O:GntComboBox.add_data", &key)) {
60                 return NULL;
61         }
62         gnt_combo_box_set_selected(GNT_COMBO_BOX(self->obj), key);
64         Py_INCREF(Py_None);
65         return Py_None;