Krita Source Code Documentation
Loading...
Searching...
No Matches
kaboutkdedialog_p.h
Go to the documentation of this file.
1/* This file is part of the KDE libraries
2 SPDX-FileCopyrightText: 2007 Urs Wolfer <uwolfer at kde.org>
3
4 Parts of this class have been take from the KAboutKDE class, which was
5 SPDX-FileCopyrightText: 2000 Espen Sand <espen@kde.org>
6
7 SPDX-License-Identifier: LGPL-2.0-only
8*/
9
10#ifndef KABOUT_KDE_DIALOG_H
11#define KABOUT_KDE_DIALOG_H
12
13#include <QDialog>
14
15namespace KDEPrivate
16{
17
32class KisKAboutKdeDialog : public QDialog
33{
34 Q_OBJECT
35
36public:
45 explicit KisKAboutKdeDialog(QWidget *parent = 0);
46
47private:
48 class Private;
49 Private *const d;
50 Q_DISABLE_COPY(KisKAboutKdeDialog)
51};
52
53}
54
55#endif
Standard "About KDE" dialog box.