TTQLabel Class Reference


The TTQLabel widget provides a static information display More...

#include <tqlabel.h>

Inherits TTQFrame.

List of all member functions.

Public Members

Public Slots

Protected Members

Properties

TypeNameREADWRITEOptions
TTQStringtexttextsetText 
TextFormattextFormattextFormatsetTextFormat 
TTQPixmappixmappixmapsetPixmap 
boolscaledContentshasScaledContentssetScaledContents 
AlignmentalignmentalignmentsetAlignment 
intindentindentsetIndent 


Detailed Description

The TTQLabel widget provides a static information display

TTQLabel is used for displaying information in the form of text or image to the user. No user interaction functionality is provided. The visual appearance of the label can be configured in various ways, and it can be used for specifying a focus accelerator key for another widget.

A TTQLabel can contain any of the following content types:

When the content is changed using any of these functions, any previous content is cleared.

The look of a TTQLabel can be tuned in several ways. All the settings of TTQFrame are available for specifying a widget frame. The positioning of the content within the TTQLabel widget area can be tuned with setAlignment() and setIndent(). For example, this code sets up a sunken panel with a two-line text in the bottom right corner (both lines being flush with the right side of the label):

    TTQLabel *label = new TTQLabel;
    label->setFrameStyle( TTQFrame::Panel | TTQFrame::Sunken );
    label->setText( "first line\nsecond line" );
    label->setAlignment( AlignBottom | AlignRight );

A TTQLabel is often used as a label for another, interactive widget. For this use, TTQLabel provides a handy mechanism for adding an accelerator key (see TTQAccel) that will set the keyboard focus to the other widget (called the TQLabel's "buddy"). Example:

     TTQLineEdit* phoneEdit = new TTQLineEdit( this, "phoneEdit" );
     TTQLabel* phoneLabel = new TTQLabel( phoneEdit, "&Phone:", this, "phoneLabel" );

In this example, keyboard focus is transferred to the label's buddy (the TTQLineEdit) when the user presses Alt-P. You can also use the setBuddy() function to accomplish the same.

See also TTQLineEdit, TTQTextView, TTQPixmap, TTQMovie and GUI Design Handbook: Label

Examples: cursor/cursor.cpp layout/layout.cpp popup/popup.cpp menu/menu.cpp progress/progress.cpp qmag/qmag.cpp movies/main.cpp customlayout/main.cpp


Member Function Documentation

TTQLabel::TQLabel ( TTQWidget * buddy, const TTQString & text, TTQWidget * parent, const char * name=0, WFlags f=0 )

Constructs a label with a text and a buddy.

The text is set with setText(). The buddy is set with setBuddy().

The parent, name and f arguments are passed to the TTQFrame constructor.

See also setText(), setBuddy(), setAlignment(), setFrameStyle() and setIndent().

TTQLabel::TQLabel ( TTQWidget * parent, const char * name=0, WFlags f=0 )

Constructs an empty label.

The parent, name and f arguments are passed to the TTQFrame constructor.

See also setAlignment(), setFrameStyle() and setIndent().

TTQLabel::TQLabel ( const TTQString & text, TTQWidget * parent, const char * name=0, WFlags f=0 )

Constructs a label with a text. The text is set with setText().

The parent, name and f arguments are passed to the TTQFrame constructor.

See also setText(), setAlignment(), setFrameStyle() and setIndent().

TTQLabel::~TQLabel ()

Destructs the label.

int TTQLabel::alignment () const

Returns the alignment setting.

See also setAlignment().

bool TTQLabel::autoResize () const

This function is obsolete. It is provided to keep old source working, and will probably be removed in a future version of Qt. We strongly advise against using it in new code.

Returns TRUE if auto-resizing is enabled, or FALSE if auto-resizing is disabled.

Auto-resizing is disabled by default.

See also setAutoResize().

TTQWidget * TTQLabel::buddy () const

Returns the buddy of this label, or 0 if no buddy is currently set.

See also setBuddy().

void TTQLabel::clear () [slot]

Clears any label contents. Equivalent with setText( "" ).

void TTQLabel::drawContents ( TTQPainter * p ) [virtual protected]

Draws the label contents using the painter p.

Reimplemented from TTQFrame.

void TTQLabel::drawContentsMask ( TTQPainter * p ) [virtual protected]

Draws the label contents mask using the painter p. Used only in transparent mode.

See also TTQWidget::setAutoMask();.

Reimplemented from TTQFrame.

void TTQLabel::fontChange ( const TTQFont & ) [virtual protected]

Reimplemented for internal reasons; the API is not affected.

Reimplemented from TTQWidget.

bool TTQLabel::hasScaledContents () const

Returns whether the label will scale its contents to fill all available space.

See also setScaledContents().

int TTQLabel::heightForWidth ( int w ) const [virtual]

Reimplemented for internal reasons; the API is not affected.

Reimplemented from TTQWidget.

int TTQLabel::indent () const

Returns the indent of the label.

See also setIndent().

TTQSize TTQLabel::minimumSizeHint () const [virtual]

Reimplemented for internal reasons; the API is not affected.

Reimplemented from TTQWidget.

TTQMovieTTQLabel::movie () const

If the label contains a movie, returns a pointer to it. Otherwise, returns 0.

See also setMovie().

TTQPixmap * TTQLabel::pixmap () const

If the label contains a pixmap, returns a pointer to it. Otherwise, returns 0.

See also setPixmap().

void TTQLabel::resizeEvent ( TTQResizeEvent * e ) [virtual protected]

Reimplemented for internal reasons; the API is not affected.

Reimplemented from TTQWidget.

void TTQLabel::setAlignment ( int alignment ) [virtual]

Sets the alignment of the label contents.

The alignment must be a bitwise OR of TQt::AlignmentFlags values. The WordBreak, ExpandTabs, SingleLine and ShowPrefix flags apply only if the label contains a plain text, and are otherwise ignored. The DontClip flag is always ignored.

If the label has a buddy, the ShowPrefix flag is forced to TRUE.

The default alignment is AlignLeft | AlignVCenter | ExpandTabs if the label doesn't have a buddy and AlignLeft | AlignVCenter | ExpandTabs | ShowPrefix if the label has a buddy.

See also TQt::AlignmentFlags, alignment(), setBuddy() and setText().

Examples: cursor/cursor.cpp layout/layout.cpp popup/popup.cpp qmag/qmag.cpp customlayout/main.cpp

void TTQLabel::setAutoMask ( bool b ) [virtual]

Reimplemented for internal reasons; the API is not affected.

Reimplemented from TTQWidget.

void TTQLabel::setAutoResize ( bool enable ) [virtual]

This function is obsolete. It is provided to keep old source working, and will probably be removed in a future version of Qt. We strongly advise against using it in new code.

Enables auto-resizing if enable is TRUE, or disables it if enable is FALSE.

When auto-resizing is enabled, the label will resize itself to fit the contents whenever the contents change. The top left corner is not moved. This is useful for TTQLabel widgets that are not managed by a TTQLayout (e.g. top-level widgets).

Auto-resizing is disabled by default.

See also autoResize(), adjustSize() and sizeHint().

void TTQLabel::setBuddy ( TTQWidget * buddy ) [virtual]

Sets the buddy of this label to buddy.

When the user presses the accelerator key indicated by this label, the keyboard focus is transferred to the label's buddy widget.

The buddy mechanism is only available for TQLabels that contain a plain text in which one letter is prefixed with '&'. It is this letter that is set as the accelerator key. The letter is displayed underlined, and the '&' is not displayed (i.e. the ShowPrefix alignment flag is turned on; see setAlignment()).

In a dialog, you might create two data entry widgets and a label for each, and set up the geometry layout so each label is just to the left of its data entry widget (its "buddy"), somewhat like this:

    TTQLineEdit *nameEd  = new TTQLineEdit( this );
    TTQLabel    *nameLb  = new TTQLabel( "&Name:", this );
    nameLb->setBuddy( nameEd );
    TTQLineEdit *phoneEd = new TTQLineEdit( this );
    TTQLabel    *phoneLb = new TTQLabel( "&Phone:", this );
    phoneLb->setBuddy( phoneEd );
    // ( layout setup not shown )

With the code above, the focus jumps to the Name field when the user presses Alt-N, and to the Phone field when the user presses Alt-P.

To unset a previously set buddy, call this function with buddy set to 0.

See also buddy(), setText(), TTQAccel and setAlignment().

Examples: layout/layout.cpp

void TTQLabel::setIndent ( int indent )

Sets the indent of the label to indent pixels.

The indent applies to the left edge if alignment() is AlignLeft, to the right edge if alignment() is AlignRight, to the top edge if alignment() is AlignTop, and to to the bottom edge if alignment() is AlignBottom.

If indent is negative, or if no indent has been set, the label computes the effective indent as follows: If frameWidth() is 0, the effective indent becomes 0. If frameWidth() is greater than 0, the effective indent becomes half the width of the "x" character of the widget's current font().

If indent is non-negative, the effective indent is indent pixels.

See also indent(), setAlignment(), frameWidth() and font().

Examples: movies/main.cpp

void TTQLabel::setMovie ( const TTQMovie & movie ) [virtual slot]

Sets the label contents to movie. Any previous content is cleared.

The buddy accelerator, if any, is disabled.

The label resizes itself if auto-resizing is enabled.

See also movie() and setBuddy().

void TTQLabel::setNum ( double num ) [virtual slot]

Sets the label contents to a plain text containing the printed value of num. Does nothing if this is equal to the current contents of the label. Any previous content is cleared.

The buddy accelerator, if any, is disabled.

The label resizes itself if auto-resizing is enabled.

See also setText(), TTQString::setNum() and setBuddy().

void TTQLabel::setNum ( int num ) [virtual slot]

Sets the label contents to a plain text containing the printed value of num. Does nothing if this is equal to the current contents of the label. Any previous content is cleared.

The buddy accelerator, if any, is disabled.

The label resizes itself if auto-resizing is enabled.

See also setText(), TTQString::setNum() and setBuddy().

void TTQLabel::setPixmap ( const TTQPixmap & pixmap ) [virtual slot]

Sets the label contents to pixmap. Any previous content is cleared.

The buddy accelerator, if any, is disabled.

The label resizes itself if auto-resizing is enabled.

See also pixmap() and setBuddy().

void TTQLabel::setScaledContents ( bool enable )

When called with enable == TRUE, and the label shows a pixmap, it will scale the pixmap to fill available space.

See also hasScaledContents().

void TTQLabel::setText ( const TTQString & text ) [virtual slot]

Sets the label contents to text, or does nothing if text is equal to the current contents of the label. Any previous content is cleared.

text will be interpreted either as a plain text or as a rich text, depending on the text format setting; see setTextFormat(). The default setting is AutoText, i.e. TTQLabel will try to auto-detect the format of text.

If text is interpreted as a plain text, and a buddy has been set, the buddy accelerator key is updated from the new text.

The label resizes itself if auto-resizing is enabled.

Note that Qlabel is well suited to display small rich text documents only. For large documents, use TTQTextView instead. It will flicker less on resize and can also provide a scrollbar if necessary.

See also text(), setTextFormat(), setBuddy() and setAlignment().

Examples: cursor/cursor.cpp layout/layout.cpp popup/popup.cpp qmag/qmag.cpp customlayout/main.cpp

void TTQLabel::setTextFormat ( TQt::TextFormat format )

Sets the text format to format. See the TQt::TextFormat enum for an explanation of the possible options.

The default format is AutoText.

See also textFormat() and setText().

TTQSize TTQLabel::sizeHint () const [virtual]

Reimplemented for internal reasons; the API is not affected.

Examples: layout/layout.cpp

Reimplemented from TTQWidget.

TTQSizePolicy TTQLabel::sizePolicy () const [virtual]

Reimplemented for internal reasons; the API is not affected.

Reimplemented from TTQWidget.

TTQString TTQLabel::text () const

Returns the label text. If the content is a plain or a rich text, this is the string that was passed to setText(). Otherwise, it is an empty/null string.

See also setText(), setNum() and clear().

TQt::TextFormat TTQLabel::textFormat() const

Returns the current text format.

See also setTextFormat().


Search the documentation, FAQ, qt-interest archive and more (uses www.trolltech.com):


This file is part of the Qt toolkit, copyright © 1995-2000 Trolltech, all rights reserved.


Copyright © 2000 TrolltechTrademarks
Qt version 3.0.0-snapshot