File: gnome.pl

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

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


$d->msgbox( text => "This message box is provided by one of the following: zenity, Xdialog or gdialog." );