aboutsummaryrefslogtreecommitdiffstats
path: root/PySide/QtCore/qdatetime_conversions.h
blob: bcf9ad3fecb850538a6a9c10ee3c821686fc369c (plain)
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
#ifdef IS_PY3K
#define PySideDateTime_IMPORT PyDateTime_IMPORT
#else
#define PySideDateTime_IMPORT \
        PyDateTimeAPI = (PyDateTime_CAPI*) PyCObject_Import((char*)"datetime", \
                                                            (char*)"datetime_CAPI")
#endif
namespace Shiboken {

inline bool Converter<QDateTime>::checkType(PyObject* pyObj)
{
    return ValueTypeConverter<QDateTime>::checkType(pyObj);
}

inline PyObject* Converter<QDateTime>::toPython(const ::QDateTime& cppObj)
{
    return ValueTypeConverter<QDateTime>::toPython(cppObj);
}

inline bool Converter<QDateTime>::isConvertible(PyObject* pyObj)
{
    if (ValueTypeConverter<QDateTime>::isConvertible(pyObj))
        return true;

    if (!PyDateTimeAPI)
        PySideDateTime_IMPORT;

    SbkObjectType* shiboType = reinterpret_cast<SbkObjectType*>(SbkType< ::QDateTime >());
    return PyDateTime_Check(pyObj) || ObjectType::isExternalConvertible(shiboType, pyObj);
}


inline QDateTime Converter<QDateTime>::toCpp(PyObject* pyObj)
{
    if (!PyDateTimeAPI)
        PySideDateTime_IMPORT;

    if (pyObj == Py_None) {
        return QDateTime();
    } else if (PyObject_TypeCheck(pyObj, SbkType<QDateTime>())) {
        return *Converter<QDateTime*>::toCpp(pyObj);
    } else if (PyDateTime_Check(pyObj)) {
        int day = PyDateTime_GET_DAY(pyObj);
        int month = PyDateTime_GET_MONTH(pyObj);
        int year = PyDateTime_GET_YEAR(pyObj);
        int hour = PyDateTime_DATE_GET_HOUR(pyObj);
        int min = PyDateTime_DATE_GET_MINUTE(pyObj);
        int sec = PyDateTime_DATE_GET_SECOND(pyObj);
        int usec = PyDateTime_DATE_GET_MICROSECOND(pyObj);
        return QDateTime(QDate(year, month, day), QTime(hour, min, sec, usec/1000));
    } else {
        return ValueTypeConverter<QDateTime>::toCpp(pyObj);
    }
}

}