view finch/libgnt/pygnt/gntbox.override @ 21904:9b299228431c

merge of '05319fdf1db00660d0c169657ed1b08ff621e5c7' and 'a654aa0d3c35e43c2f23b266100bfdb4d98e2d73'
author Will Thompson <will.thompson@collabora.co.uk>
date Wed, 19 Dec 2007 11:31:37 +0000
parents 44b4e8bd759b
children
line wrap: on
line source

/**
 * pygnt- Python bindings for the GNT toolkit.
 * Copyright (C) 2007 Sadrul Habib Chowdhury <sadrul@pidgin.im>
 *
 *   gntbox.override: overrides for the box widget.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301
 * USA
 */
%%
override gnt_box_add_widget kwargs
static PyObject *
_wrap_gnt_box_add_widget(PyGObject *self, PyObject *args, PyObject *kwargs)
{
    static char *kwlist[] = { "widget", NULL };
    PyGObject *widget;

    if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O!:GntBox.add_widget", kwlist, &PyGntWidget_Type, &widget))
        return NULL;
    
    gnt_box_add_widget(GNT_BOX(self->obj), GNT_WIDGET(widget->obj));
	Py_INCREF(widget);
    
    Py_INCREF(Py_None);
    return Py_None;
}