You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
924 B
42 lines
924 B
5 years ago
|
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||
|
//
|
||
|
// Purpose:
|
||
|
//
|
||
|
// $NoKeywords: $
|
||
|
//=============================================================================//
|
||
|
|
||
|
#ifndef ICONPANEL_H
|
||
|
#define ICONPANEL_H
|
||
|
#ifdef _WIN32
|
||
|
#pragma once
|
||
|
#endif
|
||
|
|
||
|
#include <vgui_controls/Panel.h>
|
||
|
|
||
|
using namespace vgui;
|
||
|
|
||
|
class CIconPanel : public vgui::Panel
|
||
|
{
|
||
|
DECLARE_CLASS_SIMPLE( CIconPanel, vgui::Panel );
|
||
|
|
||
|
public:
|
||
|
CIconPanel( vgui::Panel *parent, const char *name );
|
||
|
|
||
|
void Init( void );
|
||
|
virtual void Paint();
|
||
|
virtual void ApplySettings( KeyValues *inResourceData );
|
||
|
virtual void ApplySchemeSettings( vgui::IScheme *pScheme );
|
||
|
|
||
|
void SetIcon( const char *szIcon );
|
||
|
void SetIconColor( Color cColor ) { m_IconColor = cColor; }
|
||
|
|
||
|
private:
|
||
|
CHudTexture *m_icon;
|
||
|
char m_szIcon[128];
|
||
|
|
||
|
bool m_bScaleImage;
|
||
|
|
||
|
CPanelAnimationVar( Color, m_IconColor, "iconColor", "255 255 255 255" );
|
||
|
};
|
||
|
|
||
|
#endif //ICONPANEL_H
|