Show the current playing song in bold.
[python-gnt.git] / gntfilesel.override
blobe299462dc0956c613ac18c64145c14169eef1c78
1 /**
2  * pygnt- Python bindings for the GNT toolkit.
3  * Copyright (C) 2007 Sadrul Habib Chowdhury <sadrul@pidgin.im>
4  *
5  *   gntfilesel.override: overrides for the file selector.
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 headrs
24 #include "common.h"
26 override gnt_file_sel_get_selected_multi_files noargs
27 static PyObject *
28 _wrap_gnt_file_sel_get_selected_multi_files(PyGObject *self)
30         GList *list = gnt_file_sel_get_selected_multi_files(GNT_FILE_SEL(self->obj));
31         return create_pyobject_from_string_list(list);
34 define GntFileSel.cancel_button noargs
35 static PyObject *
36 _wrap_gnt_file_sel_cancel_button(PyGObject *self)
38         return pygobject_new(G_OBJECT(GNT_FILE_SEL(self->obj)->cancel));