代码拉取完成,页面将自动刷新
同步操作将从 lynnhua/qkuwoplayer 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
/******************************************************************
*Company: http://www.xiaomutech.com/
*fileName : qtmenuwidget.cpp --- QtMenuWidget
*Auth : yhni (QQ:393320854)
*Create : 2022/9/21
*Description :
*Histroy:
*<Auth> <Date> <Ver> <Content>
* 2022/9/21
*******************************************************************/
#include "qtmenuwidget.h"
#include <QPainter>
#include <QBoxLayout>
QtMenuWidget::QtMenuWidget(QWidget *_centerWidget, QWidget *parent) : QMenu(parent)
{
m_direction = Top;
m_centerWidget = _centerWidget;
setWindowFlags(this->windowFlags() | Qt::NoDropShadowWindowHint);
if (NULL != _centerWidget)
{
QHBoxLayout *horlayout = new QHBoxLayout(this);
horlayout->setContentsMargins(5, 5, 5, 5);
horlayout->addWidget(_centerWidget);
}
}
QtMenuWidget::~QtMenuWidget()
{
}
void QtMenuWidget::setDireciton(int _dir)
{
m_direction = _dir;
this->update();
}
void QtMenuWidget::paintEvent(QPaintEvent *)
{
QPainter painter(this);
painter.setRenderHint(QPainter::Antialiasing);
painter.fillRect(this->rect(), QColor("#fafafa"));
QPainterPath path;
if (Left == m_direction)
{
path.addRoundedRect(8, 1, this->width() - 10, this->height() - 2, 5, 5);
path.moveTo(8, this->height() * 0.5 - 4);
path.lineTo(1, this->height() * 0.5);
path.lineTo(8, this->height() * 0.5 + 4);
}
else if (Top == m_direction)
{
path.addRoundedRect(1, 8, this->width() - 2, this->height() - 10, 5, 5);
path.moveTo(this->width() * 0.5 - 4, 8);
path.lineTo(this->width() * 0.5, 1);
path.lineTo(this->width() * 0.5 + 4, 8);
}
else if (Right == m_direction){
path.addRoundedRect(1, 1, this->width() - 10, this->height() - 2, 5, 5);
path.moveTo(this->width() - 8, this->height() * 0.5 - 4);
path.lineTo(this->width() - 1, this->height() * 0.5);
path.lineTo(this->width() - 8, this->height() * 0.5 + 4);
}
else if (Bottom == m_direction){
QRect rect(1, 1, this->width() - 2, this->height() - 2 - 8);
path.addRoundedRect(rect, 5, 5);
path.moveTo(this->width() * 0.5 - 5, rect.bottom() + 1);
path.lineTo(this->width() * 0.5, this->height() - 2);
path.lineTo(this->width() * 0.5 + 5, rect.bottom() + 1);
}
path.closeSubpath();
painter.setPen(QColor("#e1e1e1"));
painter.setBrush(QColor("#ffffff"));
painter.drawPath(path.simplified());
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。