DtkWidget
DTK Widget module
载入中...
搜索中...
未找到
dwarningbutton.h
浏览该文件的文档.
1// SPDX-FileCopyrightText: 2022 UnionTech Software Technology Co., Ltd.
2//
3// SPDX-License-Identifier: LGPL-3.0-or-later
4
5#ifndef DWARNINGBUTTON_H
6#define DWARNINGBUTTON_H
7
8#include <dtkwidget_global.h>
9#include <DPushButton>
10
11DWIDGET_BEGIN_NAMESPACE
12
13class DWarningButton : public DPushButton
14{
15public:
16 DWarningButton(QWidget *parent = nullptr);
17
18protected:
19 void initStyleOption(QStyleOptionButton *option) const;
20 void paintEvent(QPaintEvent *e) override;
21};
22
23DWIDGET_END_NAMESPACE
24
25#endif // DWARNINGBUTTON_H
警告按钮控件
Definition dwarningbutton.h:14