dde-control-center
Deepin Control Center
载入中...
搜索中...
未找到
titlelabel.h
1//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.
2//
3//SPDX-License-Identifier: GPL-3.0-or-later
4#pragma once
5
6#include "interface/namespace.h"
7#include <DLabel>
8
9namespace DCC_NAMESPACE
10{
11
12class TitleLabel : public Dtk::Widget::DLabel
13{
14 Q_OBJECT
15public:
16 TitleLabel(QWidget *parent = nullptr, Qt::WindowFlags f = Qt::WindowFlags());
17 TitleLabel(const QString &text, QWidget *parent = nullptr, Qt::WindowFlags f = Qt::WindowFlags());
18
19protected:
20 bool event(QEvent *e) override;
21};
22
23} // namespace DCC_NAMESPACE
Definition titlelabel.h:13