[QtGui module]

该QHBoxLayout,负责班级排队部件水平。More…

继承QBoxLayout

Methods

  • __init__ (self)
  • __init__ (self, QWidget parent)

Detailed Description

该QHBoxLayout,负责班级排队部件水平。

这个类是用于构建横向box布局对象。看QBoxLayout了解详情。

最简单的使用类是这样的:

  1. [QWidget](docs_qwidget.html) *window = new [QWidget](docs_qwidget.html);
  2. [QPushButton](docs_qpushbutton.html) *button1 = new [QPushButton](docs_qpushbutton.html)("One");
  3. [QPushButton](docs_qpushbutton.html) *button2 = new [QPushButton](docs_qpushbutton.html)("Two");
  4. [QPushButton](docs_qpushbutton.html) *button3 = new [QPushButton](docs_qpushbutton.html)("Three");
  5. [QPushButton](docs_qpushbutton.html) *button4 = new [QPushButton](docs_qpushbutton.html)("Four");
  6. [QPushButton](docs_qpushbutton.html) *button5 = new [QPushButton](docs_qpushbutton.html)("Five");
  7. QHBoxLayout *layout = new QHBoxLayout;
  8. layout->addWidget(button1);
  9. layout->addWidget(button2);
  10. layout->addWidget(button3);
  11. layout->addWidget(button4);
  12. layout->addWidget(button5);
  13. window->setLayout(layout);
  14. window->show();

首先,我们创建我们要在布局窗口小部件。然后,我们创建了QHBoxLayout,负责对象,并添加小工具到布局。最后,我们调用QWidget.setLayout( )到QHBoxLayout,负责对象安装到小部件。在这一点上,在该布局中的窗口小部件被重设父有window作为它们的父。

QHBoxLayout Class Reference - 图1


Method Documentation

  1. QHBoxLayout.__init__ (self)

构造一个新的水平框。你必须将它添加到另一个布局。

  1. QHBoxLayout.__init__ (self, QWidget parent)

parent的说法,如果不是没有,原因self通过Qt的,而不是PyQt的拥有。

构造一个新的顶级水平框父parent