Tek-tips Whitepaper/Webcasts Library


 
Thread Tools Search this Thread
Operating Systems Solaris Solaris BigAdmin RSS Tek-tips Whitepaper/Webcasts Library
# 1  
Old 01-23-2009
Tek-tips Whitepaper/Webcasts Library

http://tek-tips.nethawk.net is the content arm of the http://www.tek-tips.com community in your directory now. Find white papers and webcasts and discuss the papers and network with one another.

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Sun Storage Tek 2540 M2 controller lockdown

hello all, I have recently acquired the above server and i am having issues with the RAID controllers being put into a lockdown state. This occurs when new drives are added to the array, the controller automagically reboots and then gives status codes OE and LT. After this i am unable to... (0 Replies)
Discussion started by: WombleLord
0 Replies

2. Red Hat

Sun Storage Tek 6140 compatible with RHEL5.7?

Issue Description: ================ There are of 4 servers (SunFire X440) : siman7tdw: SunFire X440 (affected server) siman8tdw:SunFire X440 (affected server) siman9tdw:SunFire X440 siman10tdw:SunFire X440 Storage Server: Sun Storage Tek 6140 (Name: simantdw_disk_bak) and Sun Storage... (1 Reply)
Discussion started by: Pawan Kumar
1 Replies

3. AIX

Add shared members from library to same library in a different directory

I'm trying to install libiconv to AIX 7.1 from an rpm off of the perzl site. The rpm appears to install but I get this error message. add shr4.o shared members from /usr/lib/libiconv.a to /opt/freeware/lib/libiconv.a add shr.o shared members from /usr/lib/libiconv.a to ... (5 Replies)
Discussion started by: kneemoe
5 Replies

4. Linux

./configure problem for libsf library due to apparently missing libdb library.

Hello, ./configure script fails to configure libsf. Please check the following last few lines of configure script error. checking for db1/db.h... no checking for db.h... yes checking for dbopen in -ldb1... no configure: error: No libdb? No libsf. But find command shows the following; ... (4 Replies)
Discussion started by: vectrum
4 Replies

5. UNIX for Dummies Questions & Answers

tips

hi... I want some tips for standardizing shell script code... (1 Reply)
Discussion started by: xerox
1 Replies

6. Shell Programming and Scripting

How to change a Makefile from building static library to shared library?

Hi: I have a library that it only offers Makefile for building static library. It built libxxx.a file. How do I in any way build a shared library? (either changin the Makefile or direct script or command to build shared library) Thanks. (1 Reply)
Discussion started by: cpthk
1 Replies

7. Solaris

tips Solaris

hi all... I need to know, how I can create a log when the user loggin and logout...day and hour....any person help me..... thank you (7 Replies)
Discussion started by: chanfle
7 Replies

8. UNIX for Dummies Questions & Answers

Tips on startup?

I'm running a small FreeBSD 5.1 system @ home. Whenever you log in with a normal account (not root) the system displays a random tip (commands, etc.) after the MOTD. I'd like to turn this feature off so that my custom MOTD fits on one screen. Is this posible at all? (3 Replies)
Discussion started by: McFlashbang
3 Replies
Login or Register to Ask a Question
QToolTipGroup(3qt)														QToolTipGroup(3qt)

NAME
QToolTipGroup - Collects tool tips into related groups SYNOPSIS
#include <qtooltip.h> Inherits QObject. Public Members QToolTipGroup ( QObject * parent, const char * name = 0 ) ~QToolTipGroup () bool delay () const bool enabled () const Public Slots void setDelay ( bool ) void setEnabled ( bool ) Signals void showTip ( const QString & longText ) void removeTip () Properties bool delay - whether the display of the group text is delayed bool enabled - whether tool tips in the group are enabled DESCRIPTION
The QToolTipGroup class collects tool tips into related groups. Tool tips can display two texts: one in the tip and (optionally) one that is typically in a status bar. QToolTipGroup provides a way to link tool tips to this status bar. QToolTipGroup has practically no API; it is only used as an argument to QToolTip's member functions, for example like this: QToolTipGroup * grp = new QToolTipGroup( this, "tool tip relay" ); connect( grp, SIGNAL(showTip(const QString&)), myLabel, SLOT(setText(const QString&)) ); connect( grp, SIGNAL(removeTip()), myLabel, SLOT(clear()) ); QToolTip::add( giraffeButton, "feed giraffe", grp, "Give the giraffe a meal" ); QToolTip::add( gorillaButton, "feed gorilla", grp, "Give the gorilla a meal" ); This example makes the object myLabel (which you must supply) display (one assumes, though you can make myLabel do anything, of course) the strings "Give the giraffe a meal" and "Give the gorilla a meal" while the relevant tool tips are being displayed. Deleting a tool tip group removes the tool tips in it. See also Help System. MEMBER FUNCTION DOCUMENTATION
QToolTipGroup::QToolTipGroup ( QObject * parent, const char * name = 0 ) Constructs a tool tip group called name, with parent parent. QToolTipGroup::~QToolTipGroup () Destroys this tool tip group and all tool tips in it. bool QToolTipGroup::delay () const Returns TRUE if the display of the group text is delayed; otherwise returns FALSE. See the "delay" property for details. bool QToolTipGroup::enabled () const Returns TRUE if tool tips in the group are enabled; otherwise returns FALSE. See the "enabled" property for details. void QToolTipGroup::removeTip () [signal] This signal is emitted when a tool tip in this group is hidden. See the QToolTipGroup documentation for an example of use. See also showTip(). Example: helpsystem/mainwindow.cpp. void QToolTipGroup::setDelay ( bool ) [slot] Sets whether the display of the group text is delayed. See the "delay" property for details. void QToolTipGroup::setEnabled ( bool ) [slot] Sets whether tool tips in the group are enabled. See the "enabled" property for details. void QToolTipGroup::showTip ( const QString & longText ) [signal] This signal is emitted when one of the tool tips in the group is displayed. longText is the extra text for the displayed tool tip. See also removeTip(). Example: helpsystem/mainwindow.cpp. Property Documentation bool delay This property holds whether the display of the group text is delayed. If set to TRUE (the default), the group text is displayed at the same time as the tool tip. Otherwise, the group text is displayed immediately when the cursor enters the widget. Set this property's value with setDelay() and get this property's value with delay(). bool enabled This property holds whether tool tips in the group are enabled. This property's default is TRUE. Set this property's value with setEnabled() and get this property's value with enabled(). SEE ALSO
http://doc.trolltech.com/qtooltipgroup.html http://www.trolltech.com/faq/tech.html COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the license file included in the distribution for a complete license statement. AUTHOR
Generated automatically from the source code. BUGS
If you find a bug in Qt, please report it as described in http://doc.trolltech.com/bughowto.html. Good bug reports help us to help you. Thank you. The definitive Qt documentation is provided in HTML format; it is located at $QTDIR/doc/html and can be read using Qt Assistant or with a web browser. This man page is provided as a convenience for those users who prefer man pages, although this format is not officially supported by Trolltech. If you find errors in this manual page, please report them to qt-bugs@trolltech.com. Please include the name of the manual page (qtooltipgroup.3qt) and the Qt version (3.3.8). Trolltech AS 2 February 2007 QToolTipGroup(3qt)