1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-09 12:42:11 +00:00
OpenMW/apps/openmw/mwgui/confirmationdialog.hpp

34 lines
868 B
C++
Raw Normal View History

2012-05-23 03:28:25 +00:00
#ifndef MWGUI_CONFIRMATIONDIALOG_H
#define MWGUI_CONFIRMATIONDIALOG_H
#include "window_base.hpp"
namespace MWGui
{
class ConfirmationDialog : public WindowModal
2012-05-23 03:28:25 +00:00
{
public:
ConfirmationDialog(MWBase::WindowManager& parWindowManager);
2012-05-23 03:28:25 +00:00
void open(const std::string& message);
typedef MyGUI::delegates::CMultiDelegate0 EventHandle_Void;
/** Event : Ok button was clicked.\n
signature : void method()\n
*/
EventHandle_Void eventOkClicked;
2012-05-28 10:34:29 +00:00
EventHandle_Void eventCancelClicked;
2012-05-23 03:28:25 +00:00
private:
MyGUI::EditBox* mMessage;
MyGUI::Button* mOkButton;
MyGUI::Button* mCancelButton;
void onCancelButtonClicked(MyGUI::Widget* _sender);
void onOkButtonClicked(MyGUI::Widget* _sender);
};
}
#endif