commit
4b5fd60f62
|
@ -1,3 +1,15 @@
|
||||||
|
ukui-menu (3.1.1-ok4~1020) yangtze; urgency=medium
|
||||||
|
|
||||||
|
* close-cd #129225【开始菜单】【PC】在列表顶部或底部继续触摸拖动概率性出现图标缺失情况,再次滑动显示正常(1/10)
|
||||||
|
|
||||||
|
-- lixueman <lixueman@kylinos.cn> Thu, 20 Oct 2022 09:11:06 +0800
|
||||||
|
|
||||||
|
ukui-menu (3.1.1-ok4~1012) yangtze; urgency=medium
|
||||||
|
|
||||||
|
* close-cd #116176 【设计】【开始菜单】【浅色模式】底板缺少描边及阴影
|
||||||
|
|
||||||
|
-- lixueman <lixueman@kylinos.cn> Wed, 12 Oct 2022 11:14:50 +0800
|
||||||
|
|
||||||
ukui-menu (3.1.1-ok4~0920) yangtze; urgency=medium
|
ukui-menu (3.1.1-ok4~0920) yangtze; urgency=medium
|
||||||
|
|
||||||
* 任务:开始菜单工具提示内容优化(收藏&最近 区域),增加路径提示
|
* 任务:开始菜单工具提示内容优化(收藏&最近 区域),增加路径提示
|
||||||
|
|
|
@ -29,6 +29,7 @@ ListView::ListView(QWidget *parent/*, int width, int height, int module*/):
|
||||||
this->h = 540;
|
this->h = 540;
|
||||||
this->module = 1;
|
this->module = 1;
|
||||||
initWidget();
|
initWidget();
|
||||||
|
setAttribute(Qt::WA_AcceptTouchEvents);
|
||||||
m_listmodel = new QStandardItemModel(this);
|
m_listmodel = new QStandardItemModel(this);
|
||||||
this->setModel(m_listmodel);
|
this->setModel(m_listmodel);
|
||||||
m_ukuiMenuInterface = new UkuiMenuInterface;
|
m_ukuiMenuInterface = new UkuiMenuInterface;
|
||||||
|
@ -95,6 +96,21 @@ void ListView::updateData(QVector<QStringList> data)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool ListView::event(QEvent *e)
|
||||||
|
{
|
||||||
|
switch (e->type()) {
|
||||||
|
case QEvent::TouchBegin:
|
||||||
|
m_scrollbarState = false;
|
||||||
|
break;
|
||||||
|
case QEvent::ChildRemoved:
|
||||||
|
m_scrollbarState = true;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
return QListView::event(e);
|
||||||
|
}
|
||||||
|
|
||||||
void ListView::onClicked(QModelIndex index)
|
void ListView::onClicked(QModelIndex index)
|
||||||
{
|
{
|
||||||
QVariant var = m_listmodel->data(index, Qt::DisplayRole);
|
QVariant var = m_listmodel->data(index, Qt::DisplayRole);
|
||||||
|
@ -119,14 +135,18 @@ void ListView::onClicked(QModelIndex index)
|
||||||
void ListView::enterEvent(QEvent *e)
|
void ListView::enterEvent(QEvent *e)
|
||||||
{
|
{
|
||||||
Q_UNUSED(e);
|
Q_UNUSED(e);
|
||||||
|
if (m_scrollbarState) {
|
||||||
this->selectionModel()->clear();
|
this->selectionModel()->clear();
|
||||||
this->verticalScrollBar()->setVisible(true);
|
verticalScrollBar()->setVisible(true);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void ListView::leaveEvent(QEvent *e)
|
void ListView::leaveEvent(QEvent *e)
|
||||||
{
|
{
|
||||||
Q_UNUSED(e);
|
Q_UNUSED(e);
|
||||||
this->verticalScrollBar()->setVisible(false);
|
if (m_scrollbarState) {
|
||||||
|
verticalScrollBar()->setVisible(false);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void ListView::paintEvent(QPaintEvent *e)
|
void ListView::paintEvent(QPaintEvent *e)
|
||||||
|
|
|
@ -49,11 +49,12 @@ protected:
|
||||||
void leaveEvent(QEvent *e) Q_DECL_OVERRIDE;
|
void leaveEvent(QEvent *e) Q_DECL_OVERRIDE;
|
||||||
void paintEvent(QPaintEvent *e) override;
|
void paintEvent(QPaintEvent *e) override;
|
||||||
void keyPressEvent(QKeyEvent *e);
|
void keyPressEvent(QKeyEvent *e);
|
||||||
|
bool event(QEvent *e);
|
||||||
private:
|
private:
|
||||||
int w = 0;
|
int w = 0;
|
||||||
int h = 0;
|
int h = 0;
|
||||||
int m_preRowCount;
|
int m_preRowCount;
|
||||||
|
bool m_scrollbarState = true;
|
||||||
|
|
||||||
|
|
||||||
private Q_SLOTS:
|
private Q_SLOTS:
|
||||||
|
|
|
@ -54,23 +54,12 @@ void MainViewWidget::styleChangeSlot(const QString &style)
|
||||||
|
|
||||||
void MainViewWidget::paintEvent(QPaintEvent *event)
|
void MainViewWidget::paintEvent(QPaintEvent *event)
|
||||||
{
|
{
|
||||||
// double transparency = getTransparency();
|
QRect rect = this->rect().adjusted(5, 5, 0, -5);
|
||||||
QRect rect = this->rect();
|
|
||||||
QPainterPath path;
|
QPainterPath path;
|
||||||
QPainter painter(this);
|
QPainter painter(this);
|
||||||
|
path.addRoundedRect(rect, 10, 10);
|
||||||
painter.setRenderHint(QPainter::Antialiasing); // 反锯齿;
|
painter.setRenderHint(QPainter::Antialiasing); // 反锯齿;
|
||||||
painter.setPen(Qt::transparent);
|
painter.setPen(Qt::transparent);
|
||||||
qreal radius = 10;
|
|
||||||
path.moveTo(rect.topRight() - QPointF(radius, 0));
|
|
||||||
path.lineTo(rect.topLeft() + QPointF(radius, 0));
|
|
||||||
path.quadTo(rect.topLeft(), rect.topLeft() + QPointF(0, radius));
|
|
||||||
path.lineTo(rect.bottomLeft() + QPointF(0, -radius));
|
|
||||||
path.quadTo(rect.bottomLeft(), rect.bottomLeft() + QPointF(radius, 0));
|
|
||||||
path.lineTo(rect.bottomRight() - QPointF(radius, 0));
|
|
||||||
path.quadTo(rect.bottomRight(), rect.bottomRight() + QPointF(0, -radius));
|
|
||||||
path.lineTo(rect.topRight() + QPointF(0, radius));
|
|
||||||
path.quadTo(rect.topRight(), rect.topRight() + QPointF(-radius, -0));
|
|
||||||
painter.setPen(Qt::transparent);
|
|
||||||
painter.setOpacity(0.58);
|
painter.setOpacity(0.58);
|
||||||
painter.fillPath(path, m_backColor);
|
painter.fillPath(path, m_backColor);
|
||||||
QWidget::paintEvent(event);
|
QWidget::paintEvent(event);
|
||||||
|
|
|
@ -674,27 +674,29 @@ void MainWindow::paintEvent(QPaintEvent *event)
|
||||||
if ( transparency == 1) {
|
if ( transparency == 1) {
|
||||||
curColor.setAlpha(255);
|
curColor.setAlpha(255);
|
||||||
}
|
}
|
||||||
QRect rect = this->rect();
|
QRect rect = this->rect().adjusted(5, 5, -5, -5);
|
||||||
QPainterPath path;
|
QPainterPath path;
|
||||||
// rect.setTopLeft(QPoint(rect.x()+320,rect.y()));
|
|
||||||
QPainter painter(this);
|
QPainter painter(this);
|
||||||
painter.setRenderHint(QPainter::Antialiasing); // 反锯齿;
|
painter.setRenderHint(QPainter::Antialiasing); // 反锯齿;
|
||||||
|
painter.save();
|
||||||
painter.setPen(Qt::transparent);
|
painter.setPen(Qt::transparent);
|
||||||
qreal radius = 10;
|
path.addRoundedRect(rect, 10, 10);
|
||||||
path.moveTo(rect.topRight() - QPointF(radius, 0));
|
|
||||||
path.lineTo(rect.topLeft() + QPointF(radius, 0));
|
|
||||||
path.quadTo(rect.topLeft(), rect.topLeft() + QPointF(0, radius));
|
|
||||||
path.lineTo(rect.bottomLeft() + QPointF(0, -radius));
|
|
||||||
path.quadTo(rect.bottomLeft(), rect.bottomLeft() + QPointF(radius, 0));
|
|
||||||
path.lineTo(rect.bottomRight() - QPointF(radius, 0));
|
|
||||||
path.quadTo(rect.bottomRight(), rect.bottomRight() + QPointF(0, -radius));
|
|
||||||
path.lineTo(rect.topRight() + QPointF(0, radius));
|
|
||||||
path.quadTo(rect.topRight(), rect.topRight() + QPointF(-radius, -0));
|
|
||||||
painter.setBrush(curColor);
|
painter.setBrush(curColor);
|
||||||
painter.setPen(Qt::transparent);
|
painter.setPen(Qt::transparent);
|
||||||
painter.setOpacity(transparency);
|
painter.setOpacity(transparency);
|
||||||
painter.drawPath(path);
|
painter.drawPath(path);
|
||||||
|
painter.restore();
|
||||||
KWindowEffects::enableBlurBehind(this->winId(), true, QRegion(path.toFillPolygon().toPolygon()));
|
KWindowEffects::enableBlurBehind(this->winId(), true, QRegion(path.toFillPolygon().toPolygon()));
|
||||||
|
QColor color = Qt::black;
|
||||||
|
painter.save();
|
||||||
|
for (int i = 0; i < 7; i++) {
|
||||||
|
rect = this->rect().adjusted(i, i, - i, - i);
|
||||||
|
color.setAlpha(i * 6);
|
||||||
|
painter.setBrush(Qt::NoBrush);
|
||||||
|
painter.setPen(QPen(color, 1));
|
||||||
|
painter.drawRoundedRect(rect, 10, 10);
|
||||||
|
}
|
||||||
|
painter.restore();
|
||||||
QMainWindow::paintEvent(event);
|
QMainWindow::paintEvent(event);
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
|
@ -1276,7 +1278,7 @@ void MainWindow::on_minMaxChangeButton_clicked()
|
||||||
m_maxAnimation->setDuration(1);
|
m_maxAnimation->setDuration(1);
|
||||||
} else {
|
} else {
|
||||||
m_animationPage->show();
|
m_animationPage->show();
|
||||||
m_animationPage->setGeometry(this->x(), this->y(), Style::m_minw, Style::m_minh);
|
m_animationPage->setGeometry(this->x() + 5, this->y() + 5, Style::m_minw - 10, Style::m_minh - 10);
|
||||||
m_animationPage->raise();
|
m_animationPage->raise();
|
||||||
m_animationPage->repaint();
|
m_animationPage->repaint();
|
||||||
m_maxAnimation->setDuration(260);
|
m_maxAnimation->setDuration(260);
|
||||||
|
@ -1287,7 +1289,7 @@ void MainWindow::on_minMaxChangeButton_clicked()
|
||||||
loop.exec();
|
loop.exec();
|
||||||
m_maxAnimation->setEasingCurve(QEasingCurve::OutExpo);
|
m_maxAnimation->setEasingCurve(QEasingCurve::OutExpo);
|
||||||
// m_maxAnimation->setStartValue(QRect(Style::m_primaryScreenX, Style::m_primaryScreenY + Style::m_availableScreenHeight - Style::minh, Style::minw, Style::minh));
|
// m_maxAnimation->setStartValue(QRect(Style::m_primaryScreenX, Style::m_primaryScreenY + Style::m_availableScreenHeight - Style::minh, Style::minw, Style::minh));
|
||||||
m_maxAnimation->setStartValue(QRect(this->x(), this->y(), Style::m_minw, Style::m_minh));
|
m_maxAnimation->setStartValue(QRect(this->x() + 5, this->y() + 5, Style::m_minw - 10, Style::m_minh - 10));
|
||||||
m_maxAnimation->setEndValue(QRect(0, 0, Style::m_availableScreenWidth, Style::m_availableScreenHeight));
|
m_maxAnimation->setEndValue(QRect(0, 0, Style::m_availableScreenWidth, Style::m_availableScreenHeight));
|
||||||
|
|
||||||
m_maxAnimation->start(QAbstractAnimation::DeleteWhenStopped);
|
m_maxAnimation->start(QAbstractAnimation::DeleteWhenStopped);
|
||||||
|
@ -1410,7 +1412,7 @@ void MainWindow::showNormalWindowSlot()
|
||||||
m_isFullScreen = false;
|
m_isFullScreen = false;
|
||||||
m_minAnimation->setEasingCurve(QEasingCurve::OutExpo);
|
m_minAnimation->setEasingCurve(QEasingCurve::OutExpo);
|
||||||
m_minAnimation->setStartValue(QRect(0, 0, Style::m_availableScreenWidth, Style::m_availableScreenHeight));
|
m_minAnimation->setStartValue(QRect(0, 0, Style::m_availableScreenWidth, Style::m_availableScreenHeight));
|
||||||
m_minAnimation->setEndValue(QRect(this->x(), this->y(), Style::m_minw, Style::m_minh));
|
m_minAnimation->setEndValue(QRect(this->x() + 5, this->y() + 5, Style::m_minw - 10, Style::m_minh - 10));
|
||||||
|
|
||||||
m_minAnimation->start(QAbstractAnimation::DeleteWhenStopped);
|
m_minAnimation->start(QAbstractAnimation::DeleteWhenStopped);
|
||||||
m_fullWindow->hide();
|
m_fullWindow->hide();
|
||||||
|
|
Loading…
Reference in New Issue