00001 #ifndef _INFO_H 00002 #define _INFO_H 00003 00004 #include "ui_info.h" 00005 #include "../core/biota.h" 00006 00007 class Info : public QWidget, private Ui::Info 00008 { 00009 Q_OBJECT 00010 00011 public: 00012 Info(QWidget *parent = 0, Qt::WFlags f = 0); 00013 00014 void setBiota(Biota b); 00015 00016 protected: 00017 00018 void showEvent( QShowEvent * event ); 00019 00020 private: 00021 00022 Biota biota; 00023 }; 00024 00025 #endif