PROGRAM(alert);
INHERIT(dialog);
FUNCTION(create, "function(string,string:void)");
NAME_ARGS(contents, title);
// Create a simple alert window. The default title is 'Alert'.
// A single button 'Ok' will be created. Pressing it removes the dialog.

FUNCTION(ok, "function(void:object)");
RETURNS(GTK.Button);
// Returns the ok button
