• PySide 模块
  • PySide.QtGui
  • 内容表

    上一话题

    QMainWindow

    下一话题

    QLabel

    QLCDNumber

    概要

    函数

    信号

    详细描述

    PySide.QtGui.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 PySide.QtGui.QLCDNumber.display() slot, which is overloaded to take any of five argument types.

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

    PySide.QtGui.QLCDNumber 发射 PySide.QtGui.QLCDNumber.overflow() signal when it is asked to display something beyond its range. The range is set by PySide.QtGui.QLCDNumber.setDigitCount() ,但 PySide.QtGui.QLCDNumber.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. PySide.QtGui.QLCDNumber substitutes spaces for illegal characters.

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

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

    PySide/QtGui/../../../../../../qt-everywhere-opensource-src-4.8.5/doc/src/images/motif-lcdnumber.png..image::../../../../../../qt-everywhere-opensource-src-4.8.5/doc/src/images/cde-lcdnumber.png..image::../../../../../../qt-everywhere-opensource-src-4.8.5/doc/src/images/windows-lcdnumber.png..image::../../../../../../qt-everywhere-opensource-src-4.8.5/doc/src/images/windowsxp-lcdnumber.png..image::../../../../../../qt-everywhere-opensource-src-4.8.5/doc/src/images/macintosh-lcdnumber.png..image::../../../../../../qt-everywhere-opensource-src-4.8.5/doc/src/images/plastique-lcdnumber.png
    LCD number widgets shown in various widget styles (from left to right): Motif , CDE , Windows , Windows XP , Macintosh , Plastique .

    另请参阅

    PySide.QtGui.QLabel PySide.QtGui.QFrame 数字时钟范例 俄罗斯方块范例

    class PySide.QtGui. QLCDNumber ( [ parent=None ] )
    class PySide.QtGui. QLCDNumber ( numDigits [ , parent=None ] )
    参数:

    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 PySide.QtGui.QLCDNumber.segmentStyle() is set to Outline .

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

    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 PySide.QtGui.QLCDNumber.segmentStyle() is set to Filled .

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

    PySide.QtGui.QLCDNumber. 模式

    This type determines how numbers are shown.

    常量 描述
    QLCDNumber.Hex Hexadecimal
    QLCDNumber.Dec Decimal
    QLCDNumber.Oct Octal
    QLCDNumber.Bin Binary

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

    PySide.QtGui.QLCDNumber. SegmentStyle

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

    常量 描述
    QLCDNumber.Outline gives raised segments filled with the background color.
    QLCDNumber.Filled gives raised segments filled with the windowText color.
    QLCDNumber.Flat gives flat segments filled with the windowText color.
    PySide.QtGui.QLCDNumber. checkOverflow ( num )
    参数: num PySide.QtCore.double
    返回类型: PySide.QtCore.bool

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

    PySide.QtGui.QLCDNumber. checkOverflow ( num )
    参数: num PySide.QtCore.int
    返回类型: PySide.QtCore.bool

    这是重载函数。

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

    PySide.QtGui.QLCDNumber. digitCount ( )
    返回类型: PySide.QtCore.int

    This property holds the current number of digits displayed.

    Corresponds to the current number of digits. If QLCDNumber.smallDecimalPoint is false, the decimal point occupies one digit position.

    By default, this property contains a value of 5.

    PySide.QtGui.QLCDNumber. display ( num )
    参数: num PySide.QtCore.double

    This property holds the displayed value.

    This property corresponds to the current value displayed by the LCDNumber.

    If the displayed value is not a number, the property has a value of 0.

    默认情况下,此特性包含 0 值。

    PySide.QtGui.QLCDNumber. display ( num )
    参数: num PySide.QtCore.int

    这是重载函数。

    Displays the number num .

    PySide.QtGui.QLCDNumber. display ( str )
    参数: str – unicode

    Displays the number represented by the string s .

    This version of the function disregards PySide.QtGui.QLCDNumber.mode() and PySide.QtGui.QLCDNumber.smallDecimalPoint() .

    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. PySide.QtGui.QLCDNumber substitutes spaces for illegal characters.

    PySide.QtGui.QLCDNumber. intValue ( )
    返回类型: PySide.QtCore.int

    This property holds the displayed value rounded to the nearest integer.

    This property corresponds to the nearest integer to the current value displayed by the LCDNumber. This is the value used for hexadecimal, octal and binary modes.

    If the displayed value is not a number, the property has a value of 0.

    默认情况下,此特性包含 0 值。

    PySide.QtGui.QLCDNumber. mode ( )
    返回类型: PySide.QtGui.QLCDNumber.Mode

    This property holds the current display mode (number base).

    Corresponds to the current display mode, which is one of Bin , Oct , Dec (the default) and Hex . Dec mode can display floating point values, the other modes display the integer equivalent.

    PySide.QtGui.QLCDNumber. numDigits ( )
    返回类型: PySide.QtCore.int

    This property holds the current number of digits displayed.

    PySide.QtGui.QLCDNumber. overflow ( )
    PySide.QtGui.QLCDNumber. segmentStyle ( )
    返回类型: PySide.QtGui.QLCDNumber.SegmentStyle

    This property holds the style of the LCDNumber.

    Style 结果
    Outline Produces raised segments filled with the background color
    Filled (this is the default). Produces raised segments filled with the foreground color.
    Flat Produces flat segments filled with the foreground color.

    Outline and Filled will additionally use QPalette.light() and QPalette.dark() for shadow effects.

    PySide.QtGui.QLCDNumber. setBinMode ( )

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

    PySide.QtGui.QLCDNumber. setDecMode ( )

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

    PySide.QtGui.QLCDNumber. setDigitCount ( nDigits )
    参数: nDigits PySide.QtCore.int

    This property holds the current number of digits displayed.

    Corresponds to the current number of digits. If QLCDNumber.smallDecimalPoint is false, the decimal point occupies one digit position.

    By default, this property contains a value of 5.

    PySide.QtGui.QLCDNumber. setHexMode ( )

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

    PySide.QtGui.QLCDNumber. setMode ( arg__1 )
    参数: arg__1 PySide.QtGui.QLCDNumber.Mode

    This property holds the current display mode (number base).

    Corresponds to the current display mode, which is one of Bin , Oct , Dec (the default) and Hex . Dec mode can display floating point values, the other modes display the integer equivalent.

    PySide.QtGui.QLCDNumber. setNumDigits ( nDigits )
    参数: nDigits PySide.QtCore.int

    This property holds the current number of digits displayed.

    PySide.QtGui.QLCDNumber. setOctMode ( )

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

    PySide.QtGui.QLCDNumber. setSegmentStyle ( arg__1 )
    参数: arg__1 PySide.QtGui.QLCDNumber.SegmentStyle

    This property holds the style of the LCDNumber.

    Style 结果
    Outline Produces raised segments filled with the background color
    Filled (this is the default). Produces raised segments filled with the foreground color.
    Flat Produces flat segments filled with the foreground color.

    Outline and Filled will additionally use QPalette.light() and QPalette.dark() for shadow effects.

    PySide.QtGui.QLCDNumber. setSmallDecimalPoint ( arg__1 )
    参数: arg__1 PySide.QtCore.bool

    This property holds the style of the decimal point.

    If true the decimal point is drawn between two digit positions. Otherwise it occupies a digit position of its own, i.e. is drawn in a digit position. The default is false.

    The inter-digit space is made slightly wider when the decimal point is drawn between the digits.

    PySide.QtGui.QLCDNumber. smallDecimalPoint ( )
    返回类型: PySide.QtCore.bool

    This property holds the style of the decimal point.

    If true the decimal point is drawn between two digit positions. Otherwise it occupies a digit position of its own, i.e. is drawn in a digit position. The default is false.

    The inter-digit space is made slightly wider when the decimal point is drawn between the digits.

    PySide.QtGui.QLCDNumber. value ( )
    返回类型: PySide.QtCore.double

    This property holds the displayed value.

    This property corresponds to the current value displayed by the LCDNumber.

    If the displayed value is not a number, the property has a value of 0.

    默认情况下,此特性包含 0 值。