mirror of
https://github.com/shawns-valve/halflife.git
synced 2024-11-22 04:21:30 +00:00
38 lines
743 B
C
38 lines
743 B
C
|
//========= Copyright <20> 1996-2002, Valve LLC, All rights reserved. ============
|
|||
|
//
|
|||
|
// Purpose:
|
|||
|
//
|
|||
|
// $NoKeywords: $
|
|||
|
//=============================================================================
|
|||
|
|
|||
|
#ifndef CONSOLEPANEL_H
|
|||
|
#define CONSOLEPANEL_H
|
|||
|
|
|||
|
#include<stdarg.h>
|
|||
|
#include<VGUI_Panel.h>
|
|||
|
|
|||
|
namespace vgui
|
|||
|
{
|
|||
|
class TextGrid;
|
|||
|
class TextEntry;
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
class ConsolePanel : public vgui::Panel
|
|||
|
{
|
|||
|
private:
|
|||
|
vgui::TextGrid* _textGrid;
|
|||
|
vgui::TextEntry* _textEntry;
|
|||
|
public:
|
|||
|
ConsolePanel(int x,int y,int wide,int tall);
|
|||
|
public:
|
|||
|
virtual void setSize(int wide,int tall);
|
|||
|
virtual int print(const char* text);
|
|||
|
virtual int vprintf(const char* format,va_list argList);
|
|||
|
virtual int printf(const char* format,...);
|
|||
|
virtual void doExecCommand();
|
|||
|
};
|
|||
|
|
|||
|
|
|||
|
|
|||
|
#endif
|