File: ui-dialog.pl

package info (click to toggle)
libui-dialog-perl 1.21-0.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, forky, sid, trixie
  • size: 816 kB
  • sloc: perl: 7,403; makefile: 2
file content (14 lines) | stat: -rw-r--r-- 351 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/perl
use strict;
use warnings;
use diagnostics;

use UI::Dialog;

my $d = new UI::Dialog ( title => "UI::Dialog Demo",
						 debug => 0, height => 20, width => 65 );


$d->msgbox( text => [ "This message box is provided by one of the following: zenity, Xdialog or gdialog. ",
					  "(Or if from a console: dialog, whiptail, ascii)" ] );