00001 /*************************************************************************** 00002 helpme.h - description 00003 ------------------- 00004 begin : Sat Dec 4 1999 00005 begin : Tue Jul 25 2000 00006 copyright : (C) 2000 -2004 by llornkcor 00007 email : ljp@llornkcor.com 00008 ***************************************************************************/ 00009 /*************************************************************************** 00010 * * 00011 * This program is free software; you can redistribute it and/or modify * 00012 * it under the terms of the GNU General Public License as published by * 00013 * the Free Software Foundation; either version 2 of the License, or * 00014 * (at your option) any later version. * 00015 * * 00016 ***************************************************************************/ 00017 00018 #ifndef HELPME_H 00019 #define HELPME_H 00020 00021 #include "gutenbrowser.h" 00022 #include <qmultilineedit.h> 00023 //#include "CConfigFile.h" 00024 //#include <kprocess.h> 00025 //#include <kprogress.h> 00026 #include <qdialog.h> 00027 #include <qprogressdialog.h> 00028 #include <qwidget.h> 00029 00030 00035 class HelpMe : public QDialog { 00036 Q_OBJECT 00037 public: 00038 HelpMe(QWidget *parent, QString name); 00039 ~HelpMe(); 00040 00041 // KProgress *progressBar; 00042 QString url; 00043 QLabel *label; 00044 QLabel *QTlabel; 00045 // CConfigFile *config; 00046 QString local_library; 00047 00048 private slots: 00049 void goToURL(); 00050 void goToURL2(); 00051 void goToURL3(); 00052 void help(); 00053 void goGetit( QString url); 00054 private: 00055 QMultiLineEdit* Edit; 00056 00057 00058 }; 00059 00060 #endif
1.4.2