-
Notifications
You must be signed in to change notification settings - Fork 40
feat: implement custom PageButton for calendar navigation #337
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,109 @@ | ||
| // SPDX-FileCopyrightText: 2019 - 2025 UnionTech Software Technology Co., Ltd. | ||
| // | ||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||
| #include "pagebutton.h" | ||
|
|
||
| #include <QMouseEvent> | ||
| #include <QPainter> | ||
| #include <QHBoxLayout> | ||
|
|
||
| #include <DPaletteHelper> | ||
|
|
||
| DGUI_USE_NAMESPACE | ||
| DWIDGET_USE_NAMESPACE | ||
|
|
||
| PageButton::PageButton(QWidget *parent) | ||
| : QFrame(parent) | ||
| , m_hover(false) | ||
| , m_mousePress(false) | ||
| , m_iconButton(new CommonIconButton(this)) | ||
| { | ||
| initUI(); | ||
| } | ||
|
|
||
| PageButton::~PageButton() | ||
| { | ||
| } | ||
|
|
||
| void PageButton::initUI() | ||
| { | ||
| setFixedSize(30, 30); | ||
| setForegroundRole(QPalette::BrightText); | ||
| m_iconButton->setFixedSize(12, 12); | ||
| m_iconButton->setForegroundRole(QPalette::BrightText); | ||
|
|
||
| // 居中放置图标 | ||
| QHBoxLayout* hLayout = new QHBoxLayout(this); | ||
| hLayout->addWidget(m_iconButton, 0, Qt::AlignCenter); | ||
| } | ||
|
|
||
| void PageButton::setIcon(const QIcon &icon) | ||
| { | ||
| m_iconButton->setIcon(icon, Qt::black, Qt::white); | ||
| } | ||
|
|
||
| bool PageButton::event(QEvent* e) | ||
| { | ||
| switch (e->type()) { | ||
| case QEvent::Leave: | ||
| case QEvent::Enter: | ||
| m_hover = e->type() == QEvent::Enter; | ||
| update(); | ||
| break; | ||
| default: | ||
| break; | ||
| } | ||
| return QWidget::event(e); | ||
| } | ||
|
|
||
| void PageButton::paintEvent(QPaintEvent* e) | ||
| { | ||
| Q_UNUSED(e) | ||
| QPainter p(this); | ||
| QPalette palette = this->palette(); | ||
| QColor bgColor, textColor; | ||
| if (m_mousePress) { | ||
| textColor = palette.highlight().color(); | ||
| bgColor = palette.windowText().color(); | ||
| bgColor.setAlphaF(0.15); | ||
| } else if(m_hover) { | ||
| textColor = palette.windowText().color(); | ||
| bgColor = palette.windowText().color(); | ||
| bgColor.setAlphaF(0.1); | ||
| } else { | ||
| textColor = palette.windowText().color(); | ||
| bgColor = DPaletteHelper::instance()->palette(this).color(DPalette::ItemBackground); | ||
| bgColor.setAlphaF(0); | ||
| } | ||
| palette.setBrush(QPalette::BrightText, textColor); | ||
| m_iconButton->setPalette(palette); | ||
|
|
||
| p.setBrush(bgColor); | ||
| p.setRenderHint(QPainter::Antialiasing); | ||
| p.setPen(Qt::NoPen); | ||
| p.drawRoundedRect(rect(), 8, 8); | ||
| return QFrame::paintEvent(e); | ||
| } | ||
|
|
||
| void PageButton::mousePressEvent(QMouseEvent *event) | ||
| { | ||
| if(m_mousePress != true) { | ||
| m_mousePress = true; | ||
| update(); | ||
| } | ||
| QWidget::mousePressEvent(event); | ||
| } | ||
|
|
||
| void PageButton::mouseReleaseEvent(QMouseEvent* event) | ||
| { | ||
| if(m_mousePress == true) { | ||
| m_mousePress = false; | ||
| update(); | ||
| } | ||
|
|
||
| if (underMouse() && this->rect().contains(event->pos())) { | ||
| Q_EMIT clicked(); | ||
| } | ||
|
|
||
| QWidget::mouseReleaseEvent(event); | ||
|
wjyrich marked this conversation as resolved.
|
||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,38 @@ | ||
| // SPDX-FileCopyrightText: 2019 - 2025 UnionTech Software Technology Co., Ltd. | ||
| // | ||
| // SPDX-License-Identifier: LGPL-3.0-or-later | ||
| #ifndef PAGEBUTTON_H | ||
| #define PAGEBUTTON_H | ||
|
|
||
| #include "commoniconbutton.h" | ||
|
|
||
| #include <QFrame> | ||
|
|
||
| class PageButton : public QFrame | ||
| { | ||
| Q_OBJECT | ||
| public: | ||
| explicit PageButton(QWidget *parent = nullptr); | ||
| ~PageButton(); | ||
|
|
||
| void setIcon(const QIcon &icon); | ||
|
|
||
| signals: | ||
| void clicked(); | ||
|
|
||
| protected: | ||
| bool event(QEvent* e) override; | ||
| void paintEvent(QPaintEvent* e) override; | ||
| void mousePressEvent(QMouseEvent* event) override; | ||
| void mouseReleaseEvent(QMouseEvent* event) override; | ||
|
|
||
| private: | ||
| void initUI(); | ||
|
|
||
| private: | ||
| bool m_hover; | ||
| bool m_mousePress; | ||
| CommonIconButton *m_iconButton; | ||
| }; | ||
|
|
||
| #endif // PAGEBUTTON_H | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.