Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.081.801 Times

Httpbtorrents Tk software
Filter: All | Freeware | Demo
 

Httpbtorrents Tk

< 1 2 3 4 5 > 
Added: August 04, 2010 | Visits: 745

Tk::JComboBox Tk::JComboBox is a Perl module that can create and manipulate JComboBox widgets. SYNOPSIS $jcb = $parent->JComboBox(?options); JComboBox is a composite widget that contains a text Label or Entry, a Button, and a popup Listbox. It performs the same sort of tasks that can be accomplished by...



Platforms: *nix

License: Freeware Size: 64.51 KB Download (89): Tk::JComboBox Download

Added: November 14, 2010 | Visits: 730

Tk::MultiMediaControls Tk::MultiMediaControls is a Perl module to create media player control buttons. SYNOPSIS $mmc = $parent->MultiMediaControls(-option => value, ... ); Create multimedia controls similar to that found on Apple applications like QuickTime, iMovie, iDVD, iTunes, etcetera. This mega-widget...





Platforms: *nix

License: Freeware Size: 491.52 KB Download (87): Tk::MultiMediaControls Download

Added: September 10, 2010 | Visits: 677

Tk::Getopt Tk::Getopt is a user configuration window for Tk with interface to Getopt::Long. SYNOPSIS use Tk::Getopt; @opttable = ([opt1, =s, default], [opt2, !, 1], ...); $opt = new Tk::Getopt(-opttable => @opttable, -options => %options, -filename => "$ENV{HOME}/.options"); $opt->set_defaults; #...


Platforms: *nix

License: Freeware Size: 22.53 KB Download (89): Tk::Getopt Download

Added: June 11, 2010 | Visits: 876

Tk::ContextHelp Tk::ContextHelp is a context-sensitive help with perl/Tk. SYNOPSIS use Tk::ContextHelp; $ch = $top->ContextHelp; $ch->attach($widget, -msg => ...); $ch->HelpButton($top)->pack; $ch2 = $top->ContextHelp(-podfile => "perlfaq"); $ch2->attach($widget2, -pod => description); ContextHelp...


Platforms: *nix

License: Freeware Size: 10.24 KB Download (95): Tk::ContextHelp Download

Added: June 15, 2010 | Visits: 982

Tk::NumEntry Tk::NumEntry is a numeric Entry widget with inc. & dec. Buttons. SYNOPSIS use Tk::NumEntry; $parent->NumEntry(?-option=>value, ...?); Tk::NumEntry defines a widget for entering integer numbers. The widget also contains buttons for increment and decrement. Tk::NumEntry supports all the...


Platforms: *nix

License: Freeware Size: 25.6 KB Download (90): Tk::NumEntry Download

Added: May 08, 2010 | Visits: 767

Tie::Tk::Listbox Tie::Tk::Listbox provides allows to access Tk::Listbox and similar widgets as arrays. The Tie::Tk::Listbox module allows you to tie the contents of a Tk::Listbox widget to an ordinary Perl array for easy modification. Additionally, you may tie a Tk::Scrolled widget or any other widget that...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (96): Tie::Tk::Listbox Download

Added: April 19, 2010 | Visits: 1.827

Tk::Bubble Tk::Bubble are pop up help windows. SYNOPSYS use Tk::Bubble; ... $bubble = new Bubble( ); $bubble->attach( , ); $bubble->configure( , ); Bubble is a bubble help system (or sometimes called tooltips/balloon help) which allows a window to be displayed after a certain amount of...


Platforms: *nix

License: Freeware Size: 33.79 KB Download (175): Tk::Bubble Download

Added: June 17, 2010 | Visits: 662

Tk::bindtags Tk::bindtags can determine which bindings apply to a window, and order of evaluation. SYNOPSIS $widget->bindtags([tagList]); @tags = $widget->bindtags; When a binding is created with the bind command, it is associated either with a particular window such as $widget, a class name such as...


Platforms: *nix

License: Freeware Size: 5.7 MB Download (91): Tk::bindtags Download

Added: July 07, 2010 | Visits: 798

Tk::Adjuster Tk::Adjuster module will allow size of packed widgets to be adjusted by user. SYNOPSIS use Tk::Adjuster; $adjuster = $widget->Adjuster(?options?); WIDGET-SPECIFIC OPTIONS Name: restore Class: Restore Switch: -restore Specifies a boolean value that determines whether the Adjuster...


Platforms: *nix

License: Freeware Size: 5.7 MB Download (94): Tk::Adjuster Download

Added: May 04, 2010 | Visits: 687

Tk::CmdLine Tk::CmdLine contains process standard X11 command line options and set initial resources. SYNOPSIS Tk::CmdLine::SetArguments([@argument]); my $value = Tk::CmdLine::cget([$option]); Tk::CmdLine::SetResources((@resource | $resource) [, $priority]); Tk::CmdLine::LoadResources( [ -symbol...


Platforms: *nix

License: Freeware Size: 5.7 MB Download (92): Tk::CmdLine Download

Added: June 04, 2010 | Visits: 970

Tk::event Tk::event contains miscellaneous event facilities: define virtual events and generate events. SYNOPSIS $widget->eventAction(?arg, arg, ...?); The eventAction methods provides several facilities for dealing with window system events, such as defining virtual events and synthesizing events....


Platforms: *nix

License: Freeware Size: 5.7 MB Download (91): Tk::event Download

Added: February 13, 2010 | Visits: 711

Tk::Optionmenu Tk::Optionmenu will let the user select one of some predefined options values. SYNOPSIS use Optionmenu; $opt = $w->Optionmenu( -options => REFERENCE_to_OPTIONLIST, -command => CALLBACK, -variable => SCALAR_REF, ); $opt->addOptions( OPTIONLIST ); # OPTION LIST is # a) $val1, $val2,...


Platforms: *nix

License: Freeware Size: 5.7 MB Download (86): Tk::Optionmenu Download

Added: September 11, 2010 | Visits: 485

Tk::Tiler Tk::Tiler is a scrollable frame with sub-widgets arranged into rows. SYNOPSIS use Tk::Tiler; my $tl = $parent->Scrolled(Tiler, -columns => n, -rows => n); my $a = $tl->Xxxxx(...); my $b = $tl->Xxxxx(...); my $c = $tl->Xxxxx(...); $tl->Manage($a,$b,$c); Tiler is derived form...


Platforms: *nix

License: Freeware Size: 5.7 MB Download (92): Tk::Tiler Download

Added: August 08, 2010 | Visits: 1.073

Tk::after Tk::after can execute a command after a time delay. SYNOPSIS $widget->after(ms) $id = $widget->after(ms?,callback?) $id = $widget->repeat(ms?,callback?) $widget->afterCancel($id) $id = $widget->afterIdle(callback) $widget->afterInfo?($id)? $id->time(?delay?) This method is used to...


Platforms: *nix

License: Freeware Size: 5.7 MB Download (87): Tk::after Download

Added: April 25, 2010 | Visits: 666

Tk::bind Tk::bind can arrange for X events to invoke callbacks. SYNOPSIS Retrieve bindings: $widget->bind $widget->bind(tag) $widget->bind(sequence) $widget->bind(tag,sequence) Associate and destroy bindings: $widget->bind(sequence,callback) $widget->bind(tag,sequence,callback) The bind...


Platforms: *nix

License: Freeware Size: 5.7 MB Download (93): Tk::bind Download

Added: June 21, 2010 | Visits: 933

Tk::callbacks Tk::callbacks allows specifying code for Tk to call. SYNOPSIS One can specify a callback in one of the following ways: Without arguments: ... => ⊂name, ... ... => sub { ... }, ... ... => methodname, ... or with arguments: ... => [ ⊂name ?, args ...? ], ... ... => [ sub { ... }...


Platforms: *nix

License: Freeware Size: 5.7 MB Download (86): Tk::callbacks Download

Added: May 15, 2010 | Visits: 769

Tk::Canvas Tk::Canvas Perl module can create and manipulate Canvas widgets. SYNOPSIS $canvas = $parent->Canvas(?options?); STANDARD OPTIONS -background -highlightthickness -insertwidth -state -borderwidth -insertbackground -relief -tile -cursor -insertborderwidth -selectbackground -takefocus...


Platforms: *nix

License: Freeware Size: 5.7 MB Download (105): Tk::Canvas Download

Added: June 26, 2010 | Visits: 1.074

Tk::Balloon Tk::Balloon is a pop up help balloons. SYNOPSIS use Tk::Balloon; ... $b = $top->Balloon(-statusbar => $status_bar_widget); # Normal Balloon: $b->attach($widget, -balloonmsg => "Balloon help message", -statusmsg => "Status bar message"); # Balloon attached to entries in a menu widget:...


Platforms: *nix

License: Freeware Size: 5.7 MB Download (98): Tk::Balloon Download

Added: April 12, 2010 | Visits: 964

Tk::Mirror Tk::Mirror is a Perl extension for a graphic user interface to update local or remote directories in both directions. SYNOPSIS # in the simplest kind and manner use Tk::Mirror; use Tk; my $mw->MainWindow->new(); $mw->Mirror()->grid(); MainLoop(); # in a detailed kind use Tk; use...


Platforms: *nix

License: Freeware Size: 7.17 KB Download (94): Tk::Mirror Download

Added: March 19, 2010 | Visits: 997

Tk::Image::Cut Tk::Image::Cut is a Perl extension for a graphic user interface to cut pictures. SYNOPSIS use Tk::Image::Cut; my $mw = MainWindow->new(); $mw->title("Picture-Cutter"); $mw->geometry("+5+5"); my $cut = $mw->Cut()->grid(); $mw->Button( -text => "Exit", -command => sub { exit(); },...


Platforms: *nix

License: Freeware Size: 30.72 KB Download (104): Tk::Image::Cut Download

< 1 2 3 4 5 >