1
0
Fork 0
flightgear/src/GUI/MessageBox.hxx

27 lines
545 B
C++
Raw Normal View History

#ifndef FG_GUI_MESSAGE_BOX_HXX
#define FG_GUI_MESSAGE_BOX_HXX
#include <string>
namespace flightgear
{
enum MessageBoxResult
{
MSG_BOX_OK,
MSG_BOX_YES,
MSG_BOX_NO
};
MessageBoxResult modalMessageBox(const std::string& caption,
const std::string& msg,
const std::string& moreText = std::string());
MessageBoxResult fatalMessageBox(const std::string& caption,
const std::string& msg,
const std::string& moreText = std::string());
} // of namespace flightgear
#endif // of FG_GUI_MESSAGE_BOX_HXX