kradio4  r778
kradioaboutwidget.h
Go to the documentation of this file.
1 /* This file is part of the KDE libraries
2  Copyright (C) 2007 Urs Wolfer <uwolfer at kde.org>
3 
4  Parts of this class have been take from the KAboutApplication class, which was
5  Copyright (C) 2000 Waldo Bastian (bastian@kde.org) and Espen Sand (espen@kde.org)
6 
7  This library is free software; you can redistribute it and/or
8  modify it under the terms of the GNU Library General Public
9  License version 2 as published by the Free Software Foundation.
10 
11  This library is distributed in the hope that it will be useful,
12  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  Library General Public License for more details.
15 
16  You should have received a copy of the GNU Library General Public License
17  along with this library; see the file COPYING.LIB. If not, write to
18  the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19  Boston, MA 02110-1301, USA.
20 */
21 
22 #ifndef KRADIO_ABOUT_WIDGET_H
23 #define KRADIO_ABOUT_WIDGET_H
24 
25 #include <kdialog.h>
26 
27 class KAboutData;
28 
44 class KRadioAboutWidget : public QWidget
45 {
46  Q_OBJECT
47 
48  public:
57  explicit KRadioAboutWidget(const KAboutData *aboutData, QWidget *parent = 0);
58 
59  virtual ~KRadioAboutWidget();
60 
61  private:
62  class Private;
63  Private* const d;
64 
65  Q_PRIVATE_SLOT( d, void _k_showLicense(const QString&) )
66 
67  Q_DISABLE_COPY( KRadioAboutWidget )
68 };
69 
70 #endif
KRadioAboutWidget(const KAboutData *aboutData, QWidget *parent=0)
Constructor.
Private *const d
virtual ~KRadioAboutWidget()
Standard "About Application" dialog box.