File indexing completed on 2024-10-06 09:43:54
0001 /* 0002 This file is part of the KDE libraries 0003 SPDX-FileCopyrightText: 2019 Friedrich W. H. Kossebau <kossebau@kde.org> 0004 0005 SPDX-License-Identifier: LGPL-2.0-only 0006 */ 0007 0008 #ifndef KLICENSEDIALOG_P_H 0009 #define KLICENSEDIALOG_P_H 0010 0011 // Qt 0012 #include <QDialog> 0013 0014 class KAboutLicense; 0015 0016 /** 0017 * @internal 0018 * 0019 * A dialog to display a license 0020 */ 0021 class KLicenseDialog : public QDialog 0022 { 0023 Q_OBJECT 0024 0025 public: 0026 explicit KLicenseDialog(const KAboutLicense &license, QWidget *parent = nullptr); 0027 ~KLicenseDialog() override; 0028 0029 private: 0030 Q_DISABLE_COPY(KLicenseDialog) 0031 }; 0032 0033 #endif