#!/usr/bin/perl =head1 NAME kvread - Vocabulary memorization tool =head1 SYNOPSYS kvread [file name] =head1 DESCRIPTION kvread makes use of a vocabulary files created by KDE FlashKard. This script shows words from a given file with a translation\ randomly. =head1 AUTHOR bhappy =cut use strict; use warnings; use Tk; use XML::Simple; use Getopt::Long; my $xml_file = shift; my $words = XMLin($xml_file, forcearray => [ qw(e) ], keyattr => [] ); my $mw = Tk::MainWindow->new; # $mw->overrideredirect(1); my ($worde, $wordr) = &rand_n(\@{$words->{e}}); $mw->Label(-textvariable => \$worde, -background => 'pink', -font => 'verdana')->pack; $mw->Label(-textvariable => \$wordr, -background => 'lightblue')->pack; $mw->update; $mw->repeat(8*1000, sub{($worde, $wordr) = &rand_n(\@{$words->{e}})}); MainLoop; sub rand_n { my ($words_ref) = @_; my $count = rand @$words_ref; my $worde = $words_ref->[$count]->{o}; my $wordr = $words_ref->[$count]->{t}; return ($worde, $wordr); }