00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef GENERATEBIBTEX_H
00011 #define GENERATEBIBTEX_H
00012
00013 #include <qvariant.h>
00014 #include <qdialog.h>
00015 #include "liturl.h"
00016
00017 class QVBoxLayout;
00018 class QHBoxLayout;
00019 class QGridLayout;
00020 class QLabel;
00021 class QLineEdit;
00022 class QPushButton;
00023 class QProgressBar;
00024 class QTextBrowser;
00025 class LitUrl;
00026
00027 class GenerateBibTex : public QDialog
00028 {
00029 Q_OBJECT
00030
00031 public:
00032 GenerateBibTex( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
00033 ~GenerateBibTex();
00034
00035 QLabel* textLabel1;
00036 QLineEdit* filename;
00037 QPushButton* choosefile;
00038 QPushButton* generate;
00039 QLabel* textLabel2;
00040 QProgressBar* progress;
00041 QTextBrowser* log;
00042 QPushButton* pushButton5;
00043
00044 public slots:
00045 virtual void chooseFile();
00046 virtual void setProjectNo( QString n );
00047 virtual void generateBibTex();
00048
00049 protected:
00050 QString project;
00051
00052 QVBoxLayout* GenerateBibTexLayout;
00053 QVBoxLayout* layout18;
00054 QHBoxLayout* layout12;
00055 QHBoxLayout* layout16;
00056 QHBoxLayout* layout17;
00057 QHBoxLayout* layout14;
00058
00059 protected slots:
00060 virtual void languageChange();
00061
00062 };
00063
00064 #endif // GENERATEBIBTEX_H