aboutsummaryrefslogtreecommitdiffstats
path: root/PySide/QtCore/glue/hwnd_conversions.h
blob: bf2de4df1c8287a5c66afaab9450c4f3a2ef82cb (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
namespace Shiboken {
template <>
struct Converter<HWND__>
{
    static bool checkType(PyObject* pyObj)
    {
        return false;
    }

    static bool isConvertible(PyObject* pyobj)
    {
        return PyCObject_Check(pyobj);
    }

    static inline PyObject* toPython(void* cppobj)
    {
        // not supported
        Q_ASSERT(true);
        return 0;
    }

    static PyObject* toPython(HWND__ cppobj)
    {
        return PyCObject_FromVoidPtr(&cppobj, 0);
    }

    static HWND__ toCpp(PyObject* pyobj)
    {
        return *((HWND__*) PyCObject_AsVoidPtr(pyobj));
    }
};
}