--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/QTfrontend/frameTeam.cpp Fri Feb 24 16:06:12 2006 +0000
@@ -0,0 +1,39 @@
+#include "frameTeam.h"
+#include "teamselhelper.h"
+
+#include <QResizeEvent>
+#include <QCoreApplication>
+
+#include <iostream>
+using namespace std;
+
+FrameTeams::FrameTeams(QWidget* parent) :
+ QWidget(parent), mainLayout(this)
+{
+}
+
+void FrameTeams::addTeam(tmprop team)
+{
+ TeamShowWidget* pTeamShowWidget =new TeamShowWidget(team, this);
+ int hght=teamToWidget.empty() ? 0 : teamToWidget.begin()->second->size().height();
+ teamToWidget.insert(make_pair(team, pTeamShowWidget));
+ mainLayout.addWidget(pTeamShowWidget);
+ QResizeEvent* pevent=new QResizeEvent(parentWidget()->size(), parentWidget()->size());
+ QCoreApplication::postEvent(parentWidget(), pevent);
+}
+
+void FrameTeams::removeTeam(tmprop team)
+{
+ tmapTeamToWidget::iterator it=teamToWidget.find(team);
+ mainLayout.removeWidget(it->second);
+ delete it->second;
+ teamToWidget.erase(team);
+}
+
+QWidget* FrameTeams::getTeamWidget(tmprop team)
+{
+ tmapTeamToWidget::iterator it=teamToWidget.find(team);
+ QWidget* ret = it!=teamToWidget.end() ? it->second : 0;
+ if(!ret) throw; // FIXME: this is debug exception
+ return ret;
+}