Orange Widgets


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Complex Event Processing RSS News Orange Widgets
# 1  
Old 10-09-2008
Orange Widgets

2008-10-09T12:58:00.005-04:00


Source...
Login or Register to Ask a Question

Previous Thread | Next Thread

5 More Discussions You Might Find Interesting

1. UNIX Desktop Questions & Answers

[LUA / DE] AwesomeWM & Vicious Widgets

Hello Allthough i dont know LUA, despite its name, i do love the window manager that was created using that language. By now, I'm enough familiar with LUA so i could adapt (most of) the recent changes so i have vicous widgets working again - by the means of no error messages on start up. I... (1 Reply)
Discussion started by: sea
1 Replies

2. Infrastructure Monitoring

Nagios widgets to create custom GUI

Hi, I need to create a custom GUI for Nagios, as follows: - no logo - including monitoring info (network status overview, host/service details & status) as well as some network google map I'm looking for Nagios widgets that can be easily integrated in our HTML page. Can you suggest if there... (0 Replies)
Discussion started by: CHK
0 Replies

3. UNIX for Dummies Questions & Answers

Google chart: removing orange lines

There is a google chart as follows: https://chart.googleapis.com/chart?chs=400x250&cht=lc&chxt=x,y&chd=t:95,95|80,80|20,20|5,5&chm=b,E2EBFB,0,1,0|b,C9DBFB,1,2,0|b,E2EBFB,2,3,0 There are orange lines shown, but it is unclear how they are generated. How can they be removed? (4 Replies)
Discussion started by: figaro
4 Replies

4. AIX

Orange light has come on server

Hi all, we are using IBM e series server on which AIX 5.3 is runing , we got orange light on our server, so please can any one suggest me how to diabled this light. thanks alot in advance i followed these instruction befor but i couldn't able to diabled these light #diag then... (2 Replies)
Discussion started by: younusdba
2 Replies

5. AIX

create widgets using perl pk module

hi I am posting this for my friend... is it possible to create widgets using perl pk module in IBM AIX 5.3? They dont have a GUI so is it possible to create the above mentioned thing in a CUI? thanks! Sathish (1 Reply)
Discussion started by: sathumenon
1 Replies
Login or Register to Ask a Question
Widgets::TextField(3pm) 				User Contributed Perl Documentation				   Widgets::TextField(3pm)

NAME
Curses::Widgets::TextField - Text Field Widgets MODULE VERSION
$Id: TextField.pm,v 1.103 2002/11/04 00:35:44 corliss Exp corliss $ SYNOPSIS
use Curses::Widgets::TextField; $tf = Curses::Widgets::TextField->new({ CAPTION => 'Name', CAPTIONCOL => 'yellow', COLUMNS => 10, MAXLENGTH => 255, MASK => undef, VALUE => '', INPUTFUNC => &scankey, FOREGROUND => undef, BACKGROUND => 'black', BORDER => 1, BORDERCOL => 'red', FOCUSSWITCH => " ", CURSORPOS => 0, TEXTSTART => 0, PASSWORD => 0, X => 1, Y => 1, READONLY => 0, }); $tf->draw($mwh, 1); See the Curses::Widgets pod for other methods. REQUIREMENTS
Curses Curses::Widgets DESCRIPTION
Curses::Widgets::TextField provides simplified OO access to Curses-based single line text fields. Each object maintains its own state information. METHODS
new (inherited from Curses::Widgets) $tf = Curses::Widgets::TextField->new({ CAPTION => 'Name', CAPTIONCOL => 'yellow', COLUMNS => 10, MAXLENGTH => 255, MASK => undef, VALUE => '', INPUTFUNC => &scankey, FOREGROUND => undef, BACKGROUND => 'black', BORDER => 1, BORDERCOL => 'red', FOCUSSWITCH => " ", CURSORPOS => 0, TEXTSTART => 0, PASSWORD => 0, X => 1, Y => 1, READONLY => 0, }); The new method instantiates a new TextField object. The only mandatory key/value pairs in the configuration hash are X and Y. All others have the following defaults: Key Default Description ============================================================ CAPTION undef Caption superimposed on border CAPTIONCOL undef Foreground colour for caption text COLUMNS 10 Number of columns displayed MAXLENGTH 255 Maximum string length allowed MASK undef Not yet implemented VALUE '' Current field text INPUTFUNC &scankey Function to use to scan for keystrokes FOREGROUND undef Default foreground colour BACKGROUND undef Default background colour BORDER 1 Display a border around the field BORDERCOL undef Foreground colour for border FOCUSSWITCH " " Characters which signify end of input CURSORPOS 0 Starting position of the cursor TEXTSTART 0 Position in string to start displaying PASSWORD 0 Subsitutes '*' instead of characters READONLY 0 Prevents alteration to content The CAPTION is only valid when the BORDER is enabled. If the border is disabled, the field will be underlined, provided the terminal sup- ports it. If MAXLENGTH is undefined, no limit will be placed on the string length. If BORDER is true, the widget will be enlarged to three columns and two more columns to make room for the border. draw $tf->draw($mwh, 1); The draw method renders the text field in its current state. This requires a valid handle to a curses window in which it will render itself. The optional second argument, if true, will cause the field's text cursor to be rendered as well. HISTORY
1999/12/29 -- Original text field widget in functional model 2001/07/05 -- First incarnation in OO architecture AUTHOR
/COPYRIGHT (c) 2001 Arthur Corliss (corliss@digitalmages.com) perl v5.8.8 2006-09-14 Widgets::TextField(3pm)