Sponsored Content
Full Discussion: Ports
Top Forums UNIX for Dummies Questions & Answers Ports Post 32907 by Ralf on Tuesday 10th of December 2002 11:07:12 AM
Old 12-10-2002
thanks TioTony :thumb:
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

ports

how can i check to see if my mail ports are open (port 110 for incoming and 25 for outgoing)? I want to do this because i am having a problem sending email out. If one of the ports has a problem, how can i open it? Thanks in advance! (9 Replies)
Discussion started by: djatwork
9 Replies

2. UNIX for Dummies Questions & Answers

Ports

How To Close ports,for example finger port 79?? :confused: :confused: :confused: 10x (6 Replies)
Discussion started by: Yaki
6 Replies

3. IP Networking

ports???

Ok, I've been working in the IT field for about 3 years now and I never fully understood the concept of ip ports. I just started a new job that uses Solaris and today it kinda clicked in my head and I want to know if I'm right or wrong. Does each ip address have multiple ports. because we... (4 Replies)
Discussion started by: eloquent99
4 Replies

4. IP Networking

Ports

What are some good sites that list all TPC/UDP ports? ~thanks (3 Replies)
Discussion started by: ireeneek
3 Replies

5. UNIX for Dummies Questions & Answers

Ports...

Hello UNIX people... This is my first foray into the UNIX world so go easy on me... I have a client who has hired me to do some work on his windows stuff, BUT it just so happens his UNIX server started giving him problems... He is running SCO Open Server 5.0.6 The TTY ports won't... (5 Replies)
Discussion started by: TechKnow
5 Replies

6. HP-UX

Ports

Can any one tell the command for which process are running on a perticular port (1 Reply)
Discussion started by: zsujith
1 Replies

7. Solaris

regarding ports

Hi , I need one help... Is there any command on solaris 10 to free the ports. For e.g I used netstat -na| grep 8080 it displays either it is listening or established.. i want to free the ports... Anyone please help me on this... Thanks, Shanmuga (2 Replies)
Discussion started by: shanshine
2 Replies

8. Solaris

ports

Hi, If for example i try to start tomcat in a solaris server and get errors related to address already in use, how can I know if this port is really used for another process? If someone can point any documentation it will be very helpfull. Thanks! :rolleyes: (9 Replies)
Discussion started by: ffpradella
9 Replies

9. UNIX for Dummies Questions & Answers

ports

When the netstat -an command is run on current unix machine, it seems that there's an excessive amount of ports established (roughly 600). How can I tell what each of these ports are being used for? (1 Reply)
Discussion started by: lastchance551
1 Replies

10. UNIX for Advanced & Expert Users

Ports

** forum admins: Before you come down on my like a wrath of something, I can get no decent answers so I have to come to these Gurus' court *** I am by no means Unix expert. However, none of our unix admin (aix & hpux) can give me an answer that makes sense. My Issue: Assigned ports in 8601,... (7 Replies)
Discussion started by: rsheikh
7 Replies
Prima::ScrollBar(3)					User Contributed Perl Documentation				       Prima::ScrollBar(3)

NAME
Prima::ScrollBar - standard scroll bars class DESCRIPTION
The class "Prima::ScrollBar" implements both vertical and horizontal scrollbars in Prima. This is a purely Perl class without any C-implemented parts except those inherited from "Prima::Widget". SYNOPSIS
use Prima::ScrollBar; my $sb = Prima::ScrollBar-> create( owner => $group, %rest_of_profile); my $sb = $group-> insert( 'ScrollBar', %rest_of_profile); my $isAutoTrack = $sb-> autoTrack; $sb-> autoTrack( $yesNo); my $val = $sb-> value; $sb-> value( $value); my $min = $sb-> min; my $max = $sb-> max; $sb-> min( $min); $sb-> max( $max); $sb-> set_bounds( $min, $max); my $step = $sb-> step; my $pageStep = $sb-> pageStep; $sb-> step( $step); $sb-> pageStep( $pageStep); my $partial = $sb-> partial; my $whole = $sb-> whole; $sb-> partial( $partial); $sb-> whole( $whole); $sb-> set_proportion( $partial, $whole); my $size = $sb-> minThumbSize; $sb-> minThumbSize( $size); my $isVertical = $sb-> vertical; $sb-> vertical( $yesNo); my ($width,$height) = $sb-> get_default_size; API
Properties autoTrack BOOLEAN Tells the widget if it should send "Change" notification during mouse tracking events. Generally it should only be set to 0 on very slow computers. Default value is 1 (logical true). growMode INTEGER Default value is gm::GrowHiX, i.e. the scrollbar will try to maintain the constant distance from its right edge to its owner's right edge as the owner changes its size. This is useful for horizontal scrollbars. height INTEGER Default value is $Prima::ScrollBar::stdMetrics[1], which is an operating system dependent value determined with a call to "Prima::Application-> get_default_scrollbar_metrics". The height is affected because by default the horizontal "ScrollBar" will be created. max INTEGER Sets the upper limit for "value". Default value: 100. min INTEGER Sets the lower limit for "value". Default value: 0 minThumbSize INTEGER A minimal thumb breadth in pixels. The thumb cannot have main dimension lesser than this. Default value: 21 pageStep INTEGER This determines the increment/decrement to "value" during "page"-related operations, for example clicking the mouse on the strip outside the thumb, or pressing "PgDn" or "PgUp". Default value: 10 partial INTEGER This tells the scrollbar how many of imaginary units the thumb should occupy. See "whole" below. Default value: 10 selectable BOOLEAN Default value is 0 (logical false). If set to 1 the widget receives keyboard focus; when in focus, the thumb is blinking. step INTEGER This determines the minimal increment/decrement to "value" during mouse/keyboard interaction. Default value is 1. value INTEGER A basic scrollbar property; reflects the imaginary position between "min" and "max", which corresponds directly to the position of the thumb. Default value is 0. vertical BOOLEAN Determines the main scrollbar style. Set this to 1 when the scrollbar style is vertical, 0 - horizontal. The property can be changed at run-time, so the scrollbars can morph from horizontal to vertical and vice versa. Default value is 0 (logical false). whole INTEGER This tells the scrollbar how many of imaginary units correspond to the whole length of the scrollbar. This value has nothing in common with "min" and "max". You may think of the combination of "partial" and "whole" as of the proportion between the visible size of something (document, for example) and the whole size of that "something". Useful to struggle against infamous "bird" size of Windows scrollbar thumbs. Default value is 100. Methods get_default_size Returns two integers, the default platform dependant width of a vertical scrollbar and height of a horizontal scrollbar. Events Change The "Change" notification is sent whenever the thumb position of scrollbar is changed, subject to a certain limitations when "autoTrack" is 0. The notification conforms the general Prima rule: it is sent when appropriate, regardless to whether this was a result of user interaction, or a side effect of some method programmer has called. Track If "autoTrack" is 0, called when the user changes the thumb position by the mouse instead of "Change". EXAMPLE
use Prima; use Prima::Application name => 'ScrollBar test'; use Prima::ScrollBar; my $w = Prima::Window-> create( text => 'ScrollBar test', size => [300,200]); my $sb = $w-> insert( ScrollBar => width => 280, left => 10, bottom => 50, onChange => sub { $w-> text( $_[0]-> value); }); run Prima; SEE ALSO
Prima, Prima::Widget, Prima::IntUtils, examples/rtc.pl, examples/scrolbar.pl AUTHORS
Dmitry Karasik <dk@plab.ku.dk>, Anton Berezin <tobez@plab.ku.dk> - documentation perl v5.14.2 2009-02-24 Prima::ScrollBar(3)
All times are GMT -4. The time now is 07:40 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy