The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

Search results for "distribution:Tk Tcl"

Tk::Trace - emulate Tcl/Tk trace functions. River stage three • 160 direct dependents • 171 total dependents

This class module emulates the Tcl/Tk trace family of commands by binding subroutines of your devising to Perl variables using simple Tie::Watch features. Callback format is patterned after the Perl/Tk scheme: supply either a code reference, or, supp...

SREZIC/Tk-804.036 - 14 Feb 2021 12:53:44 UTC

Tk - a graphical user interface toolkit for Perl River stage three • 160 direct dependents • 171 total dependents

The Perl/Tk manual is split up into a number of sections: Introduction * Tk::overview * Tk::UserGuide Tk Geometry Management * Tk::Adjuster * Tk::form * Tk::grid * Tk::pack * Tk::place * Tk::Table * Tk::Tiler * Tk::Wm Binding Events and Callbacks * T...

SREZIC/Tk-804.036 - 14 Feb 2021 12:53:44 UTC

Tk_BackgroundError - report Tcl error that occurred in background processing River stage three • 160 direct dependents • 171 total dependents

This procedure is typically invoked when a Tcl error occurs during ``background processing'' such as executing a Tcl command in response to a button press or menu entry invocation. When such an error occurs, the error condition is reported to Tk or t...

SREZIC/Tk-804.036 - 14 Feb 2021 12:53:44 UTC

Tk_QueueWindowEvent - Add a window event to the Tcl event queue River stage three • 160 direct dependents • 171 total dependents

This procedure places a window event on Tcl's internal event queue for eventual servicing. It creates a Tcl_Event structure, copies the event into that structure, and calls Tcl_QueueEvent to add the event to the queue. When the event is eventually re...

SREZIC/Tk-804.036 - 14 Feb 2021 12:53:44 UTC

Tk::send - Execute a command in a different application River stage three • 160 direct dependents • 171 total dependents

This method arranges for *cmd* (and *arg*s) to be 'sent' to the application named by *app*. It returns the result or an error (hence above should probably be 'wrapped' in eval{} and $@ tested). *App* may be the name of any application whose main wind...

SREZIC/Tk-804.036 - 14 Feb 2021 12:53:44 UTC

Tk::FBox - a file dialog River stage three • 160 direct dependents • 171 total dependents

"Tk::FBox" is the dialog implementation behind the "getOpenFile", "getSaveFile", and "chooseDirectory" method calls in the Unix/X11 world. As such, it supports all options for these methods and additionally: -sortcmd => sub { $_[0] cmp $_[1] } Specif...

SREZIC/Tk-804.036 - 14 Feb 2021 12:53:44 UTC

Tk::Font - Create and inspect fonts. River stage three • 160 direct dependents • 171 total dependents

The Font method provides several facilities for dealing with fonts, such as defining named fonts and inspecting the actual attributes of a font. The command has several different forms, determined by the first argument. The following forms are curren...

SREZIC/Tk-804.036 - 14 Feb 2021 12:53:44 UTC

Tk::Tree - Create and manipulate Tree widgets River stage three • 160 direct dependents • 171 total dependents

The Tree method creates a new window and makes it into a Tree widget and return a reference to it. Additional options, described above, may be specified on the command line or in the option database to configure aspects of the Tree widget such as its...

SREZIC/Tk-804.036 - 14 Feb 2021 12:53:44 UTC

Tk::bind - Arrange for X events to invoke callbacks River stage three • 160 direct dependents • 171 total dependents

The bind method associates callbacks with X events. If *callback* is specified, bind will arrange for *callback* to be evaluated whenever the event(s) given by *sequence* occur in the window(s) identified by *$widget* or *tag*. If *callback* is an em...

SREZIC/Tk-804.036 - 14 Feb 2021 12:53:44 UTC

Tk::tkvars - Variables used or set by Tk River stage three • 160 direct dependents • 171 total dependents

The following perl variables are either set or used by Tk at various times in its execution. (For a list of variables used by perl see perlvar.) $Tk::library This variable holds the file name for a directory containing the modules related to Tk. Thes...

SREZIC/Tk-804.036 - 14 Feb 2021 12:53:44 UTC

Tk::Scale - Create and manipulate Scale widgets River stage three • 160 direct dependents • 171 total dependents

The Scale method creates a new window (given by the $widget argument) and makes it into a scale widget. Additional options, described above, may be specified on the command line or in the option database to configure aspects of the scale such as its ...

SREZIC/Tk-804.036 - 14 Feb 2021 12:53:44 UTC

Tk::Error - Method invoked to process background errors River stage three • 160 direct dependents • 171 total dependents

The Tk::Error method is invoked by perl/Tk when a background error occurs. Two possible implementations are provided in the distribution and individual applications or users can (re)define a Tk::Error method (e.g. as a perl sub) if they wish to handl...

SREZIC/Tk-804.036 - 14 Feb 2021 12:53:44 UTC

Tk::MsgBox - create and manipulate a message dialog River stage three • 160 direct dependents • 171 total dependents

MsgBox is a simple dialog with predefined buttons....

SREZIC/Tk-804.036 - 14 Feb 2021 12:53:44 UTC

Tk::Widget - Base class of all widgets River stage three • 160 direct dependents • 171 total dependents

The Tk::Widget is an abstract base class for all Tk widgets. Generic methods available to all widgets include the methods based on core "winfo" mechanism and are used to retrieve information about windows managed by Tk. They can take any of a number ...

SREZIC/Tk-804.036 - 14 Feb 2021 12:53:44 UTC

Tk::Canvas - Create and manipulate Canvas widgets River stage three • 160 direct dependents • 171 total dependents

The Canvas method creates a new window (given by the $canvas argument) and makes it into a canvas widget. Additional options, described above, may be specified on the command line or in the option database to configure aspects of the canvas such as i...

SREZIC/Tk-804.036 - 14 Feb 2021 12:53:44 UTC

Tk::bindtags - Determine which bindings apply to a window, and order of evaluation River stage three • 160 direct dependents • 171 total dependents

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 Tk::Button, the keyword all, or any other string. All of these forms are called *binding tags*. Each window has ...

SREZIC/Tk-804.036 - 14 Feb 2021 12:53:44 UTC

Tk::contrib - how to find/contribute perl/Tk code River stage three • 160 direct dependents • 171 total dependents

Here are some guidelines you can use to find a peace of code is already available and how to contribute your code. *If you have perl/Tk code that can be reused or used as an example or starting point please check if one could find it using the method...

SREZIC/Tk-804.036 - 14 Feb 2021 12:53:44 UTC

Tk::DirTree - Create and manipulate DirTree widgets River stage three • 160 direct dependents • 171 total dependents

The DirTree constructor method creates a new window (given by the $dirtree argument) and makes it into a DirTree widget. Additional options, described above, may be specified on the command line or in the option database to configure aspects of the D...

SREZIC/Tk-804.036 - 14 Feb 2021 12:53:44 UTC

Tk::palette - Modify the Tk color palette River stage three • 160 direct dependents • 171 total dependents

The setPalette method changes the color scheme for Tk. It does this by modifying the colors of existing widgets and by changing the option database so that future widgets will use the new color scheme. If setPalette is invoked with a single argument,...

SREZIC/Tk-804.036 - 14 Feb 2021 12:53:44 UTC

Tk::TixGrid - Create and manipulate Tix Grid widgets River stage three • 160 direct dependents • 171 total dependents

This widget is intended as the basis of "spread sheet" like interfaces. The widget displays its contents in a two dimensional "grid" of cells. Each cell may contain one Tix display item, which may be in text, graphics or other formats. See Tk::DItem ...

SREZIC/Tk-804.036 - 14 Feb 2021 12:53:44 UTC
38 results (0.028 seconds)