/* Python plug-in for dia
 * Copyright (C) 1999  James Henstridge
 * Copyright (C) 2000  Hans Breuer
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program 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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

#include <config.h>

#include <glib.h>

#include "pydia-object.h"
#include "pydia-export.h"

PyObject *
PyDiaExportFilter_New(DiaExportFilter *filter)
{
    PyDiaExportFilter *self;

    self = PyObject_NEW(PyDiaExportFilter, &PyDiaExportFilter_Type);

    if (!self) return NULL;
    self->filter = filter;
    return (PyObject *)self;
}

static void
PyDiaExportFilter_Dealloc(PyDiaExportFilter *self)
{
     PyMem_DEL(self);
}

static int
PyDiaExportFilter_Compare(PyDiaExportFilter *self, PyDiaExportFilter *other)
{
    if (self->filter == other->filter) return 0;
    if (self->filter > other->filter) return -1;
    return 1;
}

static long
PyDiaExportFilter_Hash(PyDiaExportFilter *self)
{
    return (long)self->filter;
}

static PyObject *
PyDiaExportFilter_Str(PyDiaExportFilter *self)
{
    return PyString_FromString(self->filter->description);
}

/*
 * "real" member function implementaion ?
 */

static PyMethodDef PyDiaExportFilter_Methods[] = {
    {NULL, 0, 0, NULL}
};

static PyObject *
PyDiaExportFilter_GetAttr(PyDiaExportFilter *self, gchar *attr)
{
    if (!strcmp(attr, "__members__"))
	return Py_BuildValue("[s]", "name");
    else if (!strcmp(attr, "name"))
	return PyString_FromString(self->filter->description);

    return Py_FindMethod(PyDiaExportFilter_Methods, (PyObject *)self, attr);
}

PyTypeObject PyDiaExportFilter_Type = {
    PyObject_HEAD_INIT(&PyType_Type)
    0,
    "DiaExportFilter",
    sizeof(PyDiaExportFilter),
    0,
    (destructor)PyDiaExportFilter_Dealloc,
    (printfunc)0,
    (getattrfunc)PyDiaExportFilter_GetAttr,
    (setattrfunc)0,
    (cmpfunc)PyDiaExportFilter_Compare,
    (reprfunc)0,
    0,
    0,
    0,
    (hashfunc)PyDiaExportFilter_Hash,
    (ternaryfunc)0,
    (reprfunc)PyDiaExportFilter_Str,
    0L,0L,0L,0L,
    NULL
};
