Package com.trolltech.qt.gui

Examples of com.trolltech.qt.gui.QBoxLayout.addWidget()


    bOk.pressed.connect(this, "onOkButton()");
    bOk.setDefault(true);
    QPushButton bCancel = new QPushButton("Cancel");
    bCancel.pressed.connect(this, "onCancelButton()");
    QBoxLayout okCancelLayout = new QBoxLayout(Direction.RightToLeft);
    okCancelLayout.addWidget(bCancel, 0, AlignmentFlag.AlignRight);
    okCancelLayout.addWidget(bOk, 1, AlignmentFlag.AlignRight);

    resultLayout.addWidget(tripLabel, 0, 0, 1, 3);
    resultLayout.addWidget(idLabel, 1, 0, 1, 1);
    resultLayout.addWidget(depTimeLabel, 2, 0, 1, 1);
View Full Code Here


    bOk.setDefault(true);
    QPushButton bCancel = new QPushButton("Cancel");
    bCancel.pressed.connect(this, "onCancelButton()");
    QBoxLayout okCancelLayout = new QBoxLayout(Direction.RightToLeft);
    okCancelLayout.addWidget(bCancel, 0, AlignmentFlag.AlignRight);
    okCancelLayout.addWidget(bOk, 1, AlignmentFlag.AlignRight);

    resultLayout.addWidget(tripLabel, 0, 0, 1, 3);
    resultLayout.addWidget(idLabel, 1, 0, 1, 1);
    resultLayout.addWidget(depTimeLabel, 2, 0, 1, 1);
    resultLayout.addWidget(fromNodeLabel, 3, 0, 1, 1);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.