NAME

IUP::Label - [GUI element] displays a separator, a text or an image

DESCRIPTION

Creates a label interface element, which displays a separator, a text or an image.

USAGE

CREATION - new() method

 $label = IUP::Label->new( TITLE=>"Text" );

Returns: the identifier of the created element, or undef if an error occurs.

NOTE: You can pass to new() other ATTRIBUTE=>'value' or CALLBACKNAME=>\&func pairs relevant to this element - see IUP::Manual::02_Elements.

ATTRIBUTES

For more info about concept of attributes (setting/getting values etc.) see IUP::Manual::03_Attributes. Attributes specific to this element:

ACTIVE

The only difference between an active label and an inactive one is its visual feedback. Possible values: "YES, "NO". Default: "YES".

ALIGNMENT

(non inheritable)

Horizontal and vertical alignment. Possible values: "ALEFT", "ACENTER" and "ARIGHT", combined to "ATOP", "ACENTER" and "ABOTTOM". Default: "ALEFT:ACENTER". Partial values are also accepted, like "ARIGHT" or ":ATOP", the other value will be used from the current alignment. In Motif, vertical alignment is restricted to "ACENTER". (vertical alignment since iup-3.0)

BGCOLOR

Ignored, transparent in all systems. Will use the background color of the native parent.

ELLIPSIS

[Windows and GTK only]

Add an ellipsis: "..." to the text if there is not enough space to render the entire string. Can be "YES" or "NO". Default: "NO". (GTK 2.6)

FGCOLOR

Text color. Default: the global attribute DLGFGCOLOR.

IMAGE

(non inheritable)

Image name or IUP::Image reference. If set before map defines the behavior of the label to contain an image. The natural size will be size of the image in pixels.

See - Using Images in Other Elements (via IMAGE Attribute)

IMINACTIVE (non inheritable) [GTK and Motif only]

Image name of the element when inactive. If it is not defined then the IMAGE is used and the colors will be replaced by a modified version of the background color creating the disabled effect. GTK will also change the inactive image to look like other inactive objects.

MARKUP

[GTK only]

Allows the title string to contains pango markup commands. Works only if a mnemonic is NOT defined in the title. Can be "YES" or "NO". Default: "NO".

PADDING

Internal margin. Works just like the MARGIN attribute of the IUP::Hbox and <IUP::Vbox> containers, but uses a different name to avoid inheritance problems. Not used when SEPARATOR is used. Default value: "0x0".

SEPARATOR

(creation only, non inheritable)

Turns the label into a line separator. Possible values: "HORIZONTAL" or "VERTICAL". When changed before mapping the EXPAND attribute is set to "HORIZONTAL" or "VERTICAL" accordingly.

TITLE

(non inheritable)

Label's text. If SEPARATOR or IMAGE are not defined before map, then the default behavior is to contain a text. The label behavior can not be changed after map. The natural size will be larger enough to include all the text in the selected font, even using multiple lines. The '\n' character is accepted for line change. The "&" character can be used to define a mnemonic, the next character will be used as key. Use "&&" to show the "&" character instead of defining a mnemonic. The next control from the label will be activated from any control in the dialog using the "Alt+key" combination. (mnemonic support since iup-3.0)

WORDWRAP

[Windows and GTK only]

Enables or disable the wrapping of lines that does not fits in the label. Can be "YES" or "NO". Default: "NO". Can only set WORDWRAP=YES if ALIGNMENT=ALEFT.

The following common attributes are also accepted:

CALLBACKS

For more info about concept of callbacks (setting callback handlers etc.) see IUP::Manual::04_Callbacks. Callbacks specific to this element:

BUTTON_CB

Action generated when any mouse button is pressed or released. (since iup-3.3)

DROPFILES_CB

[Windows and GTK Only]

Action generated when one or more files are dropped in the element. (since iup-3.3)

The following common callbacks are also accepted:

NOTES

Labels with images, texts or line separator can not change its behavior after mapped. But after map the image can be changed for another image, and the text for another text.

EXAMPLES

The element IUP::Label is used in the following sample scripts:

SEE ALSO

IUP::Image, IUP::Button.

The original doc: iuplabel.html