本文整理汇总了C++中QStackedLayout::setSpacing方法的典型用法代码示例。如果您正苦于以下问题:C++ QStackedLayout::setSpacing方法的具体用法?C++ QStackedLayout::setSpacing怎么用?C++ QStackedLayout::setSpacing使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类QStackedLayout
的用法示例。
在下文中一共展示了QStackedLayout::setSpacing方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: QDialog
SettingDialog::SettingDialog(QWidget *parent):
QDialog(parent)
// , m_settingLayout(new QVBoxLayout(this))
// , m_stackedWidget(new QStackedWidget)
// , m_okBtn(new QPushButton(this))
{
this->setWindowFlags(Qt::FramelessWindowHint);
this->setFixedSize(479, 421);
this->setFocusPolicy(Qt::ClickFocus);
this->setWindowTitle(tr("Kylin Weather - Setting"));
this->setWindowIcon(QIcon(":/res/indicator-china-weather.png"));
//Why????? setStyleSheet将导致添加城市后,列表没有自动拉伸,出现重叠,但是qDebug打印的高度确实增加了,但是使用paintEvent可以
//this->setStyleSheet("QDialog{border:1px solid #000000;border-radius:2px;background:rgba(255, 255, 255, 0.7);}QDialog:hover{background: rgba(255, 255, 255, 1.0);}");
initSettings();
initSearch();
QStackedLayout *contentLayout = new QStackedLayout(this);
contentLayout->setContentsMargins(20, 20, 20, 20);
contentLayout->setMargin(0);
contentLayout->setSpacing(0);
contentLayout->addWidget(m_settingFrame);
contentLayout->addWidget(m_searchFrame);
m_settingFrame->setVisible(true);
}
示例2: QWidget
Speed::Speed(QWidget *parent): QWidget(parent)
{
QHBoxLayout *layout = new QHBoxLayout();
layout->setSpacing(0);
layout->setMargin(0);
setStyleSheet("padding: 0;");
QVBoxLayout *contentLayout = new QVBoxLayout();
contentLayout->setSpacing(2);
contentLayout->setMargin(0);
contentLayout->setContentsMargins(0, 2, 0, 0);
QWidget *content = new QWidget();
content->setLayout(contentLayout);
content->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Minimum);
QStackedLayout *speedometerLayout = new QStackedLayout(contentLayout);
speedometerLayout->setSpacing(2);
speedometerLayout->setMargin(0);
speedometerLayout->setContentsMargins(0, 2, 0, 0);
speedometerLayout->setStackingMode(QStackedLayout::StackAll);
speedometerNeedle = new RotatableImageView(":/resources/speedometer-needle_160x160.png");
speedometerNeedle->rotate(-129);
speedometerLayout->addWidget(speedometerNeedle);
QLabel *speedometer = new QLabel();
speedometer->setPixmap(QPixmap(":/resources/speedometer_160x160.png"));
speedometer->setMargin(2);
speedometerLayout->addWidget(speedometer);
speedometerLabel = new QLabel("N/A");
speedometerLabel->setAlignment(Qt::AlignCenter);
speedometerLabel->setStyleSheet("font: 13pt; font-weight: bold;");
contentLayout->addWidget(speedometerLabel);
TitledBox *box = new TitledBox(tr("Speed"), content);
layout->addWidget(box);
QGraphicsDropShadowEffect *dropShadow = new QGraphicsDropShadowEffect();
dropShadow->setBlurRadius(6);
dropShadow->setColor(QColor(0, 0, 0));
dropShadow->setOffset(0, 0);
setGraphicsEffect(dropShadow);
setLayout(layout);
}
示例3: QObject
WeatherPlugin::WeatherPlugin(QObject *parent)
: QObject(parent),
m_view(new QFrame),
m_requestManager(new WeatherRequest(this))
{
WeatherWidget *weatherWidget = new WeatherWidget(m_requestManager);
SetLocationPage *locationPage = new SetLocationPage(m_requestManager);
QStackedLayout *layout = new QStackedLayout;
layout->setSpacing(0);
layout->setMargin(0);
layout->addWidget(weatherWidget);
layout->addWidget(locationPage);
m_view->setLayout(layout);
m_view->setObjectName("WeatherView");
m_view->setStyleSheet("#WeatherView {"
"background-color: rgba(255, 255, 255, .03);"
"}");
connect(weatherWidget, &WeatherWidget::locationButtonClicked, this, [this, layout, locationPage] {
locationPage->reset();
locationPage->setCurrentCity(m_requestManager->city());
layout->setCurrentWidget(locationPage);
});
connect(locationPage, &SetLocationPage::citySet, this, [this, layout, weatherWidget] (const QString &preferredService, const City &city) {
qDebug() << "set city to " << city.localizedName;
QList<WeatherItem> empty;
weatherWidget->refreshView(empty);
m_requestManager->setPreferredWeatherService(preferredService);
m_requestManager->setCity(city);
layout->setCurrentWidget(weatherWidget);
});
connect(locationPage, &SetLocationPage::cancelled, this, [=] {
qDebug() << "cancelled setting city" ;
layout->setCurrentWidget(weatherWidget);
});
}
示例4: QWidget
toResultPlanAbstr::toResultPlanAbstr(QWidget *parent)
: QWidget(parent)
, CursorChildSel(NULL)
, DisplayChildCombo(false)
, Explaining(false)
, Query(NULL)
{
using namespace ToConfiguration;
planTreeView = new toResultPlanView(this);
planTreeText = new QPlainTextEdit(this);
planTreeText->setReadOnly(true);
planTreeText->setFont(Utils::toStringToFont(toConfigurationNewSingle::Instance().option(Editor::ConfTextFont).toString()));
//toExplainTypeButtonSingle::Instance().
QStackedLayout *mainLayout = new QStackedLayout;
mainLayout->setSpacing(0);
mainLayout->setContentsMargins(0, 0, 0, 0);
mainLayout->addWidget(planTreeView);
mainLayout->addWidget(planTreeText);
mainLayout->setCurrentIndex(0);
//mainLayout->setStackingMode(QStackedLayout::StackAll);
setLayout(mainLayout);
}