2023-09-06 00:25:25 +00:00
|
|
|
|
//========= Copyright <20> 1996-2001, Valve LLC, All rights reserved. ============
|
|
|
|
|
//
|
|
|
|
|
// Purpose:
|
|
|
|
|
//
|
|
|
|
|
// $NoKeywords: $
|
|
|
|
|
//=============================================================================
|
|
|
|
|
|
|
|
|
|
#ifndef VGUI_IMAGEPANEL_H
|
|
|
|
|
#define VGUI_IMAGEPANEL_H
|
|
|
|
|
|
|
|
|
|
#include<VGUI.h>
|
|
|
|
|
#include<VGUI_Panel.h>
|
|
|
|
|
|
|
|
|
|
namespace vgui
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
class Image;
|
|
|
|
|
|
|
|
|
|
class VGUIAPI ImagePanel : public Panel
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
inline ImagePanel()
|
|
|
|
|
{
|
|
|
|
|
_image=null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ImagePanel(Image* image);
|
|
|
|
|
public:
|
|
|
|
|
virtual void setImage(Image* image);
|
|
|
|
|
protected:
|
|
|
|
|
virtual void paintBackground();
|
|
|
|
|
protected:
|
|
|
|
|
Image* _image;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2000-06-05 00:00:00 +00:00
|
|
|
|
#endif
|