Window.showMessageBox - multiple declarations

Function Window.showMessageBox

Show message box with specified title and message (title and message as dstring)

Prototype

void showMessageBox(
  dstring title,
  dstring message,
  const(Action)[] actions = [ACTION_OK],
  int defaultActionIndex = 0,
  bool delegate(const(Action)) handler = cast(bool delegate(const(Action) result))null
);

Function Window.showMessageBox

Show message box with specified title and message (title and message as UIString)

Prototype

void showMessageBox(
  UIString title,
  UIString message,
  const(Action)[] actions = [ACTION_OK],
  int defaultActionIndex = 0,
  bool delegate(const(Action)) handler = cast(bool delegate(const(Action) result))null
);

Authors

Vadim Lopatin, coolreader.org@gmail.com

Copyright

Vadim Lopatin, 2014

License

Boost License 1.0