00001 00004 #ifndef SYSINFOTAB_H 00005 #define SYSINFOTAB_H 00006 00007 #include <QWidget> 00008 #include <QTextEdit> 00009 #include <QtGui> 00010 00011 #include "sysinfo.h" 00012 00013 class SysInfoTab : public QWidget 00014 { 00015 Q_OBJECT 00016 public: 00017 SysInfoTab(QWidget *parent=0); 00018 ~SysInfoTab(); 00019 00020 signals: 00021 void sendDetails(QString name, QString pid, QString cpu, QString owner); 00022 00023 private: 00024 QLabel *descriptionLabel; 00025 QLabel *hardWare; 00026 QLabel *kernel; 00027 QLabel *gnome; 00028 QLabel *status; 00029 QLabel *freeSpace; 00030 QLabel *memory; 00031 QLabel *release; 00032 QVBoxLayout *mainLayout; 00033 }; 00034 00035 #endif