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 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225
|
#
# Copyright (c) 1997-2002 The Protein Laboratory, University of Copenhagen
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.
#
# $Id: menu.pl,v 1.16 2007/03/19 14:02:07 dk Exp $
#
=pod
=item NAME
A menu usage example
=item FEATURES
Demonstrates the usage of Prima menu API:
- one-call ( large array ) menu set
- text and image menu item manipulations
Note the "Edit/Kill menu" realisation.
=cut
use strict;
use Prima qw( InputLine Label Application);
package TestWindow;
use vars qw(@ISA);
@ISA = qw(Prima::Window);
# Menu item must be an array with up to 5 items in -
# [variable, text or image, accelerator text, shortcut key, sub or command]
# if there are 0 or 1 items, it's treated as divisor line;
# same divisor in main level of menu makes next part right-adjacent.
# The priority is: text(2), then sub(5), then variable(1), then accelerator(3)
# and shortcut(4). So, if there are 2 items, they are text and sub,
# 3 - variable, text and sub, 4 - text, accelerator, key and sub
# ( because of accelerator and key must be present both and never separately),
# and 5 - all of the above.
# See example below.
# Notes:
# 1. When adding image, scalar must be object derived from Image component
# or Image component by itself.
# 2. Some platforms cannot keep pure definition of "right-adjacent part";
# OS/2, for example, can keep no more than two right-adgacent items.
# 3. You cannot assign to shortcut key modificator keys.
sub create_menu
{
my $img = Prima::Image-> create;
$0 =~ /^(.*)(\\|\/)[^\\\/]+$/;
$img-> load(( $1 || '.') . '/Hand.gif');
return [
[ "~File" => [
[ "Anonymous" => "Ctrl+D" => '^d' => sub { print "sub!\n";}], # anonymous sub
[ $img => sub {
my $img = $_[0]-> menu-> image( $_[1]);
my @r = @{$img-> palette};
$img-> palette( [reverse @r]);
$_[0]-> menu-> image( $_[1], $img);
}], # image
[], # division line
[ "E~xit" => "Exit" ] # calling named function of menu owner
]],
[ ef => "~Edit" => [ # example of system commands usage
[ "Cop~y" => sub { $_[0]-> foc_action('copy')} ], # try these with input line focused
[ "Cu~t" => sub { $_[0]-> foc_action('cut')} ],
[ "Pa~ste" => sub { $_[0]-> foc_action('paste')} ],
[],
["~Kill menu"=>sub{ $_[0]-> menuItems(
[
[ "~Restore all" => sub {
$_[0]-> menuItems( $_[0]-> create_menu)
}],
[ "~Incline" => sub {
$_[0]-> menu-> insert( $_[0]-> create_menu, '', 1);
}],
]);
}],
["~Duplicate menu"=>sub{ TestWindow-> create( menu=>$_[0]-> menu)}],
]],
[ "~Input line" => [
[ "Print ~text" => "Text"],
[ "Print ~selected" => "Selected"],
[ "Try \"selText\"" => "SelText"],
[],
[ "Toggle insert mode" => "InsMode"],
["Toggle password mode" => "PassMode"],
["Toggle border existence" => "BorderMode"],
[ coexistentor => "Coexistentor"=> ""],
]],
[], # divisor in main menu opens
[ "~Clusters" => [ # right-adjacent part
[ "*".checker => "Checking Item" => "Check" ],
[],
[ "-".slave => "Disabled state" => "PrintText"],
[ master => "~Enable item above" => "Enable" ] # enable/disable and text sample
]]
];
}
sub foc_action
{
my ( $self, $action) = @_;
my $foc = $self-> selectedWidget;
return unless $foc and $foc-> alive;
my $ref = $foc-> can( $action);
$ref-> ( $foc) if $ref;
}
sub Exit
{
$::application-> destroy;
}
sub Check
{
my $menu = $_[ 0]-> menu;
$menu-> checked( 'checker', ! $menu-> checked( 'checker'));
}
sub PrintText
{
print $_[ 0]-> menu-> slave-> text;
}
sub Enable
{
my $slave = $_[0]-> menu-> slave;
my $master = $_[0]-> menu-> master;
if ( $slave-> enabled) {
$slave -> text( "Disabled state");
$master-> text( "~Enable item above");
} else {
$slave -> text( "Enabled state");
$master-> text( "~Disable item above");
}
$slave-> enabled( ! $slave-> enabled);
}
sub Text
{
print $_[ 0]-> InputLine1-> text;
}
sub Selected
{
print $_[ 0]-> InputLine1-> selText;
}
sub SelText
{
$_[ 0]-> InputLine1-> selText ("SEL");
}
sub InsMode
{
my $e = $_[ 0]-> InputLine1;
$e-> insertMode ( !$e-> insertMode);
}
sub PassMode
{
my $e = $_[ 0]-> InputLine1;
$e-> writeOnly ( !$e-> writeOnly);
}
sub BorderMode
{
my $e = $_[ 0]-> InputLine1;
$e-> borderWidth (( $e-> borderWidth == 1) ? 0 : 1);
}
package UserInit;
my $w = TestWindow-> create(
text => "Menu and input line example",
bottom => 300,
size => [ 360, 120],
menuItems => TestWindow::create_menu,
onDestroy => sub {$::application-> close},
);
$w-> insert( "InputLine",
pack => { pady => 20, padx => 20, fill => 'x', side => 'bottom'},
text => $w-> text,
maxLen => 200,
onChange => sub {
$_[0]-> owner-> text( $_[0]-> text);
$_[0]-> owner-> Label1-> text( $_[0]-> text);
$_[0]-> owner-> menu-> coexistentor-> text( $_[0]-> text)
if $_[0]-> owner-> menu-> has_item( 'coexistentor');
},
);
$w-> insert( "Label",
pack => { pady => 20, padx => 20, fill => 'both', expand => 1},
text => "Type here something",
backColor => cl::Green,
valignment => ta::Center,
focusLink => $w-> InputLine1,
);
run Prima;
|