mirror of
https://github.com/unknownworlds/NS.git
synced 2024-11-10 07:11:48 +00:00
73a03548a7
git-svn-id: https://unknownworlds.svn.cloudforge.com/ns1@369 67975925-1194-0748-b3d5-c16f83f1a3a1
30 lines
652 B
C++
30 lines
652 B
C++
#ifndef AVHLOGOUTCOMPONENT_H
|
|
#define AVHLOGOUTCOMPONENT_H
|
|
|
|
#include "ui/UIComponents.h"
|
|
#include "ui/StaticLabel.h"
|
|
|
|
class AvHLogoutComponent : public StaticLabel
|
|
{
|
|
public:
|
|
AvHLogoutComponent(int wide, int tall) : StaticLabel(wide, tall) {}
|
|
};
|
|
|
|
|
|
class AvHUILogoutComponent : public UIStaticLabel
|
|
{
|
|
public:
|
|
virtual Panel* GetComponentPointer(void);
|
|
|
|
virtual bool SetClassProperties(const TRDescription& inDesc, Panel* inPanel, CSchemeManager* inSchemeManager);
|
|
|
|
private:
|
|
|
|
void AllocateComponent(const TRDescription& inDescription);
|
|
|
|
AvHLogoutComponent* mLogoutComponent;
|
|
};
|
|
|
|
|
|
|
|
#endif
|