2003-01-09 04:45:49 +00:00
|
|
|
#ifndef SCREEN_TEST_FONTS_H
|
|
|
|
|
#define SCREEN_TEST_FONTS_H
|
|
|
|
|
|
|
|
|
|
#include "Screen.h"
|
|
|
|
|
#include "BitmapText.h"
|
|
|
|
|
#include "Quad.h"
|
|
|
|
|
|
|
|
|
|
class ScreenTestFonts: public Screen
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
ScreenTestFonts();
|
|
|
|
|
|
|
|
|
|
BitmapText txt;
|
2003-01-10 02:27:23 +00:00
|
|
|
BitmapText curfont;
|
2003-01-09 04:45:49 +00:00
|
|
|
Quad Vline, Hline;
|
|
|
|
|
void Input( const DeviceInput& DeviceI, const InputEventType type, const GameInput &GameI, const MenuInput &MenuI, const StyleInput &StyleI );
|
2003-01-10 02:27:23 +00:00
|
|
|
void Draw();
|
|
|
|
|
CString curtext;
|
|
|
|
|
void SetText(CString txt);
|
|
|
|
|
void SetFont(CString font);
|
2003-01-09 04:45:49 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|