00001 /* This file is part of the KDE libraries 00002 Copyright (C) 2007 Urs Wolfer <uwolfer at kde.org> 00003 00004 Parts of this class have been take from the KAboutApplication class, which was 00005 Copyright (C) 2000 Waldo Bastian (bastian@kde.org) and Espen Sand (espen@kde.org) 00006 00007 This library is free software; you can redistribute it and/or 00008 modify it under the terms of the GNU Library General Public 00009 License version 2 as published by the Free Software Foundation. 00010 00011 This library is distributed in the hope that it will be useful, 00012 but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00014 Library General Public License for more details. 00015 00016 You should have received a copy of the GNU Library General Public License 00017 along with this library; see the file COPYING.LIB. If not, write to 00018 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 00019 Boston, MA 02110-1301, USA. 00020 */ 00021 00022 #ifndef KRADIO_ABOUT_WIDGET_H 00023 #define KRADIO_ABOUT_WIDGET_H 00024 00025 #include <kdialog.h> 00026 00027 class KAboutData; 00028 00044 class KRadioAboutWidget : public QWidget 00045 { 00046 Q_OBJECT 00047 00048 public: 00057 explicit KRadioAboutWidget(const KAboutData *aboutData, QWidget *parent = 0); 00058 00059 virtual ~KRadioAboutWidget(); 00060 00061 private: 00062 class Private; 00063 Private* const d; 00064 00065 Q_PRIVATE_SLOT( d, void _k_showLicense(const QString&) ) 00066 00067 Q_DISABLE_COPY( KRadioAboutWidget ) 00068 }; 00069 00070 #endif