NS/releases/3.1/source/ui/UIComponent.cpp
tankefugl ad7db200f6 made a copy
git-svn-id: https://unknownworlds.svn.cloudforge.com/ns1@280 67975925-1194-0748-b3d5-c16f83f1a3a1
2005-07-14 18:13:23 +00:00

55 lines
1.1 KiB
C++

#include "ui/UIComponent.h"
UIComponent::UIComponent(void)
{
}
UIComponent::~UIComponent(void)
{
}
bool UIComponent::AllocateAndSetProperties(const TRDescription& inDescription, CSchemeManager* inSchemeManager)
{
bool theSuccess = false;
this->AllocateComponent(inDescription);
this->mDescription = inDescription;
theSuccess = this->SetClassProperties(inDescription, this->GetComponentPointer(), inSchemeManager);
if(!theSuccess)
{
/* TODO: Emit error*/
}
return theSuccess;
}
TRDescription& UIComponent::GetDescription(void)
{
return this->mDescription;
}
const TRDescription& UIComponent::GetDescription(void) const
{
return this->mDescription;
}
const string& UIComponent::GetName(void) const
{
return this->mName;
}
void UIComponent::SetName(const string& inName)
{
this->mName = inName;
}
bool UIComponent::SetClassProperties(const TRDescription& inDescription, Panel* inComponent, CSchemeManager* inSchemeManager)
{
return true;
}
void UIComponent::Update(float theCurrentTime)
{
theCurrentTime;
}