Advanced Hello World program using two MainWindows : MainWindow « GUI « Perl

Home
Perl
1.Array
2.CGI
3.Class
4.Data Type
5.Database
6.File
7.GUI
8.Hash
9.Language Basics
10.Network
11.Regular Expression
12.Report
13.Statement
14.String
15.Subroutine
16.System Functions
17.Win32
18.XML
Perl » GUI » MainWindow 
Advanced Hello World program using two MainWindows
 

#!/usr/local/bin/perl -w

use Tk;
use subs qw/beep/;
use strict;

my $mw1 = MainWindow->new;
my $mw2 = MainWindow->new(-screen => $ARGV[0||= $ENV{DISPLAY});

$mw1->Button(-text => 'Bell', -command => [\&beep, $mw1])->pack;
$mw1->Button(-text => 'Bell', -command => [\&beep, $mw2])->pack;
$mw1->Button(qw/-text Quit -command/ => \&exit)->pack;

MainLoop;

sub beep {shift->bell}

   
  
Related examples in the same category
1.Create empty window
2.Destroy a window in button action
3.tkphone - Phone another X Display and have a line-mode conversation
4.Tk Configuration Options
5.Create two windows
6.Setting Border Width for Frame
7.Adding components to the Client Area of a Window with Menu Bar
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.