mirror of
https://github.com/ENSL/NS.git
synced 2024-11-13 08:27:20 +00:00
8552ac617c
git-svn-id: https://unknownworlds.svn.cloudforge.com/ns1@1 67975925-1194-0748-b3d5-c16f83f1a3a1
38 lines
1.1 KiB
C++
38 lines
1.1 KiB
C++
//======== (C) Copyright 2002 Charles G. Cleveland All rights reserved. =========
|
|
//
|
|
// The copyright to the contents herein is the property of Charles G. Cleveland.
|
|
// The contents may be used and/or copied only with the written permission of
|
|
// Charles G. Cleveland, or in accordance with the terms and conditions stipulated in
|
|
// the agreement/contract under which the contents have been supplied.
|
|
//
|
|
// Purpose:
|
|
//
|
|
// $Workfile: ColoredPanel.h $
|
|
// $Date: 2002/08/16 02:28:55 $
|
|
//
|
|
//-------------------------------------------------------------------------------
|
|
// $Log: ColoredPanel.h,v $
|
|
// Revision 1.3 2002/08/16 02:28:55 Flayra
|
|
// - Added document headers
|
|
//
|
|
//===============================================================================
|
|
#ifndef COLOREDPANEL_H
|
|
#define COLOREDPANEL_H
|
|
|
|
#include "vgui_Panel.h"
|
|
#include "vgui_Label.h"
|
|
|
|
class ColoredPanel : public vgui::Panel //public vgui::Label
|
|
{
|
|
public:
|
|
ColoredPanel();
|
|
ColoredPanel(int inXPos, int inYPos, int inWidth, int inHeight);
|
|
|
|
protected:
|
|
virtual void paint();
|
|
virtual void paintBackground();
|
|
|
|
private:
|
|
};
|
|
|
|
#endif
|