You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
97 lines
2.8 KiB
C++
97 lines
2.8 KiB
C++
#ifndef MWGUI_MESSAGE_BOX_H
|
|
#define MWGUI_MESSAGE_BOX_H
|
|
|
|
#include "windowbase.hpp"
|
|
|
|
#undef MessageBox
|
|
|
|
namespace MyGUI
|
|
{
|
|
class Widget;
|
|
class Button;
|
|
class EditBox;
|
|
}
|
|
|
|
namespace MWGui
|
|
{
|
|
class InteractiveMessageBox;
|
|
class MessageBoxManager;
|
|
class MessageBox;
|
|
class MessageBoxManager
|
|
{
|
|
public:
|
|
MessageBoxManager (float timePerChar);
|
|
~MessageBoxManager ();
|
|
void onFrame (float frameDuration);
|
|
void createMessageBox (const std::string& message, bool stat = false);
|
|
void removeStaticMessageBox ();
|
|
bool createInteractiveMessageBox (const std::string& message, const std::vector<std::string>& buttons);
|
|
bool isInteractiveMessageBox ();
|
|
|
|
/// Remove all message boxes
|
|
void clear();
|
|
|
|
bool removeMessageBox (MessageBox *msgbox);
|
|
|
|
/// @param reset Reset the pressed button to -1 after reading it.
|
|
int readPressedButton (bool reset=true);
|
|
|
|
typedef MyGUI::delegates::CMultiDelegate1<int> EventHandle_Int;
|
|
|
|
// Note: this delegate unassigns itself after it was fired, i.e. works once.
|
|
EventHandle_Int eventButtonPressed;
|
|
|
|
void onButtonPressed(int button) { eventButtonPressed(button); eventButtonPressed.clear(); }
|
|
|
|
private:
|
|
std::vector<MessageBox*> mMessageBoxes;
|
|
InteractiveMessageBox* mInterMessageBoxe;
|
|
MessageBox* mStaticMessageBox;
|
|
float mMessageBoxSpeed;
|
|
int mLastButtonPressed;
|
|
};
|
|
|
|
class MessageBox : public Layout
|
|
{
|
|
public:
|
|
MessageBox (MessageBoxManager& parMessageBoxManager, const std::string& message);
|
|
void setMessage (const std::string& message);
|
|
int getHeight ();
|
|
void update (int height);
|
|
|
|
float mCurrentTime;
|
|
float mMaxTime;
|
|
|
|
protected:
|
|
MessageBoxManager& mMessageBoxManager;
|
|
const std::string& mMessage;
|
|
MyGUI::EditBox* mMessageWidget;
|
|
int mBottomPadding;
|
|
int mNextBoxPadding;
|
|
};
|
|
|
|
class InteractiveMessageBox : public WindowModal
|
|
{
|
|
public:
|
|
InteractiveMessageBox (MessageBoxManager& parMessageBoxManager, const std::string& message, const std::vector<std::string>& buttons);
|
|
void mousePressed (MyGUI::Widget* _widget);
|
|
int readPressedButton ();
|
|
|
|
bool mMarkedToDelete;
|
|
|
|
private:
|
|
void buttonActivated (MyGUI::Widget* _widget);
|
|
void onKeyPressed(MyGUI::Widget* _sender, MyGUI::KeyCode _key, MyGUI::Char _char);
|
|
|
|
MessageBoxManager& mMessageBoxManager;
|
|
MyGUI::EditBox* mMessageWidget;
|
|
MyGUI::Widget* mButtonsWidget;
|
|
std::vector<MyGUI::Button*> mButtons;
|
|
|
|
int mButtonPressed;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|