00001 #ifndef __ABOUTDLG_H
00002 #define __ABOUTDLG_H
00003
00004 #include <qdialog.h>
00005 #include <qpushbutton.h>
00006 #include <qlabel.h>
00007 #include <qlayout.h>
00008 #include <qvbox.h>
00009
00010 #include <string>
00011
00019 class AboutDlg : public QDialog {
00020 protected:
00025 void buildDlg( );
00026
00027 public:
00028
00029 static const std::string GV_VERSION;
00030 static const std::string GV_CREDITS;
00031 static const std::string GV_DATE;
00032 static const std::string GV_WEBSITE;
00033
00038 AboutDlg( );
00039 };
00040
00041 #endif
00042
00043
00044