gtk: Map dialog type to message box type
This commit is contained in:
parent
02e28ea758
commit
3e6394a004
4 changed files with 21 additions and 4 deletions
|
@ -41,7 +41,7 @@ class GtkMessageBox {
|
|||
nullptr, // parent
|
||||
modal ? GTK_DIALOG_MODAL : // modal dialog
|
||||
static_cast<GtkDialogFlags>(0), // no flags
|
||||
GTK_MESSAGE_OTHER, // no icon
|
||||
GetMessageType(type), // type
|
||||
GTK_BUTTONS_NONE, // no buttons
|
||||
"%s", message.c_str());
|
||||
gtk_message_dialog_format_secondary_text(
|
||||
|
@ -75,6 +75,21 @@ class GtkMessageBox {
|
|||
gtk_widget_destroy(dialog_);
|
||||
}
|
||||
|
||||
GtkMessageType GetMessageType(MessageBoxType type) {
|
||||
switch (type) {
|
||||
case MESSAGE_BOX_TYPE_INFORMATION:
|
||||
return GTK_MESSAGE_INFO;
|
||||
case MESSAGE_BOX_TYPE_WARNING:
|
||||
return GTK_MESSAGE_WARNING;
|
||||
case MESSAGE_BOX_TYPE_QUESTION:
|
||||
return GTK_MESSAGE_QUESTION;
|
||||
case MESSAGE_BOX_TYPE_ERROR:
|
||||
return GTK_MESSAGE_ERROR;
|
||||
default:
|
||||
return GTK_MESSAGE_OTHER;
|
||||
}
|
||||
}
|
||||
|
||||
const char* TranslateToStock(int id, const std::string& text) {
|
||||
std::string lower = base::StringToLowerASCII(text);
|
||||
if (lower == "cancel") {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue