mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-16 09:21:51 +00:00
62138decfe
This has a lot less black void on screen.
25 lines
693 B
Text
25 lines
693 B
Text
// This class allows global customization of certain menu aspects, e.g. replacing the menu caption.
|
|
|
|
class MenuDelegateBase
|
|
{
|
|
virtual int DrawCaption(String title, Font fnt, int y, bool drawit)
|
|
{
|
|
screen.DrawText(fnt, OptionMenuSettings.mTitleColor, (screen.GetWidth() - fnt.StringWidth(title) * CleanXfac_1) / 2, 10 * CleanYfac_1, title, DTA_CleanNoMove_1, true);
|
|
return (y + fnt.GetHeight()) * CleanYfac_1; // return is spacing in screen pixels.
|
|
}
|
|
|
|
virtual void PlaySound(Name sound)
|
|
{
|
|
}
|
|
|
|
virtual bool DrawSelector(ListMenuDescriptor desc)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
virtual void MenuDismissed()
|
|
{
|
|
// overriding this allows to execute special actions when the menu closes
|
|
}
|
|
|
|
}
|