/* * Copyright (C) 2022 ~ 2022 Deepin Technology Co., Ltd. * * Author: donghualin * * Maintainer: donghualin * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #ifndef PLUGINCHILDPAGE_H #define PLUGINCHILDPAGE_H #include class QPushButton; class QLabel; class QVBoxLayout; class PluginChildPage : public QWidget { Q_OBJECT public: explicit PluginChildPage(QWidget *parent); ~PluginChildPage() override; void pushWidget(QWidget *widget); void setTitle(const QString &text); Q_SIGNALS: void back(); protected: bool eventFilter(QObject *watched, QEvent *event) override; private: void initUi(); void initConnection(); void resetHeight(); QPixmap backPixmap() const; private: QWidget *m_headerWidget; QPushButton *m_back; QLabel *m_title; QWidget *m_container; QWidget *m_topWidget; QVBoxLayout *m_containerLayout; }; #endif // PLUGINCHILDPAGE_H