/* ScummVM - Graphic Adventure Engine * * ScummVM is the legal property of its developers, whose names * are too numerous to list here. Please refer to the COPYRIGHT * file distributed with this source distribution. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * */ #ifndef XEEN_dialogs_message_H #define XEEN_dialogs_message_H #include "mm/xeen/dialogs/dialogs.h" #include "mm/xeen/character.h" namespace MM { namespace Xeen { enum MessageWaitType { WT_FREEZE_WAIT = 0, WT_NONFREEZED_WAIT = 1, WT_LOC_WAIT = 2, WT_ANIMATED_WAIT = 3 }; class MessageDialog : public ButtonContainer { private: MessageDialog(XeenEngine *vm) : ButtonContainer(vm) { setWaitBounds(); } void execute(const Common::String &msg, MessageWaitType waitType); public: static void show(XeenEngine *vm, const Common::String &msg, MessageWaitType waitType = WT_FREEZE_WAIT); }; class ErrorScroll { public: static void show(XeenEngine *vm, const Common::String &msg, MessageWaitType waitType = WT_FREEZE_WAIT); }; class CantCast: public ButtonContainer { private: CantCast(XeenEngine *vm) : ButtonContainer(vm) { setWaitBounds(); } void execute(int spellId, int componentNum); public: static void show(XeenEngine *vm, int spellId, int componentNum); }; } // End of namespace Xeen } // End of namespace MM #endif