1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2025-01-09 10:39:03 +08:00
hl2sdk/public/matsys_controls/tgapreviewpanel.h
2010-07-22 01:46:14 -05:00

41 lines
957 B
C++

//====== Copyright © 1996-2003, Valve Corporation, All rights reserved. =======
//
// Purpose:
//
//=============================================================================
#ifndef TGAPREVIEWPANEL_H
#define TGAPREVIEWPANEL_H
#ifdef _WIN32
#pragma once
#endif
#include "matsys_controls/proceduraltexturepanel.h"
#include "tier1/utlstring.h"
//-----------------------------------------------------------------------------
//
// TGA Preview panel
//
//-----------------------------------------------------------------------------
class CTGAPreviewPanel : public CProceduralTexturePanel
{
DECLARE_CLASS_SIMPLE( CTGAPreviewPanel, CProceduralTexturePanel );
public:
// constructor
CTGAPreviewPanel( vgui::Panel *pParent, const char *pName );
void SetTGA( const char *pFullPath );
const char *GetTGA() const;
virtual void PerformLayout();
private:
CUtlString m_TGAName;
};
#endif // TGAPREVIEWPANEL_H