QLCDNumber Class Reference

[ QtGui module]

QLCDNumber 小部件显示带有类似 LCD 数字的数字。 更多...

继承 QFrame .

类型

方法

Qt Signals


详细描述

The QLCDNumber widget displays a number with LCD-like digits.

It can display a number in just about any size. It can display decimal, hexadecimal, octal or binary numbers. It is easy to connect to data sources using the display () slot, which is overloaded to take any of five argument types.

There are also slots to change the base with setMode () and the decimal point with setSmallDecimalPoint ().

QLCDNumber emits the overflow () signal when it is asked to display something beyond its range. The range is set by setDigitCount (),但 setSmallDecimalPoint () also influences it. If the display is set to hexadecimal, octal or binary, the integer equivalent of the value is displayed.

These digits and other symbols can be shown: 0/O, 1, 2, 3, 4, 5/S, 6, 7, 8, 9/g, minus, decimal point, A, B, C, D, E, F, h, H, L, o, P, r, u, U, Y, colon, degree sign (which is specified as single quote in the string) and space. QLCDNumber substitutes spaces for illegal characters.

It is not possible to retrieve the contents of a QLCDNumber object, although you can retrieve the numeric value with value (). If you really need the text, we recommend that you connect the signals that feed the display () slot to another slot as well and store the value there.

Incidentally, QLCDNumber is the very oldest part of Qt, tracing its roots back to a BASIC program on the Sinclair Spectrum .

Screenshot of a Motif style LCD number widget Screenshot of a CDE style LCD number widget Screenshot of a Windows style LCD number widget Screenshot of a Windows XP style LCD number widget Screenshot of a Macintosh style LCD number widget Screenshot of a Plastique style LCD number widget
LCD number widgets shown in various widget styles (from left to right): Motif , CDE , Windows , Windows XP , Macintosh , Plastique .

类型文档编制

QLCDNumber.Mode

This type determines how numbers are shown.

常量 描述
QLCDNumber.Hex 0 Hexadecimal
QLCDNumber.Dec 1 Decimal
QLCDNumber.Oct 2 Octal
QLCDNumber.Bin 3 Binary

If the display is set to hexadecimal, octal or binary, the integer equivalent of the value is displayed.

QLCDNumber.SegmentStyle

This type determines the visual appearance of the QLCDNumber 小部件。

常量 描述
QLCDNumber.Outline 0 gives raised segments filled with the background color.
QLCDNumber.Filled 1 gives raised segments filled with the windowText color.
QLCDNumber.Flat 2 gives flat segments filled with the windowText color.

方法文档编制

QLCDNumber.__init__ ( self , QWidget   parent  = None)

parent argument, if not None, causes self to be owned by Qt instead of PyQt.

Constructs an LCD number, sets the number of digits to 5, the base to decimal, the decimal point mode to 'small' and the frame style to a raised box. The segmentStyle () 被设为 Outline .

parent argument is passed to the QFrame 构造函数。

另请参阅 setDigitCount () 和 setSmallDecimalPoint ().

QLCDNumber.__init__ ( self , int  numDigits , QWidget   parent  = None)

parent argument, if not None, causes self to be owned by Qt instead of PyQt.

Constructs an LCD number, sets the number of digits to numDigits , the base to decimal, the decimal point mode to 'small' and the frame style to a raised box. The segmentStyle () 被设为 Filled .

parent argument is passed to the QFrame 构造函数。

另请参阅 setDigitCount () 和 setSmallDecimalPoint ().

bool QLCDNumber.checkOverflow ( self , float  num )

返回 true 若 num is too big to be displayed in its entirety; otherwise returns false.

另请参阅 display (), digitCount (),和 smallDecimalPoint ().

bool QLCDNumber.checkOverflow ( self , int  num )

这是重载函数。

返回 true 若 num is too big to be displayed in its entirety; otherwise returns false.

另请参阅 display (), digitCount (),和 smallDecimalPoint ().

int QLCDNumber.digitCount ( self )

QLCDNumber.display ( self , QString  str )

QLCDNumber.display ( self , float  num )

QLCDNumber.display ( self , int  num )

bool QLCDNumber.event ( self , QEvent   e )

重实现自 QObject.event ().

int QLCDNumber.intValue ( self )

Mode QLCDNumber.mode ( self )

int QLCDNumber.numDigits ( self )

QLCDNumber.paintEvent ( self , QPaintEvent )

重实现自 QWidget.paintEvent ().

SegmentStyle QLCDNumber.segmentStyle ( self )

QLCDNumber.setBinMode ( self )

Calls setMode(Bin). Provided for convenience (e.g. for connecting buttons to it).

另请参阅 setMode (), setHexMode (), setDecMode (), setOctMode (),和 mode ().

QLCDNumber.setDecMode ( self )

Calls setMode(Dec). Provided for convenience (e.g. for connecting buttons to it).

另请参阅 setMode (), setHexMode (), setOctMode (), setBinMode (),和 mode ().

QLCDNumber.setDigitCount ( self , int  nDigits )

QLCDNumber.setHexMode ( self )

Calls setMode(Hex). Provided for convenience (e.g. for connecting buttons to it).

另请参阅 setMode (), setDecMode (), setOctMode (), setBinMode (),和 mode ().

QLCDNumber.setMode ( self , Mode )

QLCDNumber.setNumDigits ( self , int  nDigits )

QLCDNumber.setOctMode ( self )

Calls setMode(Oct). Provided for convenience (e.g. for connecting buttons to it).

另请参阅 setMode (), setHexMode (), setDecMode (), setBinMode (),和 mode ().

QLCDNumber.setSegmentStyle ( self , SegmentStyle )

QLCDNumber.setSmallDecimalPoint ( self , bool)

QSize QLCDNumber.sizeHint ( self )

重实现自 QWidget.sizeHint ().

bool QLCDNumber.smallDecimalPoint ( self )

float QLCDNumber.value ( self )


Qt Signal Documentation

void overflow ()

This is the default overload of this signal.

此信号被发射每当 QLCDNumber is asked to display a too-large number or a too-long string.

It is never emitted by setDigitCount ().