26 lines
523 B
C++
26 lines
523 B
C++
// SPDX-FileCopyrightText: 2022 UnionTech Software Technology Co., Ltd.
|
|
//
|
|
// SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
#ifndef DWARNINGBUTTON_H
|
|
#define DWARNINGBUTTON_H
|
|
|
|
#include <dtkwidget_global.h>
|
|
#include <DPushButton>
|
|
|
|
DWIDGET_BEGIN_NAMESPACE
|
|
|
|
class DWarningButton : public DPushButton
|
|
{
|
|
public:
|
|
DWarningButton(QWidget *parent = nullptr);
|
|
|
|
protected:
|
|
void initStyleOption(QStyleOptionButton *option) const;
|
|
void paintEvent(QPaintEvent *e) override;
|
|
};
|
|
|
|
DWIDGET_END_NAMESPACE
|
|
|
|
#endif // DWARNINGBUTTON_H
|