class Iup::Dialog

A top-level window, containing a single widget. Supports standard window decorations and a menu.

Example

The following example displays a label widget within the dialog, setting the dialog’s title and size before showing it.

Iup::Dialog.new(label) do |d|
  d.title = " ... from IUP"
  d.size = "150x50"
end.show

Also see: Menu.