EventDetailsDialog::EventDetailsDialog(const SeafEvent& event, QWidget *parent) : QDialog(parent), event_(event) { setWindowTitle(tr("Modification Details")); setWindowIcon(QIcon(":/images/seafile.png")); setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint); QStackedLayout *layout = new QStackedLayout; layout->setContentsMargins(0, 0, 0, 0); setLayout(layout); loading_view_ = new LoadingView; layout->addWidget(loading_view_); tree_ = new EventDetailsListView(event); model_ = new EventDetailsListModel(event); tree_->setModel(model_); layout->addWidget(tree_); request_ = 0; sendRequest(); }
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); }
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); }
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); }