mirror of
https://github.com/unknownworlds/NS.git
synced 2024-11-10 07:11:48 +00:00
73a03548a7
git-svn-id: https://unknownworlds.svn.cloudforge.com/ns1@369 67975925-1194-0748-b3d5-c16f83f1a3a1
32 lines
No EOL
577 B
C++
32 lines
No EOL
577 B
C++
|
|
#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 |