DuiButton* pushButton = new DuiButton("Push Button");
DuiButton* checkbox = new DuiButton(); checkbox->setViewType(DuiButton::checkboxType); checkbox->setCheckable(true);
checkboxLabel = new DuiLabel(); checkboxLabel->setText("Text"); QGraphicsLinearLayout *l = new QGraphicsLinearLayout(Qt::Horizontal); l->addItem(checkbox); l->addItem(checkboxLabel); l->setAlignment(checkbox, Qt::AlignCenter); l->setAlignment(checkboxLabel, Qt::AlignCenter); containerPolicy->addItem(l);
checkbox = new DuiButton("Text"); checkbox->setCheckable(true);
checkbox = new DuiCheckBox("Text");