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

35 lines
861 B
C++
Raw Normal View History

2012-05-23 03:28:25 +00:00
#ifndef MWGUI_CONFIRMATIONDIALOG_H
#define MWGUI_CONFIRMATIONDIALOG_H
#include "windowbase.hpp"
2012-05-23 03:28:25 +00:00
namespace MWGui
{
class ConfirmationDialog : public WindowModal
2012-05-23 03:28:25 +00:00
{
public:
ConfirmationDialog();
2012-05-23 03:28:25 +00:00
void open(const std::string& message);
virtual void exit();
2012-05-23 03:28:25 +00:00
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