
We bake cookies in your browser for a better experience. Using this site means that you consent.Read More
TheQLCDNumber widget displays a number with LCD-like digits.More...
| Header: | #include <QLCDNumber> |
| Inherits: | QFrame |
| enum | Mode { Hex, Dec, Oct, Bin } |
| enum | SegmentStyle { Outline, Filled, Flat } |
|
|
| QLCDNumber(QWidget * parent = 0) | |
| QLCDNumber(uint numDigits, QWidget * parent = 0) | |
| ~QLCDNumber() | |
| bool | checkOverflow(double num) const |
| bool | checkOverflow(int num) const |
| int | digitCount() const |
| int | intValue() const |
| Mode | mode() const |
| SegmentStyle | segmentStyle() const |
| void | setDigitCount(int numDigits) |
| void | setMode(Mode) |
| void | setSegmentStyle(SegmentStyle) |
| bool | smallDecimalPoint() const |
| double | value() const |
| virtual QSize | sizeHint() const |
| void | display(const QString & s) |
| void | display(double num) |
| void | display(int num) |
| void | setBinMode() |
| void | setDecMode() |
| void | setHexMode() |
| void | setOctMode() |
| void | setSmallDecimalPoint(bool) |
| void | overflow() |
| virtual bool | event(QEvent * e) |
| virtual void | paintEvent(QPaintEvent *) |
TheQLCDNumber 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 thedisplay() slot, which is overloaded to take any of five argument types.
There are also slots to change the base withsetMode() and the decimal point withsetSmallDecimalPoint().
QLCDNumber emits theoverflow() signal when it is asked to display something beyond its range. The range is set bysetDigitCount(), butsetSmallDecimalPoint() 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 aQLCDNumber object, although you can retrieve the numeric value withvalue(). If you really need the text, we recommend that you connect the signals that feed thedisplay() 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 theSinclair Spectrum.
See alsoQLabel,QFrame,Digital Clock Example, andTetrix Example.
This type determines how numbers are shown.
| Constant | Value | Description |
|---|---|---|
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.
This type determines the visual appearance of theQLCDNumber widget.
| Constant | Value | Description |
|---|---|---|
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. |
This property holds the current number of digits displayed.
Corresponds to the current number of digits. IfQLCDNumber::smallDecimalPoint is false, the decimal point occupies one digit position.
By default, this property contains a value of 5.
This property was introduced in Qt 4.6.
Access functions:
| int | digitCount() const |
| void | setDigitCount(int numDigits) |
See alsosmallDecimalPoint.
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.
By default, this property contains a value of 0.
Access functions:
| int | intValue() const |
| void | display(const QString & s) |
| void | display(int num) |
| void | display(double num) |
This property holds the current display mode (number base).
Corresponds to the current display mode, which is one ofBin,Oct,Dec (the default) andHex.Dec mode can display floating point values, the other modes display the integer equivalent.
Access functions:
| Mode | mode() const |
| void | setMode(Mode) |
See alsosmallDecimalPoint(),setHexMode(),setDecMode(),setOctMode(), andsetBinMode().
This property holds the style of the LCDNumber.
| Style | Result |
|---|---|
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 andFilled will additionally useQPalette::light() andQPalette::dark() for shadow effects.
Access functions:
| SegmentStyle | segmentStyle() const |
| void | setSegmentStyle(SegmentStyle) |
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.
Access functions:
| bool | smallDecimalPoint() const |
| void | setSmallDecimalPoint(bool) |
See alsomode.
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.
By default, this property contains a value of 0.
Access functions:
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. ThesegmentStyle() is set toOutline.
Theparent argument is passed to theQFrame constructor.
See alsosetDigitCount() andsetSmallDecimalPoint().
Constructs an LCD number, sets the number of digits tonumDigits, the base to decimal, the decimal point mode to 'small' and the frame style to a raised box. ThesegmentStyle() is set toFilled.
Theparent argument is passed to theQFrame constructor.
See alsosetDigitCount() andsetSmallDecimalPoint().
Destroys the LCD number.
Returns true ifnum is too big to be displayed in its entirety; otherwise returns false.
See alsodisplay(),digitCount(), andsmallDecimalPoint().
This is an overloaded function.
Returns true ifnum is too big to be displayed in its entirety; otherwise returns false.
See alsodisplay(),digitCount(), andsmallDecimalPoint().
[virtual protected]bool QLCDNumber::event(QEvent * e)Reimplemented fromQObject::event().
[signal]void QLCDNumber::overflow()This signal is emitted whenever theQLCDNumber is asked to display a too-large number or a too-long string.
It is never emitted bysetDigitCount().
[virtual protected]void QLCDNumber::paintEvent(QPaintEvent *)Reimplemented fromQWidget::paintEvent().
[slot]void QLCDNumber::setBinMode()CallssetMode(Bin). Provided for convenience (e.g. for connecting buttons to it).
See alsosetMode(),setHexMode(),setDecMode(),setOctMode(), andmode().
[slot]void QLCDNumber::setDecMode()CallssetMode(Dec). Provided for convenience (e.g. for connecting buttons to it).
See alsosetMode(),setHexMode(),setOctMode(),setBinMode(), andmode().
[slot]void QLCDNumber::setHexMode()CallssetMode(Hex). Provided for convenience (e.g. for connecting buttons to it).
See alsosetMode(),setDecMode(),setOctMode(),setBinMode(), andmode().
[slot]void QLCDNumber::setOctMode()CallssetMode(Oct). Provided for convenience (e.g. for connecting buttons to it).
See alsosetMode(),setHexMode(),setDecMode(),setBinMode(), andmode().
[virtual]QSize QLCDNumber::sizeHint() constReimplemented fromQWidget::sizeHint().
© 2016 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of theGNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.