forked from linuxdeepin/dtkwidget
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
增加应用内通知动画 Log:
- Loading branch information
Showing
6 changed files
with
179 additions
and
24 deletions.
There are no files selected for viewing
This file contains 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 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 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 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 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 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,33 @@ | ||
// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd. | ||
// | ||
// SPDX-License-Identifier: LGPL-3.0-or-later | ||
|
||
#ifndef DABOUTDIALOG_P_H | ||
#define DABOUTDIALOG_P_H | ||
|
||
#include "dmessagemanager.h" | ||
|
||
#include <DObjectPrivate> | ||
|
||
#include <QLabel> | ||
#include <QPropertyAnimation> | ||
#include <QParallelAnimationGroup> | ||
|
||
DWIDGET_BEGIN_NAMESPACE | ||
|
||
class DMessageManagerPrivate : public DCORE_NAMESPACE::DObjectPrivate | ||
{ | ||
public: | ||
DMessageManagerPrivate(DMessageManager *qq); | ||
|
||
QPropertyAnimation *m_aniGeometry; | ||
QPropertyAnimation *m_aniOpacity;; | ||
QParallelAnimationGroup *m_aniGroup; | ||
QLabel *m_label; | ||
|
||
D_DECLARE_PUBLIC(DMessageManager); | ||
}; | ||
|
||
DWIDGET_END_NAMESPACE | ||
|
||
#endif // DABOUTDIALOG_P_H |