|
Anti-Plagiat Version 1.0
|
00001 /*********************************************************************** 00002 * Module: IhmPopup.h 00003 * Author: RONGIARD Fabien 00004 * DUREUIL Brice 00005 * CRESSON Thomas 00006 * NAJAR Soufiene 00007 * FATNI Elkhader 00008 * Modified: vendredi 26 mars 2011 16:46:28 00009 * Purpose: Declaration of the class IhmPopup 00010 ***********************************************************************/ 00011 00012 00013 #ifndef IHMPOPUP_H 00014 #define IHMPOPUP_H 00015 00028 #include <QWidget> 00029 #include <QFileDialog> 00030 #include "ui_progress.h" 00031 #include "ui_resultat.h" 00032 00039 class IhmPopup : public QWidget 00040 { 00041 Q_OBJECT 00042 00043 public: 00050 explicit IhmPopup(QWidget *parent = 0); 00056 ~IhmPopup(); 00061 void startDL(); 00071 void result(QString text1,QString text2,QString listSource,int nbSource,int prCenPlagier); 00072 00073 public slots: 00080 void progressDL(int valeur,QString text); 00085 void clickAnnuler(); 00090 void changeMode(); 00095 void clickExportHtml(); 00100 void changeEvent(QEvent *event); 00101 00102 signals: 00107 void annuler(); 00113 void exportHtml(QString file); 00114 00115 private: 00116 Ui::Progress *ui; 00117 Ui::Resultat *ui2; 00118 QString m_text1; 00119 QString m_text2; 00120 int m_idText; 00122 }; 00123 00124 #endif /* IHMPOPUP_H */
1.7.3