QLCDNumber Class

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(), but 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.
Member Type Documentation
enum QLCDNumber:: Mode
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.
enum QLCDNumber:: SegmentStyle
This type determines the visual appearance of the QLCDNumber 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. |
Property Documentation
digitCount : 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.
Access functions:
| int | digitCount () const |
| void | setDigitCount (int numDigits) |
intValue : 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.
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) |
mode : 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.
Access functions:
| QLCDNumber::Mode | mode () const |
| void | setMode (QLCDNumber::Mode) |
segmentStyle : SegmentStyle
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 and Filled will additionally use QPalette::light() and QPalette::dark() for shadow effects.
Access functions:
| QLCDNumber::SegmentStyle | segmentStyle () const |
| void | setSegmentStyle (QLCDNumber::SegmentStyle) |
smallDecimalPoint : 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.
Access functions:
| bool | smallDecimalPoint () const |
| void | setSmallDecimalPoint (bool) |
value : 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.
By default, this property contains a value of 0.
Access functions:
| double | value () const |
| void | display (const QString &s) |
| void | display (int num) |
| void | display (double num) |
Member Function Documentation
[explicit] QLCDNumber:: QLCDNumber ( QWidget *parent = nullptr)
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() is set to Outline .
The parent argument is passed to the QFrame constructor.
[explicit] QLCDNumber:: QLCDNumber ( uint numDigits, QWidget *parent = nullptr)
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() is set to Filled .
The parent argument is passed to the QFrame constructor.
[virtual noexcept] QLCDNumber:: ~QLCDNumber ()
Destroys the LCD number.
bool QLCDNumber:: checkOverflow ( double num) const
Returns true if num is too big to be displayed in its entirety; otherwise returns false .
bool QLCDNumber:: checkOverflow ( int num) const
This is an overloaded function.
Returns true if num is too big to be displayed in its entirety; otherwise returns false .
int QLCDNumber:: digitCount () const
Returns the current number of digits.
Note: Getter function for property digitCount.
[slot] void QLCDNumber:: display (const QString &s)
Displays the number represented by the string s.
This version of the function disregards mode() and 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. QLCDNumber substitutes spaces for illegal characters.
Note: Setter function for property intValue. Setter function for property value.
[slot] void QLCDNumber:: display ( int num)
This is an overloaded function.
Displays the number num.
Note: Setter function for property intValue. Setter function for property value.
[slot] void QLCDNumber:: display ( double num)
This is an overloaded function.
Displays the number num.
Note: Setter function for property intValue. Setter function for property value.
[override virtual protected] bool QLCDNumber:: event ( QEvent *e)
[signal] void QLCDNumber:: overflow ()
This signal is emitted whenever the QLCDNumber is asked to display a too-large number or a too-long string.
It is never emitted by setDigitCount().
[override virtual protected] void QLCDNumber:: paintEvent ( QPaintEvent *)
[slot] void QLCDNumber:: setBinMode ()
Calls setMode(Bin). Provided for convenience (e.g. for connecting buttons to it).
[slot] void QLCDNumber:: setDecMode ()
Calls setMode(Dec). Provided for convenience (e.g. for connecting buttons to it).
void QLCDNumber:: setDigitCount ( int numDigits)
Sets the current number of digits to numDigits. Must be in the range 0..99.
Note: Setter function for property digitCount.
[slot] void QLCDNumber:: setHexMode ()
Calls setMode(Hex). Provided for convenience (e.g. for connecting buttons to it).
[slot] void QLCDNumber:: setOctMode ()
Calls setMode(Oct). Provided for convenience (e.g. for connecting buttons to it).
[override virtual] QSize QLCDNumber:: sizeHint () const
© 2023 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 the GNU 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.
Вопросы с меткой [gui]
GUI (Graphical user interface) — графический интерфейс пользователя, разновидность пользовательского интерфейса, в котором элементы интерфейса (меню, кнопки, значки, списки и т. п.), представленные пользователю на дисплее, исполнены в виде графических изображений.
117 вопросов
Конкурсные
Неотвеченные
- Конкурсные 0
- Неотвеченные
- Цитируемые
- Рейтинг
- Неотвеченные (мои метки)
4k показов
Мультизадачность на Python: выполнить две долгие функции одновременно, не блокируя GUI
Всем доброго времени суток. Изучаю возможности графического модуля tkinter на Python. Возникла необходимость одновременного запуска нескольких функций, т.е. имеется, например, две кнопки, каждая со .
задан 21 сен 2016 в 9:52
3k показов
Как скомпилировать .py в .exe с картинкой?
У меня скрипт на PyQt5, и в нём присутствуют картинки, но после компиляции .py в .exe, картинки всё так же отдельно остаются. Как поместить картинку в скрипт, чтобы скрипт и фото не находились в .
задан 2 июл 2019 в 15:13
9k показов
Визуальный редактор графического интерфейса для tkinter
Пожалуйста можете посоветовать визуальный редактор графического интерфейса для tkinter кроме Visual Python Tkinter IDE. И можно ли в «Blend for Visual Studio 2015» сделать? Я использую .
задан 8 апр 2017 в 15:48
853 показа
Прогресс загрузки Youtube-dl
Создал загрузчик видео с YouTube с помощью PyQt5 в ООП стиле с классами. Добавил progressbar и хочу, чтобы при скачивании процент скачивания писался не только в консоль, но и в прогрессбар, .
задан 6 ноя 2020 в 13:32
96 показов
Как сделать ключевые слова на клавишах как в Spectrum?
Раньше был компьютер Spectrum,и там был специальный режим набора, когда клавиша печатала сразу целое слово. Например, нажал клавишу P, а напечаталось слово PRINT Как сделать такой режим в Linux .
задан 16 мая 2015 в 4:17
7k показов
PyQt5 иконка для приложения
Пытаюсь установить иконку для приложения. Именно, чтобы отображалась на панели задач, а не на окне приложения. Всё ни как. Буду благодарен если поможете. main.py: from PyQt5 import QtGui from PyQt5 .
задан 19 мая 2020 в 12:53
Сохранение настроек в Python
У меня есть программа которая шифрует текст. У этой программы есть меню настроек, которая меняет цвет, размер шрифта и разрешение окна. Нужно сделать так чтобы при изменении настроек, они сохранялись .
задан 10 мая 2021 в 20:19
3k показов
Потоки в JavaFX
Есть фрагмент кода: public class LyricNN extends Application < @Override public void start(Stage primaryStage) < VBox root = new VBox(5); HBox vhidDann = new HBox(5); .
задан 5 мар 2018 в 17:52
625 показов
Как реализовать выделение определенных слов (или символов) в QTextEdit
Как реализовать выделение определенных слов (или символов) в QTextEdit без потери фокуса ввода или смены позиции курсора?
задан 3 ноя 2018 в 15:54
2k показов
Считывание с изменяющегося файла
Есть текстовый файл, который постоянно изменяется с некоторой периодичностью. Примерно каждые ~5-15 секунд в нём появляется новая запись, которая должна быть тут же считана программой и после проверки .
задан 23 сен 2016 в 17:34
1k показов
Можно ли кастомизировать QTabWidget определенным образом?
У меня появилась идея. Я понимаю, что она трудновыполнимая, но не знаю насколько. Мне нужно изменить внешний вид виджета QTabWidget следующим образом: В заголовки вкладок поместить изображения(.
задан 10 мар 2020 в 11:40
24k показов
Обновление GUI из другого потока [дубликат]
Подскажите простой способ, как можно обновить label из другого потока? Ситуация следующая: имеется окно (поток1), в котором стартует новый поток (поток2). Когда поток2 обрабатывает файлы, необходимо .
задан 27 апр 2011 в 8:53
4k показов
Взаимодействие рабочих потоков с GUI
Интересуют реализации взаимодействия рабочих потоков с GUI со стороны рабочих потоков. Например, загрузка файла с сервера выполняется в выделенном потоке. Этот поток должен сообщать юзеру о прогрессе .
задан 10 янв 2013 в 9:14
474 показа
Реализовать функцию : перенос из одной таблицы бд в другую
Нужно реализовать две функции: одна должна брать выбранный элемент и переносить его в другую таблицу. БД кстати можно взять тут и программу с кодом тоже: https://disk.yandex.ru/d/-09K8wS-5m2hTg P.S .
задан 22 мая 2021 в 10:19
930 показов
Сохранение настроек меню приложения
В окне есть меню. В меню есть вложенное меню. Во вложенном меню есть три действия, которые объедены в QActionGroup. Как сделать так, чтобы когда пользователь поменял настройки в меню, при выходе из .