00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef EASYSOK_INFO_DIALOG_INC_GUARD_H
00022 #define EASYSOK_INFO_DIALOG_INC_GUARD_H
00023
00024
00025 #include <vector>
00026
00027 #include <kdialogbase.h>
00028
00029
00030 class Collection;
00031 class KURLLabel;
00032 class Level;
00033 class QLabel;
00034
00035
00036
00037
00045 class InfoDialog : public KDialogBase
00046 {
00047 Q_OBJECT
00048
00049 public:
00050
00060 InfoDialog(Level const & level, bool temporary, QWidget * parent = 0, char const * name = 0);
00061
00062
00072 InfoDialog(Collection const & collection, bool temporary, QWidget * parent = 0, char const * name = 0);
00073
00074
00075 private slots:
00076
00083 void emailClicked(const QString & url);
00084
00085
00092 void homepageClicked(const QString & url);
00093
00094
00095 private:
00096
00110 void setupDialog(QStringList const & authors, QStringList const & emails, QString const & homepage,
00111 QString const & copyright, QString const & name, QString const & info,
00112 int difficulty, QString const & temporary);
00113 };
00114
00115
00116 #endif