-
Notifications
You must be signed in to change notification settings - Fork 146
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
使用dci icon重绘toolbutton, 增加动画 Log:
- Loading branch information
Showing
8 changed files
with
118 additions
and
4 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
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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,26 @@ | ||
// 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 <dtoolbutton.h> | ||
#include <DObjectPrivate> | ||
|
||
DWIDGET_BEGIN_NAMESPACE | ||
|
||
class DToolButtonPrivate : public DCORE_NAMESPACE::DObjectPrivate | ||
{ | ||
public: | ||
DToolButtonPrivate(DToolButton *qq); | ||
Check warning on line 16 in src/widgets/private/dtoolbutton_p.h GitHub Actions / cppcheck
|
||
|
||
DDciIcon m_dciIcon; | ||
DDciIconPlayer m_dciPlayer; | ||
|
||
Q_DECLARE_PUBLIC(DToolButton) | ||
}; | ||
|
||
DWIDGET_END_NAMESPACE | ||
|
||
#endif // DABOUTDIALOG_P_H |