blob: f9dcb243f65eec178f220bc01cb572adbff0642c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
//========= 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
|