-
Notifications
You must be signed in to change notification settings - Fork 8
/
CppTrial-pg207A.pl
48 lines (38 loc) · 1.34 KB
/
CppTrial-pg207A.pl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#!/usr/bin/perl
# CppTrial-pg207A.pl
# Cross-Platform GUI Programming with wxWidgets - Smart, Hock, & Csomor
# C++ Example from pg 207(A) - Message Dialog Dialog
# Ported to wxPerl by James M. Lynes Jr. - Last Modified 9/24/2012
use 5.010;
use strict;
use warnings;
use Wx qw(:everything);
use Wx::Event qw(EVT_PAINT);
# create the WxApplication
my $app = Wx::SimpleApp->new;
my $frame = Wx::Frame->new(undef, -1,
'CppTrial-pg207A.pl',
wxDefaultPosition, wxDefaultSize);
# Use status bar to indicate button presses
my $statusBar = Wx::StatusBar->new($frame, wxID_ANY, wxST_SIZEGRIP);
$frame->SetStatusBar($statusBar);
my @widths = (200, 100, -1);
$statusBar->SetFieldsCount($#widths+1);
$statusBar->SetStatusWidths(@widths);
$statusBar->SetStatusText("Ready", 0);
myStdDialogs($frame);
$frame->Show;
$app->MainLoop;
# Example specific code
sub myStdDialogs {
my ( $self ) = @_;
my $stdDialog = Wx::MessageDialog->new($self, "Message Box Caption",
"Message Box Text", wxNO_DEFAULT | wxYES_NO |
wxCANCEL | wxICON_INFORMATION);
my $selection = $stdDialog->ShowModal();
given ($selection) {
when ([wxID_YES]) {$self->Wx::LogStatus ("You pressed: \"Yes\" ")}
when ([wxID_NO]) {$self->Wx::LogStatus ("You pressed: \"No\" ")}
when ([wxID_CANCEL]) {$self->Wx::LogStatus ("You pressed: \"Cancel\" ")}
}
}