301 lines
7.5 KiB
C++
301 lines
7.5 KiB
C++
#include "mytitlebar.h"
|
|
#include <QHBoxLayout>
|
|
#include <QPainter>
|
|
#include <QFile>
|
|
#include <QMouseEvent>
|
|
#include <QDebug>
|
|
|
|
#define BUTTON_HEIGHT 30 //按钮高度
|
|
#define BUTTON_WIDTH 30 //按钮宽度
|
|
#define TITLE_HEIGHT 35 //标题栏高度
|
|
|
|
MyTitleBar::MyTitleBar(QWidget *parent)
|
|
: QWidget(parent)
|
|
, m_colorR(120)
|
|
, m_colorG(120)
|
|
, m_colorB(120)
|
|
, m_isPressed(false)
|
|
, m_buttonType(MIN_MAX_BUTTON)
|
|
{
|
|
//初始化
|
|
initControl();
|
|
initConnections();
|
|
loadStyleSheet("MyTitle");
|
|
}
|
|
|
|
MyTitleBar::~MyTitleBar()
|
|
{
|
|
|
|
}
|
|
|
|
//初始化控件
|
|
void MyTitleBar::initControl()
|
|
{
|
|
//按钮样式
|
|
QString btnStyle(
|
|
"QWidget{"
|
|
"border: none;background-color: rgba(0, 0, 0, 0);"
|
|
"}"
|
|
"QToolTip{"
|
|
"border: none;background-color: rgb(235, 235, 255);color: rgb(45, 45, 45);font-size:15px;"
|
|
"}"
|
|
"QPushButton:hover{"
|
|
"background-color: rgba(255, 0, 0, 30);"
|
|
"}"
|
|
"QPushButton:pressed{"
|
|
"background-color: rgba(255, 0, 0, 30);"
|
|
"}"
|
|
);
|
|
m_pIcon = new QLabel(this);
|
|
m_pIcon->setObjectName("IconContent");
|
|
m_pTitleContent = new QLabel(this);
|
|
m_pButtonMin = new QPushButton(this);
|
|
m_pButtonRestore = new QPushButton(this);
|
|
m_pButtonMax = new QPushButton(this);
|
|
m_pButtonClose = new QPushButton(this);
|
|
m_pButtonMin->setFixedSize(QSize(BUTTON_WIDTH, BUTTON_HEIGHT));
|
|
m_pButtonRestore->setFixedSize(QSize(BUTTON_WIDTH, BUTTON_HEIGHT));
|
|
m_pButtonMax->setFixedSize(QSize(BUTTON_WIDTH, BUTTON_HEIGHT));
|
|
m_pButtonClose->setFixedSize(QSize(BUTTON_WIDTH, BUTTON_HEIGHT));
|
|
m_pTitleContent->setObjectName("TitleContent");
|
|
m_pButtonMin->setObjectName("ButtonMin");
|
|
m_pButtonRestore->setObjectName("ButtonRestore");
|
|
m_pButtonMax->setObjectName("ButtonMax");
|
|
m_pButtonClose->setObjectName("ButtonClose");
|
|
m_pButtonClose->setIconSize(QSize(30, 30));
|
|
m_pButtonClose->setIcon(QIcon(":/resource/close.png"));
|
|
m_pButtonClose->setToolTip("关闭");
|
|
m_pButtonClose->setStyleSheet(btnStyle);
|
|
QHBoxLayout* mylayout = new QHBoxLayout(this);
|
|
mylayout->addWidget(m_pIcon);
|
|
mylayout->addWidget(m_pTitleContent);
|
|
mylayout->addWidget(m_pButtonMin);
|
|
mylayout->addWidget(m_pButtonRestore);
|
|
mylayout->addWidget(m_pButtonMax);
|
|
mylayout->addWidget(m_pButtonClose);
|
|
mylayout->setContentsMargins(5, 0, 0, 0);
|
|
mylayout->setSpacing(3);
|
|
m_pTitleContent->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed);
|
|
this->setFixedHeight(TITLE_HEIGHT);
|
|
this->setWindowFlags(Qt::FramelessWindowHint);
|
|
}
|
|
|
|
//信号槽的绑定
|
|
void MyTitleBar::initConnections()
|
|
{
|
|
connect(m_pButtonMin, SIGNAL(clicked()), this, SLOT(onButtonMinClicked()));
|
|
connect(m_pButtonRestore, SIGNAL(clicked()), this, SLOT(onButtonRestoreClicked()));
|
|
connect(m_pButtonMax, SIGNAL(clicked()), this, SLOT(onButtonMaxClicked()));
|
|
connect(m_pButtonClose, SIGNAL(clicked()), this, SLOT(onButtonCloseClicked()));
|
|
}
|
|
|
|
//设置标题栏背景色,在paintEvent事件中进行绘制标题栏背景色
|
|
//在构造函数中给了默认值,可以外部设置颜色值改变标题栏背景色
|
|
void MyTitleBar::setBackgroundColor(int r, int g, int b)
|
|
{
|
|
m_colorR = r;
|
|
m_colorG = g;
|
|
m_colorB = b;
|
|
//重新绘制(调用paintEvent事件)
|
|
update();
|
|
}
|
|
|
|
//设置标题栏图标
|
|
void MyTitleBar::setTitleIcon(QString filePath)
|
|
{
|
|
QPixmap titleIcon(filePath);
|
|
m_pIcon->setPixmap(titleIcon.scaled(32, 32));
|
|
}
|
|
|
|
//设置标题内容
|
|
void MyTitleBar::setTitleContent(QString titleContent)
|
|
{
|
|
m_pTitleContent->setText(titleContent);
|
|
m_titleContent = titleContent;
|
|
}
|
|
|
|
//设置标题栏长度
|
|
void MyTitleBar::setTitleWidth(int width)
|
|
{
|
|
this->setFixedWidth(width);
|
|
}
|
|
|
|
//设置标题栏上按钮类型
|
|
//由于不同窗口标题栏上的按钮都不一样,所以可以自定义标题栏中的按钮
|
|
//这里提供了四个按钮,分别为最小化、还原、最大化、关闭按钮,如果需要其他按钮可自行添加设置
|
|
void MyTitleBar::setButtonType(ButtonType buttonType)
|
|
{
|
|
m_buttonType = buttonType;
|
|
switch (buttonType)
|
|
{
|
|
case MIN_BUTTON:
|
|
{
|
|
m_pButtonRestore->setVisible(false);
|
|
m_pButtonMax->setVisible(false);
|
|
}
|
|
break;
|
|
case MIN_MAX_BUTTON:
|
|
{
|
|
m_pButtonRestore->setVisible(false);
|
|
}
|
|
break;
|
|
case ONLY_CLOSE_BUTTON:
|
|
{
|
|
m_pButtonMin->setVisible(false);
|
|
m_pButtonRestore->setVisible(false);
|
|
m_pButtonMax->setVisible(false);
|
|
}
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
//设置标题栏中的标题是否会自动滚动,跑马灯的效果
|
|
void MyTitleBar::setTitleRoll()
|
|
{
|
|
connect(&m_titleRollTimer, SIGNAL(timeout()), this, SLOT(onRollTitle()));
|
|
m_titleRollTimer.start(200);
|
|
}
|
|
|
|
//保存窗口最大化前窗口的位置以及大小
|
|
void MyTitleBar::saveRestoreInfo(const QPoint point, const QSize size)
|
|
{
|
|
m_restorePos = point;
|
|
m_restoreSize = size;
|
|
}
|
|
|
|
//获取窗口最大化前窗口的位置以及大小
|
|
void MyTitleBar::getRestoreInfo(QPoint& point, QSize& size)
|
|
{
|
|
point = m_restorePos;
|
|
size = m_restoreSize;
|
|
}
|
|
|
|
//绘制标题栏背景色
|
|
void MyTitleBar::paintEvent(QPaintEvent *event)
|
|
{
|
|
//设置背景色
|
|
QPainter painter(this);
|
|
QPainterPath pathBack;
|
|
pathBack.setFillRule(Qt::WindingFill);
|
|
pathBack.addRoundedRect(QRect(0, 0, this->width(), this->height()), 3, 3);
|
|
painter.setRenderHint(QPainter::SmoothPixmapTransform, true);
|
|
painter.fillPath(pathBack, QBrush(QColor(m_colorR, m_colorG, m_colorB)));
|
|
//当窗口最大化或者还原后,窗口长度变了,标题栏的长度应当一起改变
|
|
if (this->width() != this->parentWidget()->width())
|
|
{
|
|
this->setFixedWidth(this->parentWidget()->width());
|
|
}
|
|
QWidget::paintEvent(event);
|
|
}
|
|
|
|
//双击响应事件,主要是实现双击标题栏进行最大化和最小化操作
|
|
void MyTitleBar::mouseDoubleClickEvent(QMouseEvent *event)
|
|
{
|
|
//只有存在最大化、还原按钮时双击才有效
|
|
if (m_buttonType == MIN_MAX_BUTTON)
|
|
{
|
|
//通过最大化按钮的状态判断当前窗口是处于最大化还是原始大小状态
|
|
//或者通过单独设置变量来表示当前窗口状态
|
|
if (m_pButtonMax->isVisible())
|
|
{
|
|
onButtonMaxClicked();
|
|
}
|
|
else
|
|
{
|
|
onButtonRestoreClicked();
|
|
}
|
|
}
|
|
return QWidget::mouseDoubleClickEvent(event);
|
|
}
|
|
|
|
//以下通过mousePressEvent、mouseMoveEvent、mouseReleaseEvent三个事件实现了鼠标拖动标题栏移动窗口的效果
|
|
void MyTitleBar::mousePressEvent(QMouseEvent *event)
|
|
{
|
|
if (m_buttonType == MIN_MAX_BUTTON)
|
|
{
|
|
//在窗口最大化时禁止拖动窗口
|
|
if (m_pButtonMax->isVisible())
|
|
{
|
|
m_isPressed = true;
|
|
m_startMovePos = event->globalPos();
|
|
}
|
|
}
|
|
else
|
|
{
|
|
m_isPressed = true;
|
|
m_startMovePos = event->globalPos();
|
|
}
|
|
return QWidget::mousePressEvent(event);
|
|
}
|
|
|
|
void MyTitleBar::mouseMoveEvent(QMouseEvent *event)
|
|
{
|
|
if (m_isPressed)
|
|
{
|
|
QPoint movePoint = event->globalPos() - m_startMovePos;
|
|
QPoint widgetPos = this->parentWidget()->pos();
|
|
m_startMovePos = event->globalPos();
|
|
this->parentWidget()->move(widgetPos.x() + movePoint.x(), widgetPos.y() + movePoint.y());
|
|
}
|
|
return QWidget::mouseMoveEvent(event);
|
|
}
|
|
|
|
void MyTitleBar::mouseReleaseEvent(QMouseEvent *event)
|
|
{
|
|
m_isPressed = false;
|
|
return QWidget::mouseReleaseEvent(event);
|
|
}
|
|
|
|
//加载本地样式文件
|
|
//可以将样式直接写在文件中,程序运行时直接加载进来
|
|
void MyTitleBar::loadStyleSheet(const QString &sheetName)
|
|
{
|
|
QFile file(":/Resource Files/" + sheetName + ".css");
|
|
file.open(QFile::ReadOnly);
|
|
if (file.isOpen())
|
|
{
|
|
QString styleSheet = this->styleSheet();
|
|
styleSheet += QLatin1String(file.readAll());
|
|
this->setStyleSheet(styleSheet);
|
|
}
|
|
}
|
|
|
|
//以下为按钮操作响应的槽
|
|
void MyTitleBar::onButtonMinClicked()
|
|
{
|
|
emit signalButtonMinClicked();
|
|
}
|
|
|
|
void MyTitleBar::onButtonRestoreClicked()
|
|
{
|
|
m_pButtonRestore->setVisible(false);
|
|
m_pButtonMax->setVisible(true);
|
|
emit signalButtonRestoreClicked();
|
|
}
|
|
|
|
void MyTitleBar::onButtonMaxClicked()
|
|
{
|
|
m_pButtonMax->setVisible(false);
|
|
m_pButtonRestore->setVisible(true);
|
|
emit signalButtonMaxClicked();
|
|
}
|
|
|
|
void MyTitleBar::onButtonCloseClicked()
|
|
{
|
|
emit signalButtonCloseClicked();
|
|
}
|
|
|
|
//该方法主要是让标题栏中的标题显示为滚动的效果
|
|
void MyTitleBar::onRollTitle()
|
|
{
|
|
static int nPos = 0;
|
|
QString titleContent = m_titleContent;
|
|
//当截取的位置比字符串长时,从头开始
|
|
if (nPos > titleContent.length())
|
|
nPos = 0;
|
|
m_pTitleContent->setText(titleContent.mid(nPos));
|
|
nPos++;
|
|
}
|