123456789101112131415161718192021222324252627282930313233343536 |
- #include "ondetectplan.h"
- #include "ui_ondetectplan.h"
- #include "timewidget.h"
- #include "customcombobox.h"
- OnDetectPlan::OnDetectPlan(QWidget *parent) :
- QWidget(parent),
- ui(new Ui::OnDetectPlan)
- {
- ui->setupUi(this);
- /* 设置下拉框阴影 */
- ui->comboBox->setViewShadowEffect();
- }
- OnDetectPlan::~OnDetectPlan()
- {
- delete ui;
- }
- /* 设置QSS */
- void OnDetectPlan::setQSS(const QString &qss)
- {
- if(qss.isEmpty())
- {
- return;
- }
- /* 设置QSS */
- this->setStyleSheet(qss);
- }
|