26#include "dialog_base.h"
27#include "dialog_footer.h"
49 AlertDialog(wxWindow* parent,
const std::string& title,
50 const std::string& action =
"");
82 const std::string& action,
const std::string& msg);
88 void OnClick(wxCommandEvent& event);
89 void OnTimer(wxTimerEvent& evt);
A modal message dialog with a cancel and confirmation button.
void SetListener(IAlertConfirmation *listener)
Listen for response.
int ShowModal() override
Show dialog and return response.
void SetMessage(const std::string &msg)
Set alert message.
static int GetConfirmation(wxWindow *parent, const std::string &title, const std::string &action, const std::string &msg)
Helper that returns the dialog response.
void SetTimer(int seconds)
Activate timer.
Dialog layout with content sizer.
Alert confirmation listener interface.
virtual void OnConfirm(const bool result)=0
Handle confirmation response.