1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
|
// SPDX-FileCopyrightText: 2019 - 2022 UnionTech Software Technology Co., Ltd.
//
// SPDX-License-Identifier: GPL-3.0-or-later
#include "lognormalbutton.h"
#include <QKeyEvent>
#include <QDebug>
#include <QStylePainter>
#include <QEvent>
#include <DStyle>
#include <DApplication>
LogNormalButton::LogNormalButton(QWidget *parent):
DPushButton(parent)
{
setFocusPolicy(Qt::StrongFocus);
}
LogNormalButton::LogNormalButton(const QString &text, QWidget *parent):
DPushButton(text, parent)
{
setFocusPolicy(Qt::StrongFocus);
}
LogNormalButton::LogNormalButton(const QIcon &icon, const QString &text, QWidget *parent):
DPushButton(icon, text, parent)
{
setFocusPolicy(Qt::StrongFocus);
}
/**
* @brief LogNormalButton::keyPressEvent
* 增加回车触发按钮功能,捕获回车键盘事件发送空格键盘事件
* @param event
*/
void LogNormalButton::keyPressEvent(QKeyEvent *event)
{
if ((event->key() == Qt::Key_Enter || event->key() == Qt::Key_Return)) {
QKeyEvent spaceEvent(QEvent::KeyPress, Qt::Key_Space, Qt::NoModifier, 65, 32, 16, " ", event->isAutoRepeat(), static_cast<ushort>(event->count()));
DApplication::sendEvent(this, &spaceEvent);
return;
}
DPushButton::keyPressEvent(event);
}
/**
* @brief LogNormalButton::keyReleaseEvent
* 增加回车触发按钮功能,捕获回车键盘事件发送空格键盘事件
* @param event
*/
void LogNormalButton::keyReleaseEvent(QKeyEvent *event)
{
if ((event->key() == Qt::Key_Enter || event->key() == Qt::Key_Return)) {
QKeyEvent spaceEvent(QEvent::KeyRelease, Qt::Key_Space, Qt::NoModifier, 65, 32, 16, " ", event->isAutoRepeat(), static_cast<ushort>(event->count()));
DApplication::sendEvent(this, &spaceEvent);
return;
}
DPushButton::keyReleaseEvent(event);
}
/**
* @brief LogNormalButton::paintEvent
* 绘制焦点边框,屏蔽默认绘制事件,只在tabfoucus时绘制边框
* @param e
*/
void LogNormalButton::paintEvent(QPaintEvent *e)
{
Q_UNUSED(e)
DStyle *style = dynamic_cast<DStyle *>(DApplication::style());
QStyleOptionButton btn;
initStyleOption(&btn);
QStylePainter painter(this);
style->proxy()->drawControl(DStyle::CE_PushButtonBevel, &btn, &painter, this);
QStyleOptionButton subopt = btn;
subopt.rect = style->proxy()->subElementRect(DStyle::SE_PushButtonContents, &btn, this);
style->proxy()->drawControl(DStyle::CE_PushButtonLabel, &subopt, &painter, this);
if (hasFocus() && (m_reson == Qt::TabFocusReason || m_reson == Qt::BacktabFocusReason)) {
QStyleOptionFocusRect fropt;
fropt.QStyleOption::operator=(btn);
fropt.rect = style->proxy()->subElementRect(DStyle::SE_PushButtonFocusRect, & btn, this);
style->proxy()->drawPrimitive(DStyle::PE_FrameFocusRect, &fropt, &painter, this);
}
}
/**
* @brief LogNormalButton::focusInEvent
* 捕获最近一次获得焦点的reason以区分是否为tabfoucs
* @param event
*/
void LogNormalButton::focusInEvent(QFocusEvent *event)
{
if (event->reason() != Qt::ActiveWindowFocusReason) {
m_reson = event->reason();
}
DPushButton::focusInEvent(event);
}
|