⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 qlcdnumber.3qt

📁 Linux下的基于X11的图形开发环境。
💻 3QT
字号:
'\" t.TH QLCDNumber 3qt "9 December 2002" "Trolltech AS" \" -*- nroff -*-.\" Copyright 1992-2001 Trolltech AS.  All rights reserved.  See the.\" license file included in the distribution for a complete license.\" statement..\".ad l.nh.SH NAMEQLCDNumber \- Displays a number with LCD-like digits.SH SYNOPSIS\fC#include <qlcdnumber.h>\fR.PPInherits QFrame..PP.SS "Public Members".in +1c.ti -1c.BI "\fBQLCDNumber\fR ( QWidget * parent = 0, const char * name = 0 )".br.ti -1c.BI "\fBQLCDNumber\fR ( uint numDigits, QWidget * parent = 0, const char * name = 0 )".br.ti -1c.BI "\fB~QLCDNumber\fR ()".br.ti -1c.BI "enum \fBMode\fR { Hex, Dec, Oct, Bin, HEX = Hex, DEC = Dec, OCT = Oct, BIN = Bin }".br.ti -1c.BI "enum \fBSegmentStyle\fR { Outline, Filled, Flat }".br.ti -1c.BI "bool \fBsmallDecimalPoint\fR () const".br.ti -1c.BI "int \fBnumDigits\fR () const".br.ti -1c.BI "virtual void \fBsetNumDigits\fR ( int nDigits )".br.ti -1c.BI "bool \fBcheckOverflow\fR ( double num ) const".br.ti -1c.BI "bool \fBcheckOverflow\fR ( int num ) const".br.ti -1c.BI "Mode \fBmode\fR () const".br.ti -1c.BI "virtual void \fBsetMode\fR ( Mode )".br.ti -1c.BI "SegmentStyle \fBsegmentStyle\fR () const".br.ti -1c.BI "virtual void \fBsetSegmentStyle\fR ( SegmentStyle )".br.ti -1c.BI "double \fBvalue\fR () const".br.ti -1c.BI "int \fBintValue\fR () const".br.in -1c.SS "Public Slots".in +1c.ti -1c.BI "void \fBdisplay\fR ( const QString & s )".br.ti -1c.BI "void \fBdisplay\fR ( int num )".br.ti -1c.BI "void \fBdisplay\fR ( double num )".br.ti -1c.BI "virtual void \fBsetHexMode\fR ()".br.ti -1c.BI "virtual void \fBsetDecMode\fR ()".br.ti -1c.BI "virtual void \fBsetOctMode\fR ()".br.ti -1c.BI "virtual void \fBsetBinMode\fR ()".br.ti -1c.BI "virtual void \fBsetSmallDecimalPoint\fR ( bool )".br.in -1c.SS "Signals".in +1c.ti -1c.BI "void \fBoverflow\fR ()".br.in -1c.SS "Properties".in +1c.ti -1c.BI "int \fBintValue\fR - the displayed value rounded to the nearest integer".br.ti -1c.BI "Mode \fBmode\fR - the current display mode (number " "base" ")".br.ti -1c.BI "int \fBnumDigits\fR - the current number of digits displayed".br.ti -1c.BI "SegmentStyle \fBsegmentStyle\fR - the style of the LCDNumber".br.ti -1c.BI "bool \fBsmallDecimalPoint\fR - the style of the decimal point".br.ti -1c.BI "double \fBvalue\fR - the displayed value".br.in -1c.SS "Protected Members".in +1c.ti -1c.BI "virtual void \fBdrawContents\fR ( QPainter * p )".br.in -1c.SH DESCRIPTIONThe QLCDNumber widget displays a number with LCD-like digits..PPIt 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..PPThere are also slots to change the base with setMode() and the decimal point with setSmallDecimalPoint()..PPQLCDNumber emits the overflow() signal when it is asked to display something beyond its range. The range is set by setNumDigits(), but setSmallDecimalPoint() also influences it. If the display is set to hexadecimal, octal or binary, the integer equivalent of the value is displayed..PPThese 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..PPIt 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..PPIncidentally, QLCDNumber is the very oldest part of Qt, tracing back to a BASIC program on the Sinclair Spectrum..PP.ce 1.B "[Image Omitted]".PP.ce 1.B "[Image Omitted]".PPSee also QLabel, QFrame, and Basic Widgets..SS "Member Type Documentation".SH "QLCDNumber::Mode"This type determines how numbers are shown..TP\fCQLCDNumber::Hex\fR - Hexadecimal.TP\fCQLCDNumber::Dec\fR - Decimal.TP\fCQLCDNumber::Oct\fR - Octal.TP\fCQLCDNumber::Bin\fR - Binary.PPIf the display is set to hexadecimal, octal or binary, the integer equivalent of the value is displayed..SH "QLCDNumber::SegmentStyle"This type determines the visual appearance of the QLCDNumber widget..TP\fCQLCDNumber::Outline\fR - gives raised segments filled with the background brush..TP\fCQLCDNumber::Filled\fR - gives raised segments filled with the foreground brush..TP\fCQLCDNumber::Flat\fR - gives flat segments filled with the foreground brush..SH MEMBER FUNCTION DOCUMENTATION.SH "QLCDNumber::QLCDNumber ( QWidget * parent = 0, const char * name = 0 )"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..PPThe \fIparent\fR and \fIname\fR arguments are passed to the QFrame constructor..PPSee also numDigits and smallDecimalPoint..SH "QLCDNumber::QLCDNumber ( uint numDigits, QWidget * parent = 0, const char * name = 0 )"Constructs an LCD number, sets the number of digits to \fInumDigits\fR, the base to decimal, the decimal point mode to 'small' and the frame style to a raised box. The segmentStyle() is set to Outline..PPThe \fIparent\fR and \fIname\fR arguments are passed to the QFrame constructor..PPSee also numDigits and smallDecimalPoint..SH "QLCDNumber::~QLCDNumber ()"Destroys the LCD number..SH "bool QLCDNumber::checkOverflow ( double num ) const"Returns TRUE if \fInum\fR is too big to be displayed in its entirety; otherwise returns FALSE..PPSee also display(), numDigits, and smallDecimalPoint..SH "bool QLCDNumber::checkOverflow ( int num ) const"This is an overloaded member function, provided for convenience. It behaves essentially like the above function..PPReturns TRUE if \fInum\fR is too big to be displayed in its entirety; otherwise returns FALSE..PPSee also display(), numDigits, and smallDecimalPoint..SH "void QLCDNumber::display ( const QString & s )\fC [slot]\fR"Displays the number represented by the string \fIs\fR..PPThis version of the function disregards mode() and smallDecimalPoint()..PPThese 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..PPExamples:.)l rangecontrols/rangecontrols.cpp, t12/lcdrange.cpp, t13/gamebrd.cpp, t5/main.cpp, t6/main.cpp, t7/lcdrange.cpp, and xform/xform.cpp..SH "void QLCDNumber::display ( int num )\fC [slot]\fR"Sets the displayed value rounded to the nearest integer to \fInum\fR. See the "intValue" property for details..SH "void QLCDNumber::display ( double num )\fC [slot]\fR"This is an overloaded member function, provided for convenience. It behaves essentially like the above function..PPDisplays the number \fInum\fR..SH "void QLCDNumber::drawContents ( QPainter * p )\fC [virtual protected]\fR"Draws the LCD number using painter \fIp\fR. This function is called from QFrame::paintEvent()..PPReimplemented from QFrame..SH "int QLCDNumber::intValue () const"Returns the displayed value rounded to the nearest integer. See the "intValue" property for details..SH "Mode QLCDNumber::mode () const"Returns the current display mode (number base). See the "mode" property for details..SH "int QLCDNumber::numDigits () const"Returns the current number of digits displayed. See the "numDigits" property for details..SH "void QLCDNumber::overflow ()\fC [signal]\fR"This signal is emitted whenever the QLCDNumber is asked to display a too-large number or a too-long string..PPIt is never emitted by setNumDigits()..SH "SegmentStyle QLCDNumber::segmentStyle () const"Returns the style of the LCDNumber. See the "segmentStyle" property for details..SH "void QLCDNumber::setBinMode ()\fC [virtual slot]\fR"Calls setMode( BIN ). Provided for convenience (e.g. for connecting buttons to it)..PPSee also mode, setHexMode(), setDecMode(), setOctMode(), and mode..SH "void QLCDNumber::setDecMode ()\fC [virtual slot]\fR"Calls setMode( DEC ). Provided for convenience (e.g. for connecting buttons to it)..PPSee also mode, setHexMode(), setOctMode(), setBinMode(), and mode..SH "void QLCDNumber::setHexMode ()\fC [virtual slot]\fR"Calls setMode( HEX ). Provided for convenience (e.g. for connecting buttons to it)..PPSee also mode, setDecMode(), setOctMode(), setBinMode(), and mode..SH "void QLCDNumber::setMode ( Mode )\fC [virtual]\fR"Sets the current display mode (number base). See the "mode" property for details..SH "void QLCDNumber::setNumDigits ( int nDigits )\fC [virtual]\fR"Sets the current number of digits displayed to \fInDigits\fR. See the "numDigits" property for details..SH "void QLCDNumber::setOctMode ()\fC [virtual slot]\fR"Calls setMode( OCT ). Provided for convenience (e.g. for connecting buttons to it)..PPSee also mode, setHexMode(), setDecMode(), setBinMode(), and mode..SH "void QLCDNumber::setSegmentStyle ( SegmentStyle )\fC [virtual]\fR"Sets the style of the LCDNumber. See the "segmentStyle" property for details..SH "void QLCDNumber::setSmallDecimalPoint ( bool )\fC [virtual slot]\fR"Sets the style of the decimal point. See the "smallDecimalPoint" property for details..SH "bool QLCDNumber::smallDecimalPoint () const"Returns the style of the decimal point. See the "smallDecimalPoint" property for details..SH "double QLCDNumber::value () const"Returns the displayed value. See the "value" property for details..SS "Property Documentation".SH "int intValue"This property holds the displayed value rounded to the nearest integer..PPThis 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..PPIf the displayed value is not a number, the property has a value of 0..PPSet this property's value with display() and get this property's value with intValue()..SH "Mode mode"This property holds the current display mode (number base)..PPCorresponds 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..PPSee also smallDecimalPoint, setHexMode(), setDecMode(), setOctMode(), and setBinMode()..PPSet this property's value with setMode() and get this property's value with mode()..SH "int numDigits"This property holds the current number of digits displayed..PPCorresponds to the current number of digits. If QLCDNumber::smallDecimalPoint is FALSE, the decimal point occupies one digit position..PPSee also smallDecimalPoint..PPSet this property's value with setNumDigits() and get this property's value with numDigits()..SH "SegmentStyle segmentStyle"This property holds the style of the LCDNumber..PP<center>.nf.TSl - l. Style Result Outline Produces raised segments filled with the background color (this is the default). Filled Produces raised segments filled with the foreground color. Flat.TE.fi</center>.PPOutline and Filled will additionally use QColorGroup::light() and QColorGroup::dark() for shadow effects..PPSet this property's value with setSegmentStyle() and get this property's value with segmentStyle()..SH "bool smallDecimalPoint"This property holds the style of the decimal point..PPIf 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..PPThe inter-digit space is made slightly wider when the decimal point is drawn between the digits..PPSee also mode..PPSet this property's value with setSmallDecimalPoint() and get this property's value with smallDecimalPoint()..SH "double value"This property holds the displayed value..PPThis property corresponds to the current value displayed by the LCDNumber..PPIf the displayed value is not a number, the property has a value of 0..PPSet this property's value with display() and get this property's value with value()..SH "SEE ALSO".BR http://doc.trolltech.com/qlcdnumber.html.BR http://www.trolltech.com/faq/tech.html.SH COPYRIGHTCopyright 1992-2001 Trolltech AS, http://www.trolltech.com.  See thelicense file included in the distribution for a complete licensestatement..SH AUTHORGenerated automatically from the source code..SH BUGSIf you find a bug in Qt, please report it as described in.BR http://doc.trolltech.com/bughowto.html .Good bug reports help us to help you. Thank you..PThe definitive Qt documentation is provided in HTML format; it islocated at $QTDIR/doc/html and can be read using Qt Assistant or witha web browser. This man page is provided as a convenience for thoseusers who prefer man pages, although this format is not officiallysupported by Trolltech. .PIf you find errors in this manual page, please report them to.BR qt-bugs@trolltech.com .Please include the name of the manual page (qlcdnumber.3qt) and the Qtversion (3.1.1).

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -