1
0
Fork 0
mirror of https://github.com/k4zmu2a/SpaceCadetPinball.git synced 2024-12-18 18:37:55 +01:00
SpaceCadetPinball/SpaceCadetPinball/TTextBox.h
2021-10-04 17:04:09 +03:00

28 lines
564 B
C++

#pragma once
#include "score.h"
#include "TPinballComponent.h"
#include "TTextBoxMessage.h"
class TTextBox :
public TPinballComponent
{
public:
int OffsetX;
int OffsetY;
int Width;
int Height;
int Timer;
gdrv_bitmap8* BgBmp;
score_msg_font_type* Font;
TTextBoxMessage* Message1;
TTextBoxMessage* Message2;
TTextBox(TPinballTable* table, int groupIndex);
~TTextBox() override;
int Message(int code, float value) override;
void Clear();
void Display(const char* text, float time);
void Draw();
static void TimerExpired(int timerId, void* tb);
};