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

Search results for "dist:Curses-UI Curses"

Curses::UI - A curses based OO user interface framework River stage two • 20 direct dependents • 20 total dependents

Curses::UI is an object-oriented user interface framework for Perl. It contains basic widgets (like buttons and text areas), more "advanced" widgets (like UI tabs and a fully-functional basic text editor), and some higher-level classes like pre-fab e...

MDXI/Curses-UI-0.9609 - 02 Sep 2011 18:10:20 UTC

Curses::UI::Label - Create and manipulate label widgets River stage two • 20 direct dependents • 20 total dependents

Curses::UI::Label is a widget that shows a textstring. This textstring can be drawn using these special features: bold, dimmed, reverse, underlined, and blinking. See exampes/demo-Curses::UI::Label in the distribution for a short demo....

MDXI/Curses-UI-0.9609 - 02 Sep 2011 18:10:20 UTC

Curses::UI::Color - Color support module River stage two • 20 direct dependents • 20 total dependents

This module provides all functions related to color support in Curses::UI. The color support was implemented without disturbing old applications, they will look as they used to do. Only if you enable color support explicitly and it is available on yo...

MDXI/Curses-UI-0.9609 - 02 Sep 2011 18:10:20 UTC

Curses::UI::Window - Create and manipulate Window widgets River stage two • 20 direct dependents • 20 total dependents

Curses::UI::Window is a window widget. It can be added to a Curses::UI instance. After that the window can be filled with other widgets to create an application window. For information on how to fill the window with widgets, see Curses::UI::Container...

MDXI/Curses-UI-0.9609 - 02 Sep 2011 18:10:20 UTC

Curses::UI::Widget - The base class for all widgets River stage two • 20 direct dependents • 20 total dependents

MDXI/Curses-UI-0.9609 - 02 Sep 2011 18:10:20 UTC

Curses::UI::Common - Common methods for Curses::UI River stage two • 20 direct dependents • 20 total dependents

Curses::UI::Common is a collection of methods that is shared between Curses::UI classes....

MDXI/Curses-UI-0.9609 - 02 Sep 2011 18:10:20 UTC

Curses::UI::Listbox - Create and manipulate listbox widgets River stage two • 20 direct dependents • 20 total dependents

Curses::UI::Listbox is a widget that can be used to create a couple of different kinds of listboxes. These are: * default listbox A list of values through which can be browsed. One of these values can be selected. The selected value will be highlight...

MDXI/Curses-UI-0.9609 - 02 Sep 2011 18:10:20 UTC

Curses::UI::Menubar - Create and manipulate menubar widgets River stage two • 20 direct dependents • 20 total dependents

This class can be used to add a menubar to Curses::UI. This menubar can contain a complete submenu hierarchy. It looks (remotely :-) like this: ------------------------------------- menu1 | menu2 | menu3 | .... ------------------------------------- +...

MDXI/Curses-UI-0.9609 - 02 Sep 2011 18:10:20 UTC

Curses::UI::Checkbox - Create and manipulate checkbox widgets River stage two • 20 direct dependents • 20 total dependents

Curses::UI::Checkbox provides a checkbox widget. A checkbox is a control for a boolean value (an on/off toggle). It consists of a box which will either be empty (indicating off or false) or contain an "X" (indicating on or true). Following this is a ...

MDXI/Curses-UI-0.9609 - 02 Sep 2011 18:10:20 UTC

Curses::UI::Notebook - Create and manipulate notebook widgets. River stage two • 20 direct dependents • 20 total dependents

This package implements a *notebook widget* similar to that found in Motif. A *notebook* holds several windows, or *pages*, only one of which is visible at any given time; tabs at the top of the widget list the pages that are available. In this way, ...

MDXI/Curses-UI-0.9609 - 02 Sep 2011 18:10:20 UTC

Curses::UI::Calendar - Create and manipulate calendar widgets River stage two • 20 direct dependents • 20 total dependents

Curses::UI::Calendar is a widget that can be used to create a calendar in which the user can select a date. The calendar widget looks like this: +----------------------+ | mmm dd yyyy | +----------------------+ | su mo tu we th fr sa | | | | 01 02 03...

MDXI/Curses-UI-0.9609 - 02 Sep 2011 18:10:20 UTC

Curses::UI::Tutorial - Tutorial for the Curses::UI framework River stage two • 20 direct dependents • 20 total dependents

MDXI/Curses-UI-0.9609 - 02 Sep 2011 18:10:20 UTC

Curses::UI::Container - Create and manipulate container widgets River stage two • 20 direct dependents • 20 total dependents

A container provides an easy way of managing multiple widgets in a single "form". A lot of Curses::UI functionality is built around containers. The main class Curses::UI itself is a container. A Curses::UI::Window is a container. Some of the widgets ...

MDXI/Curses-UI-0.9609 - 02 Sep 2011 18:10:20 UTC

Curses::UI::Buttonbox - Create and manipulate button widgets River stage two • 20 direct dependents • 20 total dependents

Curses::UI::Buttonbox is a widget that can be used to create an array of buttons (or, of course, only one button)....

MDXI/Curses-UI-0.9609 - 02 Sep 2011 18:10:20 UTC

Curses::UI::Popupmenu - Create and manipulate popupbox widgets River stage two • 20 direct dependents • 20 total dependents

Curses::UI::Popupmenu is a widget that can be used to create something very similar to a basic Curses::UI::Listbox. The difference is that the widget will show only the currently selected value (or "-------" if no value is yet selected). The list of ...

MDXI/Curses-UI-0.9609 - 02 Sep 2011 18:10:20 UTC

Curses::UI::TextEntry - Create and manipulate textentry widgets River stage two • 20 direct dependents • 20 total dependents

Curses::UI::TextEntry is a widget that can be used to create a textentry widget. This class is derived from Curses::UI::TextEditor. The only special thing about this class is that the -singleline option is forced to a true value. So for the usage of ...

MDXI/Curses-UI-0.9609 - 02 Sep 2011 18:10:20 UTC

Curses::UI::Searchable - Add 'less'-like search abilities to a widget River stage two • 20 direct dependents • 20 total dependents

Using Curses::UI::Searchable, you can add 'less'-like search capabilities to your widget. To make your widget searchable using this class, your widget should meet the following requirements: * make it a descendant of Curses::UI::Searchable All method...

MDXI/Curses-UI-0.9609 - 02 Sep 2011 18:10:20 UTC

Curses::UI::TextEditor - Create and manipulate texteditor widgets River stage two • 20 direct dependents • 20 total dependents

Curses::UI::TextEditor is a widget that can be used to create a couple of different kinds of texteditors. These are: * multi-line texteditor This is a multi-line text editor with features like word-wrapping, maximum textlength and undo. * single-line...

MDXI/Curses-UI-0.9609 - 02 Sep 2011 18:10:20 UTC

Curses::UI::TextViewer - Create and manipulate textviewer widgets River stage two • 20 direct dependents • 20 total dependents

Curses::UI::TextViewer is a widget that can be used to create a textviewer widget. This class is derived from Curses::UI::TextEditor. The only special thing about this class is that the -readonly option is forced to a true value. So for the usage of ...

MDXI/Curses-UI-0.9609 - 02 Sep 2011 18:10:20 UTC

Curses::UI::Progressbar - Create and manipulate progressbar widgets River stage two • 20 direct dependents • 20 total dependents

Curses::UI::Progressbar is a widget that can be used to provide some sort of progress information to the user of your program. The progressbar looks like this: +------------------------------------------+ |||||||||---------- 14% ------------------ | ...

MDXI/Curses-UI-0.9609 - 02 Sep 2011 18:10:20 UTC
46 results (0.022 seconds)