Name

Popup::AnyQuestion3 — Generic question popup with three buttons.

Synopsis

Import Popup;
symbol Popup::AnyQuestion3 ( string  headline ,
  string  message ,
  string  yes_button_message ,
  string  no_button_message ,
  string  retry_button_message ,
  symbol  focus );

Parameters

string headline

headline or Popup::NoHeadline()

string message

message string

string yes_button_message

label on affirmative button (on left side)

string no_button_message

label on negating button (middle)

string retry_button_message

label on retry button (on right side)

symbol focus

`focus_yes (first button), `focus_no (second button) or `focus_retry (third button)

Return Value

symbol

- `yes: first button has been clicked - `no: second button has been clicked - `retry: third button has been clicked

Examples

  Popup::AnyQuestion3( Label::WarningMsg(), _("... failed"), _("Continue"), _("Cancel"), _("Retry"), `focus_yes );

See