Make go to flow widget themable

This commit is contained in:
luisangelsm
2026-01-24 18:43:25 +01:00
parent 3bdbf4424b
commit 7b6055e76d
17 changed files with 191 additions and 33 deletions

View File

@ -18,19 +18,6 @@ GoToFlowToolBar::GoToFlowToolBar(QWidget *parent)
quickNavi->setLayout(naviLayout);
slider = new QSlider(Qt::Horizontal, this);
slider->setStyleSheet(
"QSlider::groove:horizontal {"
" border: 1px solid #22FFFFFF;"
" border-radius: 1px;"
" background: #77000000;"
" margin: 2px 0;"
" padding: 1px;"
"}"
"QSlider::handle:horizontal {"
" background: #55FFFFFF;"
" width: 48px;"
" border-radius: 1px;"
"}");
connect(slider, &QSlider::valueChanged, this, &GoToFlowToolBar::setCenter);
connect(slider, &QSlider::valueChanged, this, &GoToFlowToolBar::setPage);
@ -41,35 +28,25 @@ GoToFlowToolBar::GoToFlowToolBar(QWidget *parent)
edit = new QLineEdit();
edit->setValidator(v);
edit->setAlignment(Qt::AlignRight | Qt::AlignVCenter);
edit->setStyleSheet("QLineEdit {border: 1px solid #77000000; background: #55000000; color: white; padding: 3px 5px 5px 5px; margin: 13px 5px 12px 5px; font-weight:bold}");
edit->setFixedSize(54, 50);
edit->setAttribute(Qt::WA_MacShowFocusRect, false);
// edit->setAttribute(Qt::WA_LayoutUsesWidgetRect,true);
// edit->resize(QSize(54,50));
edit->setSizePolicy(QSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed));
// edit->setAutoFillBackground(false);
connect(edit, &QLineEdit::returnPressed, this, &GoToFlowToolBar::goTo);
QString centerButtonCSS = "QPushButton {background-image: url(:/images/imgCenterSlide.png); width: 100%; height:100%; background-repeat: none; border: none;} "
"QPushButton:focus { border: none; outline: none;}"
"QPushButton:pressed {background-image: url(:/images/imgCenterSlidePressed.png); width: 100%; height:100%; background-repeat: none; border: none;} ";
centerButton = new QPushButton();
centerButton->setStyleSheet(centerButtonCSS);
centerButton->setIconSize(QSize(12, 12));
centerButton->setFixedSize(26, 50);
centerButton->setAttribute(Qt::WA_LayoutUsesWidgetRect, true);
connect(centerButton, &QAbstractButton::clicked, this, &GoToFlowToolBar::centerSlide);
QString goToButtonCSS = "QPushButton {background-image: url(:/images/imgGoToSlide.png); width: 100%; height:100%; background-repeat: none; border: none;} "
"QPushButton:focus { border: none; outline: none;}"
"QPushButton:pressed {background-image: url(:/images/imgGoToSlidePressed.png); width: 100%; height:100%; background-repeat: none; border: none;} ";
goToButton = new QPushButton();
goToButton->setStyleSheet(goToButtonCSS);
goToButton->setIconSize(QSize(12, 12));
goToButton->setFixedSize(32, 50);
goToButton->setAttribute(Qt::WA_LayoutUsesWidgetRect, true);
connect(goToButton, &QPushButton::clicked, this, &GoToFlowToolBar::goTo);
goToButton2 = new QPushButton();
goToButton2->setStyleSheet(goToButtonCSS);
goToButton2->setIconSize(QSize(12, 12));
goToButton2->setFixedSize(32, 50);
goToButton2->setAttribute(Qt::WA_LayoutUsesWidgetRect, true);
connect(goToButton2, &QPushButton::clicked, this, &GoToFlowToolBar::goTo);
@ -94,12 +71,34 @@ GoToFlowToolBar::GoToFlowToolBar(QWidget *parent)
updateOptions();
setFixedHeight(50);
initTheme(this);
}
void GoToFlowToolBar::applyTheme(const Theme &theme)
{
auto goToFlowTheme = theme.goToFlowWidget;
slider->setStyleSheet(goToFlowTheme.sliderQSS);
edit->setStyleSheet(goToFlowTheme.editQSS);
pageHint->setStyleSheet(goToFlowTheme.labelQSS);
centerButton->setStyleSheet(goToFlowTheme.buttonQSS);
centerButton->setIcon(goToFlowTheme.centerIcon);
goToButton->setStyleSheet(goToFlowTheme.buttonQSS);
goToButton->setIcon(goToFlowTheme.goToIcon);
goToButton2->setStyleSheet(goToFlowTheme.buttonQSS);
goToButton2->setIcon(goToFlowTheme.goToIcon);
update();
}
void GoToFlowToolBar::paintEvent(QPaintEvent *)
{
QPainter painter(this);
painter.fillRect(0, 0, width(), height(), QColor(0x99000000));
painter.fillRect(0, 0, width(), height(), theme.goToFlowWidget.toolbarBackgroundColor);
}
void GoToFlowToolBar::setPage(int pageNumber)