mirror of
https://github.com/YACReader/yacreader
synced 2025-05-27 19:00:29 -04:00
101 lines
3.1 KiB
C++
101 lines
3.1 KiB
C++
#include "page_label_widget.h"
|
|
|
|
#include <QtWidgets>
|
|
|
|
PageLabelWidget::PageLabelWidget(QWidget *parent)
|
|
: QWidget(parent)
|
|
{
|
|
animation = new QPropertyAnimation(this, "pos");
|
|
animation->setDuration(150);
|
|
animation->setEndValue(QPoint((parent->geometry().size().width() - this->width()), -this->height()));
|
|
|
|
int verticalRes = QApplication::desktop()->screenGeometry().height();
|
|
|
|
auto layout = new QHBoxLayout;
|
|
layout->setMargin(0);
|
|
setContentsMargins(0, 0, 0, 0);
|
|
|
|
QSize labelSize;
|
|
if (verticalRes <= 1024)
|
|
labelSize = QSize(135, 30);
|
|
else if (verticalRes <= 1200)
|
|
labelSize = QSize(170, 35);
|
|
else
|
|
labelSize = QSize(205, 45);
|
|
|
|
textLabel = new QLabel(this);
|
|
textLabel->setAlignment(Qt::AlignVCenter | Qt::AlignHCenter);
|
|
if (verticalRes <= 1024)
|
|
textLabel->setStyleSheet("QLabel { color : white; font-size:12px; padding-left:8px; }");
|
|
else if (verticalRes <= 1200)
|
|
textLabel->setStyleSheet("QLabel { color : white; font-size:16px; padding-left:8px;}");
|
|
else
|
|
textLabel->setStyleSheet("QLabel { color : white; font-size:20px; padding-left:8px; }");
|
|
|
|
setFixedSize(labelSize);
|
|
|
|
if (parent != nullptr)
|
|
move(QPoint((parent->geometry().size().width() - this->width()), -this->height()));
|
|
|
|
layout->addWidget(textLabel, 0, Qt::AlignCenter);
|
|
setLayout(layout);
|
|
}
|
|
|
|
void PageLabelWidget::show()
|
|
{
|
|
if (this->pos().y() <= 0 && animation->state() != QPropertyAnimation::Running) {
|
|
auto parent = dynamic_cast<QWidget *>(this->parent());
|
|
if (parent == nullptr) {
|
|
return;
|
|
}
|
|
|
|
QWidget::show();
|
|
//connect(animation,SIGNAL(finished()),this,SLOT(QWidget::hide()));
|
|
animation->disconnect();
|
|
|
|
animation->setStartValue(QPoint((parent->geometry().size().width() - this->width()), -this->height()));
|
|
animation->setEndValue(QPoint((parent->geometry().size().width() - this->width()), 0));
|
|
animation->start();
|
|
}
|
|
}
|
|
|
|
void PageLabelWidget::hide()
|
|
{
|
|
if (this->pos().y() >= 0 && animation->state() != QPropertyAnimation::Running) {
|
|
auto parent = dynamic_cast<QWidget *>(this->parent());
|
|
if (parent == nullptr) {
|
|
return;
|
|
}
|
|
//connect(animation,SIGNAL(finished()),this,SLOT(setHidden()));
|
|
animation->setStartValue(QPoint((parent->geometry().size().width() - this->width()), 0));
|
|
animation->setEndValue(QPoint((parent->geometry().size().width() - this->width()), -this->height()));
|
|
animation->start();
|
|
}
|
|
}
|
|
|
|
void PageLabelWidget::setText(const QString &text)
|
|
{
|
|
textLabel->setText(text);
|
|
}
|
|
|
|
void PageLabelWidget::paintEvent(QPaintEvent *)
|
|
{
|
|
QPainter painter(this);
|
|
|
|
painter.fillRect(0, 0, width(), height(), QColor("#BB000000"));
|
|
}
|
|
|
|
void PageLabelWidget::updatePosition()
|
|
{
|
|
auto parent = dynamic_cast<QWidget *>(this->parent());
|
|
if (parent == nullptr) {
|
|
return;
|
|
}
|
|
|
|
animation->stop();
|
|
if (animation->endValue().toPoint().y() == 0)
|
|
move(QPoint((parent->geometry().size().width() - this->width()), 0));
|
|
else
|
|
move(QPoint((parent->geometry().size().width() - this->width()), -this->height()));
|
|
}
|