本文整理汇总了C++中QProgressBar::setOrientation方法的典型用法代码示例。如果您正苦于以下问题:C++ QProgressBar::setOrientation方法的具体用法?C++ QProgressBar::setOrientation怎么用?C++ QProgressBar::setOrientation使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类QProgressBar
的用法示例。
在下文中一共展示了QProgressBar::setOrientation方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: setupUi
void setupUi(QDialog *Dialog)
{
Dialog->setObjectName(QString::fromUtf8("Dialog"));
verticalLayout = new QWidget(Dialog);
verticalLayout->setObjectName(QString::fromUtf8("verticalLayout"));
verticalLayout->setGeometry(QRect(9, 9, 215, 89));
vboxLayout = new QVBoxLayout(verticalLayout);
vboxLayout->setSpacing(6);
vboxLayout->setMargin(0);
vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
labelTimeLeft = new QLabel(verticalLayout);
labelTimeLeft->setObjectName(QString::fromUtf8("labelTimeLeft"));
vboxLayout->addWidget(labelTimeLeft);
labelImages = new QLabel(verticalLayout);
labelImages->setObjectName(QString::fromUtf8("labelImages"));
vboxLayout->addWidget(labelImages);
progressBar = new QProgressBar(verticalLayout);
progressBar->setObjectName(QString::fromUtf8("progressBar"));
progressBar->setValue(0);
progressBar->setOrientation(Qt::Horizontal);
vboxLayout->addWidget(progressBar);
retranslateUi(Dialog);
QSize size(236, 111);
size = size.expandedTo(Dialog->minimumSizeHint());
Dialog->resize(size);
QMetaObject::connectSlotsByName(Dialog);
} // setupUi