aboutsummaryrefslogtreecommitdiffstats
path: root/PySide/QtGui/glue/qwidget_glue.h
blob: a6cd3b7d481a54ab4beac6bc64f39d68acaa6d64 (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
/**
 * Tranfer objects ownership from layout to widget
 **/
static inline void
qwidgetReparentLayout(QWidget *parent, QLayout *layout)
{
    Shiboken::AutoDecRef pyParent(Shiboken::Converter<QWidget*>::toPython(parent));

    for (int i=0; i < layout->count(); i++)
    {
        QLayoutItem *item = layout->itemAt(i);
        QWidget *w = item->widget();

        if (w)
        {
            Shiboken::AutoDecRef pyChild(Shiboken::Converter<QWidget*>::toPython(w));
            Shiboken::setParent(pyParent, pyChild);
        }
        else
        {
            QLayout *l = item->layout();
            if (l)
                qwidgetReparentLayout(parent, l);
        }
    }

    Shiboken::AutoDecRef pyChild(Shiboken::Converter<QLayout*>::toPython(layout));
    Shiboken::setParent(pyParent, pyChild);
}

static inline void
qwidgetSetLayout(QWidget *self, QLayout *layout)
{
    if (self->layout())
        return;

    qwidgetReparentLayout(self, layout);
    self->setLayout(layout);
}