NS/releases/3.01/source/mod/AvHTeamHierarchy.h
Karl 04c334c94b Tagging 3.01 release (again)
git-svn-id: https://unknownworlds.svn.cloudforge.com/ns1@15 67975925-1194-0748-b3d5-c16f83f1a3a1
2005-03-12 22:19:53 +00:00

58 lines
No EOL
1.6 KiB
C++

#ifndef AVHTEAMHIERARCHY_H
#define AVHTEAMHIERARCHY_H
#include "ui/UIComponents.h"
#include "VGUI_TextPanel.h"
#include "mod/AvHEntityHierarchy.h"
#include "ui/StaticLabel.h"
#include "mod/AvHMapExtents.h"
using vgui::Panel;
using vgui::TextPanel;
class AvHTeamHierarchy : public StaticLabel
{
public:
AvHTeamHierarchy(int wide,int tall);
void SetFullScreen(bool inFullScreen);
void GetWorldPosFromMouse(int inMouseX, int inMouseY, float& outWorldX, float& outWorldY);
protected:
void GetDrawInfo(AvHOverviewMap::DrawInfo& outDrawInfo);
virtual void paint();
virtual void paintBackground();
bool mFullScreen;
};
class AvHUITeamHierarchy : public UIStaticLabel
{
public:
AvHUITeamHierarchy(void);
// Destructor automatically removes component from the engine
virtual ~AvHUITeamHierarchy(void);
virtual Panel* GetComponentPointer(void);
virtual const string& GetType(void) const;
virtual bool SetClassProperties(const TRDescription& inDescription, Panel* inComponent, CSchemeManager* inSchemeManager);
private:
void AllocateComponent(const TRDescription& inDescription);
AvHTeamHierarchy* mHierarchyComponent;
string mType;
};
#endif