<QtGlobal> 头文件包括基础全局声明。它被包括在大多数其它 Qt 头文件中。 更多...
| typedef | QtMsgHandler |
| enum | QtMsgType { QtDebugMsg, QtWarningMsg, QtCriticalMsg, QtFatalMsg, QtSystemMsg } |
| typedef | qint8 |
| typedef | qint16 |
| typedef | qint32 |
| typedef | qint64 |
| typedef | qlonglong |
| typedef | qptrdiff |
| typedef | qreal |
| typedef | quint8 |
| typedef | quint16 |
| typedef | quint32 |
| typedef | quint64 |
| typedef | quintptr |
| typedef | qulonglong |
| typedef | uchar |
| typedef | uint |
| typedef | ulong |
| typedef | ushort |
| T | qAbs (const T & value ) |
| const T & | qBound (const T & min , const T & value , const T & max ) |
| void | qCritical (const char * msg , ...) |
| void | qDebug (const char * msg , ...) |
| void | qFatal (const char * msg , ...) |
| bool | qFuzzyCompare (double p1 , double p2 ) |
| bool | qFuzzyCompare (float p1 , float p2 ) |
| QtMsgHandler | qInstallMsgHandler (QtMsgHandler handler ) |
| int | qMacVersion () |
| const T & | qMax (const T & value1 , const T & value2 ) |
| const T & | qMin (const T & value1 , const T & value2 ) |
| qint64 | qRound64 (qreal value ) |
| int | qRound (qreal value ) |
| const char * | qVersion () |
| void | qWarning (const char * msg , ...) |
| T * | q_check_ptr (T * pointer ) |
| QByteArray | qgetenv (const char * varName ) |
| bool | qputenv (const char * varName , const QByteArray & value ) |
| int | qrand () |
| void | qsrand (uint seed ) |
| QString | qtTrId (const char * id , int n = -1) |
| void | qt_set_sequence_auto_mnemonic (bool on ) |
| int | qt_symbian_exception2Error (const std::exception & aThrow ) |
| void | qt_symbian_exception2LeaveL (const std::exception & aThrow ) |
| void | qt_symbian_throwIfError (int error ) |
类型定义是基本类型的部分方便定义 (其中一些保证 Qt 支持的所有平台的某些位尺寸),部分类型有关 Qt 消息处理。函数有关生成消息、Qt 版本处理及比较/调节对象值。最后,某些声明宏使程序员能够向其应用程序添加编译器或平台特定代码,而其它的是用于更大操作的方便宏。
The header file declares several type definitions that guarantee a specified bit-size on all platforms supported by Qt for various basic types, for example
qint8
which is a signed char guaranteed to be 8-bit on all platforms supported by Qt. The header file also declares the
qlonglong
type definition for
long long int
(
__int64
在 Windows)。
Several convenience type definitions are declared:
qreal
for
double
,
uchar
for
unsigned
char,
uint
for
unsigned
int,
ulong
for
unsigned
long and
ushort
for
unsigned
short.
Finally, the
QtMsgType
definition identifies the various messages that can be generated and sent to a Qt message handler;
QtMsgHandler
is a type definition for a pointer to a function with the signature
void myMsgHandler(QtMsgType, const char *)
.
The <QtGlobal> header file contains several functions comparing and adjusting an object's value. These functions take a template type as argument: You can retrieve the absolute value of an object using the qAbs () function, and you can bound a given object's value by given minimum and maximum values using the qBound () function. You can retrieve the minimum and maximum of two given objects using qMin () 和 qMax () respectively. All these functions return a corresponding template type; the template types can be replaced by any other type.
范例:
int myValue = 10; int minValue = 2; int maxValue = 6; int boundedValue = qBound(minValue, myValue, maxValue); // boundedValue == 6
<QtGlobal> also contains functions that generate messages from the given string argument: qCritical (), qDebug (), qFatal () 和 qWarning (). These functions call the message handler with the given message.
范例:
if (!driver()->isOpen() || driver()->isOpenError()) { qWarning("QSqlQuery::exec: database not open"); return false; }
The remaining functions are qRound () 和 qRound64 (), which both accept a qreal value as their argument returning the value rounded up to the nearest integer and 64-bit integer respectively, the qInstallMsgHandler () function which installs the given QtMsgHandler ,和 qVersion () function which returns the version number of Qt at run-time as a string.
<QtGlobal> 头文件提供一系列定义宏 (Q_CC_*) 若使用指定平台编译应用程序。例如, Q_CC_SUN 定义宏,若使用 Forte Developer 或 Sun Studio C++ 编译应用程序。头文件还为指定平台声明了一系列定义宏 (Q_OS_*)。例如, Q_OS_WIN32 which is defined for Microsoft Windows.
The purpose of these macros is to enable programmers to add compiler or platform specific code to their application.
The remaining macros are convenience macros for larger operations: The QT_TRANSLATE_NOOP () 和 QT_TR_NOOP () macros provide the possibility of marking text for dynamic translation, i.e. translation without changing the stored source text. The Q_ASSERT () 和 Q_ASSERT_X () enables warning messages of various level of refinement. The Q_FOREACH () 和 foreach () macros implement Qt's foreach loop.
The Q_INT64_C () 和 Q_UINT64_C () macros wrap signed and unsigned 64-bit integer literals in a platform-independent way. The Q_CHECK_PTR () macro prints a warning containing the source code's file name and line number, saying that the program ran out of memory, if the pointer is 0. The qPrintable () macro represent an easy way of printing text.
Finally, the QT_POINTER_SIZE macro expands to the size of a pointer in bytes, and the QT_VERSION and QT_VERSION_STR macros expand to a numeric value or a string, respectively, specifying Qt's version number, i.e the version the application is compiled against.
另请参阅 <QtAlgorithms> and QSysInfo .
这是采用以下签名的函数指针的 typedef:
void myMsgHandler(QtMsgType, const char *);
另请参阅 QtMsgType and qInstallMsgHandler ().
This enum describes the messages that can be sent to a message handler ( QtMsgHandler ). You can use the enum to identify and associate the various message types with the appropriate actions.
| 常量 | 值 | 描述 |
|---|---|---|
QtDebugMsg
|
0
|
消息的生成通过 qDebug () 函数。 |
QtWarningMsg
|
1
|
消息的生成通过 qWarning () 函数。 |
QtCriticalMsg
|
2
|
消息的生成通过 qCritical () 函数。 |
QtFatalMsg
|
3
|
消息的生成通过 qFatal () 函数。 |
QtSystemMsg
|
QtCriticalMsg
|
另请参阅 QtMsgHandler and qInstallMsgHandler ().
typedef 对于
signed char
。此类型保证在 Qt 支持的所有平台为 8 位。
typedef 对于
signed short
。此类型保证在 Qt 支持的所有平台为 16 位。
typedef 对于
signed int
。此类型保证在 Qt 支持的所有平台为 32 位。
typedef 对于
long long int
(
__int64
在 Windows)。此类型保证在 Qt 支持的所有平台为 64 位。
可以创建此类型的文字使用 Q_INT64_C () 宏:
qint64 value = Q_INT64_C(932838457459459);
另请参阅 Q_INT64_C (), quint64 ,和 qlonglong .
typedef 对于
long long int
(
__int64
在 Windows)。这如同
qint64
.
另请参阅 qulonglong and qint64 .
用于表示指针差异的整型。
Typedef for either qint32 or qint64. This type is guaranteed to be the same size as a pointer on all platforms supported by Qt. On a system with 32-bit pointers, quintptr is a typedef for quint32; on a system with 64-bit pointers, quintptr is a typedef for quint64.
注意:qptrdiff 是有符号的。使用 quintptr 为无符号值。
另请参阅 quintptr , qint32 ,和 qint64 .
typedef 对于
double
on all platforms except for those using CPUs with ARM architectures. On ARM-based platforms,
qreal
是 typedef 对于
float
for performance reasons.
typedef 对于
unsigned char
。此类型保证在 Qt 支持的所有平台为 8 位。
typedef 对于
unsigned short
。此类型保证在 Qt 支持的所有平台为 16 位。
typedef 对于
无符号 int
。此类型保证在 Qt 支持的所有平台为 32 位。
typedef 对于
unsigned long long int
(
unsigned __int64
在 Windows)。此类型保证在 Qt 支持的所有平台为 64 位。
可以创建此类型的文字使用 Q_UINT64_C () 宏:
quint64 value = Q_UINT64_C(932838457459459);
另请参阅 Q_UINT64_C (), qint64 ,和 qulonglong .
Integral type for representing a pointers (useful for hashing, etc.).
Typedef for either quint32 or quint64. This type is guaranteed to be the same size as a pointer on all platforms supported by Qt. On a system with 32-bit pointers, quintptr is a typedef for quint32; on a system with 64-bit pointers, quintptr is a typedef for quint64.
Note that quintptr is unsigned. Use qptrdiff for signed values.
另请参阅 qptrdiff , quint32 ,和 quint64 .
typedef 对于
unsigned long long int
(
unsigned __int64
在 Windows)。这如同
quint64
.
方便 typedef 对于
unsigned char
.
方便 typedef 对于
无符号 int
.
方便 typedef 对于
unsigned long
.
方便 typedef 对于
unsigned short
.
比较 value to the 0 of type T and returns the absolute value. Thus if T is double ,那么 value is compared to (double) 0 .
范例:
int absoluteValue; int myValue = -4; absoluteValue = qAbs(myValue); // absoluteValue == 4
返回 value bounded by min and max 。这相当于 qMax ( min , qMin ( value , max )).
范例:
int myValue = 10; int minValue = 2; int maxValue = 6; int boundedValue = qBound(minValue, myValue, maxValue); // boundedValue == 6
Calls the message handler with the critical message msg . If no message handler has been installed, the message is printed to stderr. Under Windows, the message is sent to the debugger.
This function takes a format string and a list of arguments, similar to the C printf() function. The format should be a Latin-1 string.
范例:
void load(const QString &fileName) { QFile file(fileName); if (!file.exists()) qCritical("File '%s' does not exist!", qPrintable(fileName)); }
If you include <QtDebug>, a more convenient syntax is also available:
qCritical() << "Brush:" << myQBrush << "Other value:" << i;
A space is inserted between the items, and a newline is appended at the end.
To suppress the output at runtime, install your own message handler with qInstallMsgHandler ().
另请参阅 qDebug (), qWarning (), qFatal (), qInstallMsgHandler (),和 调试技术 .
Calls the message handler with the debug message
msg
. If no message handler has been installed, the message is printed to stderr. Under Windows, the message is sent to the console, if it is a console application; otherwise, it is sent to the debugger. This function does nothing if
QT_NO_DEBUG_OUTPUT
was defined during compilation.
If you pass the function a format string and a list of arguments, it works in similar way to the C printf() function. The format should be a Latin-1 string.
范例:
qDebug("Items in list: %d", myList.size());
If you include
<QtDebug>
, a more convenient syntax is also available:
qDebug() << "Brush:" << myQBrush << "Other value:" << i;
采用此句法,函数返回 QDebug object that is configured to use the QtDebugMsg message type. It automatically puts a single space between each item, and outputs a newline at the end. It supports many C++ and Qt types.
To suppress the output at run-time, install your own message handler with qInstallMsgHandler ().
另请参阅 qWarning (), qCritical (), qFatal (), qInstallMsgHandler (),和 调试技术 .
Calls the message handler with the fatal message msg . If no message handler has been installed, the message is printed to stderr. Under Windows, the message is sent to the debugger.
若正使用 默认消息处理程序 this function will abort on Unix systems to create a core dump. On Windows, for debug builds, this function will report a _CRT_ERROR enabling you to connect a debugger to the application.
This function takes a format string and a list of arguments, similar to the C printf() function.
范例:
int divide(int a, int b) { if (b == 0) // program error qFatal("divide: cannot divide by zero"); return a / b; }
To suppress the output at runtime, install your own message handler with qInstallMsgHandler ().
另请参阅 qDebug (), qCritical (), qWarning (), qInstallMsgHandler (),和 调试技术 .
[static]
bool
qFuzzyCompare
(
double
p1
,
double
p2
)
比较浮点值
p1
and
p2
并返回
true
若它们被认为相等,否则
false
.
Note that comparing values where either p1 or p2 is 0.0 will not work. The solution to this is to compare against values greater than or equal to 1.0.
// Instead of comparing with 0.0
qFuzzyCompare(0.0,1.0e-200); // This will return false
// Compare adding 1 to both values will fix the problem
qFuzzyCompare(1 + 0.0, 1 + 1.0e-200); // This will return true
The two numbers are compared in a relative way, where the exactness is stronger the smaller the numbers are.
注意: 此函数是 thread-safe .
该函数在 Qt 4.4 引入。
[static]
bool
qFuzzyCompare
(
float
p1
,
float
p2
)
比较浮点值
p1
and
p2
并返回
true
若它们被认为相等,否则
false
.
The two numbers are compared in a relative way, where the exactness is stronger the smaller the numbers are.
注意: 此函数是 thread-safe .
该函数在 Qt 4.4 引入。
Installs a Qt message handler which has been defined previously. Returns a pointer to the previous message handler (which may be 0).
The message handler is a function that prints out debug messages, warnings, critical and fatal error messages. The Qt library (debug mode) contains hundreds of warning messages that are printed when internal errors (usually invalid function arguments) occur. Qt built in release mode also contains such warnings unless QT_NO_WARNING_OUTPUT and/or QT_NO_DEBUG_OUTPUT have been set during compilation. If you implement your own message handler, you get total control of these messages.
The default message handler prints the message to the standard output under X11 or to the debugger under Windows. If it is a fatal message, the application aborts immediately.
Only one message handler can be defined, since this is usually done on an application-wide basis to control debug output.
To restore the message handler, call
qInstallMsgHandler(0)
.
范例:
#include <qapplication.h> #include <stdio.h> #include <stdlib.h> void myMessageOutput(QtMsgType type, const char *msg) { switch (type) { case QtDebugMsg: fprintf(stderr, "Debug: %s\n", msg); break; case QtWarningMsg: fprintf(stderr, "Warning: %s\n", msg); break; case QtCriticalMsg: fprintf(stderr, "Critical: %s\n", msg); break; case QtFatalMsg: fprintf(stderr, "Fatal: %s\n", msg); abort(); } } int main(int argc, char **argv) { qInstallMsgHandler(myMessageOutput); QApplication app(argc, argv); ... return app.exec(); }
另请参阅 qDebug (), qWarning (), qCritical (), qFatal (), QtMsgType ,和 调试技术 .
使用 QSysInfo::MacintoshVersion 代替。
另请参阅 QSysInfo .
Returns the maximum of value1 and value2 .
范例:
int myValue = 6; int yourValue = 4; int maxValue = qMax(myValue, yourValue); // maxValue == myValue
Returns the minimum of value1 and value2 .
范例:
int myValue = 6; int yourValue = 4; int minValue = qMin(myValue, yourValue); // minValue == yourValue
圆整 value 到最近 64 位整数。
范例:
qreal valueA = 42949672960.3; qreal valueB = 42949672960.7; int roundedValueA = qRound(valueA); // roundedValueA = 42949672960 int roundedValueB = qRound(valueB); // roundedValueB = 42949672961
圆整 value 到最近整数。
范例:
qreal valueA = 2.3; qreal valueB = 2.7; int roundedValueA = qRound(valueA); // roundedValueA = 2 int roundedValueB = qRound(valueB); // roundedValueB = 3
Returns the version number of Qt at run-time as a string (for example, "4.1.2"). This may be a different version than the version the application was compiled against.
另请参阅 QT_VERSION_STR .
调用消息处理程序采用警告消息
msg
. If no message handler has been installed, the message is printed to stderr. Under Windows, the message is sent to the debugger. This function does nothing if
QT_NO_WARNING_OUTPUT
was defined during compilation; it exits if the environment variable
QT_FATAL_WARNINGS
有定义。
This function takes a format string and a list of arguments, similar to the C printf() function. The format should be a Latin-1 string.
范例:
void f(int c) { if (c > 200) qWarning("f: bad argument, c == %d", c); }
If you include <QtDebug>, a more convenient syntax is also available:
qWarning() << "Brush:" << myQBrush << "Other value:" << i;
This syntax inserts a space between each item, and appends a newline at the end.
To suppress the output at runtime, install your own message handler with qInstallMsgHandler ().
另请参阅 qDebug (), qCritical (), qFatal (), qInstallMsgHandler (),和 调试技术 .
Users Q_CHECK_PTR on pointer , then returns pointer .
This can be used as an inline version of Q_CHECK_PTR .
Returns the value of the environment variable with name varName . To get the variable string, use QByteArray::constData ().
注意: qgetenv() was introduced because getenv() from the standard C library was deprecated in VC2005 (and later versions). qgetenv() uses the new replacement function in VC, and calls the standard C library's implementation on all other platforms.
另请参阅 qputenv ().
此函数设置 value of the environment variable named varName . It will create the variable if it does not exist. It returns 0 if the variable could not be set.
注意: qputenv() was introduced because putenv() from the standard C library was deprecated in VC2005 (and later versions). qputenv() uses the replacement function in VC, and calls the standard C library's implementation on all other platforms.
另请参阅 qgetenv ().
Thread-safe version of the standard C++
rand()
函数。
Returns a value between 0 and
RAND_MAX
(defined in
<cstdlib>
and
<stdlib.h>
), the next number in the current sequence of pseudo-random integers.
使用
qsrand()
to initialize the pseudo-random number generator with a seed value.
该函数在 Qt 4.2 引入。
另请参阅 qsrand ().
Thread-safe version of the standard C++
srand()
函数。
Sets the argument seed to be used to generate a new random number sequence of pseudo random integers to be returned by qrand ().
The sequence of random numbers generated is deterministic per thread. For example, if two threads call qsrand(1) and subsequently calls qrand (), the threads will get the same random number sequence.
该函数在 Qt 4.2 引入。
另请参阅 qrand ().
The qtTrId function finds and returns a translated string.
Returns a translated string identified by id . If no matching string is found, the id itself is returned. This should not happen under normal conditions.
若
n
>= 0, all occurrences of
%n
in the resulting string are replaced with a decimal representation of
n
. In addition, depending on
n
's value, the translation text may vary.
Meta data and comments can be passed as documented for QObject::tr (). In addition, it is possible to supply a source string template like that:
//% <C string>
or
/*
% <C string>
*/
范例:
//% "%n fooish bar(s) found.\n"
//% "Do you want to continue?"
QString text = qtTrId("qtn_foo_bar", n);
Creating QM files suitable for use with this function requires passing the
-idbased
选项到
lrelease
工具。
警告: 此方法才可重入若有安装所有翻译器 before 调用此方法。不支持在履行翻译时,安装或移除翻译器。这样做可能会导致崩溃或其它不期望行为。
注意: 此函数是 可重入 .
该函数在 Qt 4.6 引入。
另请参阅 QObject::tr (), QCoreApplication::translate (),和 Qt 国际化 .
Enables automatic mnemonics on Mac if on is true; otherwise this feature is disabled.
Note that this function is only available on Mac where mnemonics are disabled by default.
To access to this function, use an extern declaration: extern void qt_set_sequence_auto_mnemonic(bool b);
另请参阅 QShortcut .
Convert a caught standard C++ exception aThrow to a Symbian error code
警告: This function is only available on Symbian.
另请参阅 qt_symbian_throwIfError () 和 qt_symbian_exception2LeaveL ().
Convert a caught standard C++ exception aThrow to a Symbian leave
警告: This function is only available on Symbian.
另请参阅 qt_symbian_throwIfError () 和 qt_symbian_exception2Error ().
Throws an exception if the error parameter is a symbian error code. This is the exception throwing equivalent of Symbian's User::LeaveIfError.
警告: This function is only available on Symbian.
另请参阅 qt_symbian_exception2LeaveL () 和 qt_symbian_exception2Error ().
Expands to the size of a pointer in bytes (4 or 8). This is equivalent to
sizeof(void *)
but can be used in a preprocessor directive.
This macro can be used to ensure that the application is run against a recent enough version of Qt. This is especially useful if your application depends on a specific bug fix introduced in a bug-fix release (e.g., 4.0.2).
The
argc
and
argv
parameters are the
main()
function's
argc
and
argv
parameters. The
version
parameter is a string literal that specifies which version of Qt the application requires (e.g., "4.0.2").
范例:
#include <QApplication> #include <QMessageBox> int main(int argc, char *argv[]) { QT_REQUIRE_VERSION(argc, argv, "4.0.2") QApplication app(argc, argv); ... return app.exec(); }
Marks the string literal sourceText for dynamic translation in the given context 和采用 comment , i.e the stored sourceText will not be altered. The context is typically a class and also needs to be specified as string literal. The string literal comment will be available for translators using e.g. Qt Linguist.
The macro expands to anonymous struct of the two string literals passed as sourceText and comment .
范例:
static { const char *source; const char *comment; } greeting_strings[] = { QT_TRANSLATE_NOOP3("FriendlyConversation", "Hello", "A really friendly hello"), QT_TRANSLATE_NOOP3("FriendlyConversation", "Goodbye", "A really friendly goodbye") }; QString FriendlyConversation::greeting(int type) { return tr(greeting_strings[type].source, greeting_strings[type].comment); } QString global_greeting(int type) { return qApp->translate("FriendlyConversation", greeting_strings[type].source, greeting_strings[type].comment); }
该函数在 Qt 4.4 引入。
另请参阅 QT_TR_NOOP (), QT_TRANSLATE_NOOP (),和 Qt 国际化 .
Marks the string literal sourceText for dynamic translation in the given context ; i.e, the stored sourceText will not be altered. The context is typically a class and also needs to be specified as string literal.
The macro expands to sourceText .
范例:
static const char *greeting_strings[] = { QT_TRANSLATE_NOOP("FriendlyConversation", "Hello"), QT_TRANSLATE_NOOP("FriendlyConversation", "Goodbye") }; QString FriendlyConversation::greeting(int type) { return tr(greeting_strings[type]); } QString global_greeting(int type) { return qApp->translate("FriendlyConversation", greeting_strings[type]); }
另请参阅 QT_TR_NOOP (), QT_TRANSLATE_NOOP3 (),和 Qt 国际化 .
TRAP leaves from Symbian function and throws an appropriate standard C++ exception instead. This must be used when calling Symbian OS leaving functions from inside Qt or standard C++ code, so that the code can respond correctly to the exception.
警告: This macro is only available on Symbian.
范例:
// A Symbian leaving function is being called within a Qt function. // Any leave must be converted to an exception CAknTitlePane* titlePane = S60->titlePane(); if (titlePane) { TPtrC captionPtr(qt_QString2TPtrC(caption)); QT_TRAP_THROWING(titlePane->SetTextL(captionPtr)); }
另请参阅 QT_TRYCATCH_ERROR () 和 QT_TRYCATCH_LEAVING ().
The QT_TRID_NOOP macro marks an id for dynamic translation.
The only purpose of this macro is to provide an anchor for attaching meta data like to qtTrId ().
The macro expands to id .
范例:
static const char * const ids[] = { //% "This is the first text." QT_TRID_NOOP("qtn_1st_text"), //% "This is the second text." QT_TRID_NOOP("qtn_2nd_text"), 0 }; void TheClass::addLabels() { for (int i = 0; ids[i]; ++i) new QLabel(qtTrId(ids[i]), this); }
该函数在 Qt 4.6 引入。
Catch standard C++ exceptions from a
function
and convert them to a Symbian OS
error
code, or
KErrNone
if there is no exception. This must be used inside Qt or standard C++ code when using exception throwing code (practically anything) and returning an error code to Symbian OS.
警告: This macro is only available on Symbian.
范例:
// An exception might be thrown in this Symbian TInt error returning function. // It is caught and translated to an error code TInt QServerApp::Connect(const QString &serverName) { TPtrC name; TInt err; QT_TRYCATCH_ERROR(err, name.Set(qt_QString2TPtrC(serverName))); if (err != KErrNone) return err; return iServer.Connect(name); }
}
另请参阅 QT_TRYCATCH_LEAVING () 和 QT_TRAP_THROWING ().
Catch standard C++ exceptions from
function
and convert them to Symbian OS leaves. This must be used inside Qt or standard C++ code when using exception throwing code (practically anything) and returning to Symbian OS from a leaving function. For example inside a Symbian active object's
RunL
function implemented with Qt code.
警告: This macro is only available on Symbian.
范例:
// This active object signals Qt code // Exceptions from the Qt code must be converted to Symbian OS leaves for the active scheduler void QWakeUpActiveObject::RunL() { iStatus = KRequestPending; SetActive(); QT_TRYCATCH_LEAVING(m_dispatcher->wakeUpWasCalled()); }
另请参阅 QT_TRAP_THROWING () 和 QT_TRYCATCH_ERROR ().
Marks the string literal sourceText for dynamic translation in the current context (class), i.e the stored sourceText will not be altered.
The macro expands to sourceText .
范例:
QString FriendlyConversation::greeting(int type) { static const char *greeting_strings[] = { QT_TR_NOOP("Hello"), QT_TR_NOOP("Goodbye") }; return tr(greeting_strings[type]); }
The macro QT_TR_NOOP_UTF8() is identical except that it tells lupdate that the source string is encoded in UTF-8. Corresponding variants exist in the
QT_TRANSLATE_NOOP
() family of macros, too. Note that using these macros is not required if
CODECFORTR
is already set to UTF-8 in the qmake project file.
另请参阅 QT_TRANSLATE_NOOP () 和 Qt 国际化 .
This macro expands a numeric value of the form 0xMMNNPP (MM = major, NN = minor, PP = patch) that specifies Qt's version number. For example, if you compile your application against Qt 4.1.2, the QT_VERSION macro will expand to 0x040102.
可以使用 QT_VERSION to use the latest Qt features where available.
范例:
#if QT_VERSION >= 0x040100 QIcon icon = style()->standardIcon(QStyle::SP_TrashIcon); #else QPixmap pixmap = style()->standardPixmap(QStyle::SP_TrashIcon); QIcon icon(pixmap); #endif
另请参阅 QT_VERSION_STR and qVersion ().
Turns the major, minor and patch numbers of a version into an integer, 0xMMNNPP (MM = major, NN = minor, PP = patch). This can be compared with another similarly processed version id.
另请参阅 QT_VERSION .
This macro expands to a string that specifies Qt's version number (for example, "4.1.2"). This is the version against which the application is compiled.
另请参阅 qVersion () 和 QT_VERSION .
Prints a warning message containing the source code file name and line number if test 为 false。
Q_ASSERT() is useful for testing pre- and post-conditions during development. It does nothing if
QT_NO_DEBUG
was defined during compilation.
范例:
// File: div.cpp #include <QtGlobal> int divide(int a, int b) { Q_ASSERT(b != 0); return a / b; }
若
b
is zero, the Q_ASSERT statement will output the following message using the
qFatal
() 函数:
ASSERT: "b == 0" in file div.cpp, line 7
另请参阅 Q_ASSERT_X (), qFatal (),和 调试技术 .
Prints the message what together with the location where , the source file name and line number if test 为 false。
Q_ASSERT_X is useful for testing pre- and post-conditions during development. It does nothing if
QT_NO_DEBUG
was defined during compilation.
范例:
// File: div.cpp #include <QtGlobal> int divide(int a, int b) { Q_ASSERT_X(b != 0, "divide", "division by zero"); return a / b; }
若
b
is zero, the Q_ASSERT_X statement will output the following message using the
qFatal
() 函数:
ASSERT failure in divide: "division by zero", file div.cpp, line 7
另请参阅 Q_ASSERT (), qFatal (),和 调试技术 .
This macro represents a value you can compare to the macro Q_BYTE_ORDER to determine the endian-ness of your system. In a big-endian system, the most significant byte is stored at the lowest address. The other bytes follow in decreasing order of significance.
#if Q_BYTE_ORDER == Q_BIG_ENDIAN ... #endif
另请参阅 Q_BYTE_ORDER and Q_LITTLE_ENDIAN .
This macro can be used to determine the byte order your system uses for storing data in memory. i.e., whether your system is little-endian or big-endian. It is set by Qt to one of the macros Q_LITTLE_ENDIAN or Q_BIG_ENDIAN . You normally won't need to worry about endian-ness, but you might, for example if you need to know which byte of an integer or UTF-16 character is stored in the lowest address. Endian-ness is important in networking, where computers with different values for Q_BYTE_ORDER must pass data back and forth.
Use this macro as in the following examples.
#if Q_BYTE_ORDER == Q_BIG_ENDIAN ... #endif or #if Q_BYTE_ORDER == Q_LITTLE_ENDIAN ... #endif
另请参阅 Q_BIG_ENDIAN and Q_LITTLE_ENDIAN .
Defined if the application is compiled using Borland/Turbo C++.
Defined if the application is compiled using Reliant C++.
Defined if the application is compiled using Comeau C++.
Defined if the application is compiled using DEC C++.
Defined if the application is compiled using Edison Design Group C++.
Defined if the application is compiled using Green Hills Optimizing C++ Compilers.
Defined if the application is compiled using GNU C++.
Defined if the application is compiled using MetaWare High C/C++.
Defined if the application is compiled using HP aC++.
Defined if the application is compiled using Intel C++ for Linux, Intel C++ for Windows.
Defined if the application is compiled using KAI C++.
Defined if the application is compiled using MIPSpro C++.
Defined if the application is compiled using Microsoft Visual C/C++, Intel C++ for Windows.
Defined if the application is compiled using Metrowerks CodeWarrior.
Defined if the application is compiled using CenterLine C++.
Defined if the application is compiled using Portland Group C++.
Defined if the application is compiled using Forte Developer, or Sun Studio C++.
Defined if the application is compiled using Digital Mars C/C++ (used to be Symantec C++).
Defined if the application is compiled using SCO OUDK and UDK.
Defined if the application is compiled using Watcom C++.
若 pointer is 0, prints a warning message containing the source code's file name and line number, saying that the program ran out of memory.
Q_CHECK_PTR does nothing if
QT_NO_DEBUG
was defined during compilation.
范例:
int *a; Q_CHECK_PTR(a = new int[80]); // WRONG! a = new (nothrow) int[80]; // Right Q_CHECK_PTR(a);
You can use this macro to specify information about a custom type Type . With accurate type information, Qt's generic containers can choose appropriate storage methods and algorithms.
Flags can be one of the following:
Q_PRIMITIVE_TYPE
specifies that
Type
is a POD (plain old data) type with no constructor or destructor.
Q_MOVABLE_TYPE
specifies that
Type
has a constructor and/or a destructor but can be moved in memory using
memcpy()
.
Q_COMPLEX_TYPE
(the default) specifies that
Type
has constructors and/or a destructor and that it may not be moved in memory.
Example of a "primitive" type:
struct Point2D { int x; int y; }; Q_DECLARE_TYPEINFO(Point2D, Q_PRIMITIVE_TYPE);
可移动类型范例:
class Point2D { public: Point2D() { data = new int[2]; } Point2D(const Point2D &other) { ... } ~Point2D() { delete[] data; } Point2D &operator=(const Point2D &other) { ... } int x() const { return data[0]; } int y() const { return data[1]; } private: int *data; }; Q_DECLARE_TYPEINFO(Point2D, Q_MOVABLE_TYPE);
This macro marks a symbol for shared library export (see 创建共享库 ).
另请参阅 Q_DECL_IMPORT .
This macro declares a symbol to be an import from a shared library (see 创建共享库 ).
另请参阅 Q_DECL_EXPORT .
如同 foreach( variable , container ).
此宏可用,甚至
no_keywords
的指定是使用
.pro
文件的
CONFIG
变量。
另请参阅 foreach ().
如同 forever .
此宏可用,甚至
no_keywords
的指定是使用
.pro
文件的
CONFIG
变量。
另请参阅 foreach ().
Expands to a string that describe the function the macro resides in. How this string looks more specifically is compiler dependent. With GNU GCC it is typically the function signature, while with other compilers it might be the line and column number.
Q_FUNC_INFO can be conveniently used with qDebug ()。例如,此函数:
template<typename TInputType> const TInputType &myMin(const TInputType &value1, const TInputType &value2) { qDebug() << Q_FUNC_INFO << "was called with value1:" << value1 << "value2:" << value2; if(value1 < value2) return value1; else return value2; }
when instantiated with the integer type, will with the GCC compiler produce:
const TInputType& myMin(const TInputType&, const TInputType&) [with TInputType = int] was called with value1: 3 value2: 4
If this macro is used outside a function, the behavior is undefined.
Wraps the signed 64-bit integer literal in a platform-independent way.
范例:
qint64 value = Q_INT64_C(932838457459459);
另请参阅 qint64 and Q_UINT64_C ().
Hints to the compiler that the enclosed condition,
expr
, is likely to evaluate to
true
.
Use of this macro can help the compiler to optimize the code.
范例:
// the condition inside the "if" will be successful most of the times
for (int i = 1; i <= 365; i++) {
if (Q_LIKELY(isWorkingDay(i))) {
...
}
...
}
该函数在 Qt 4.8 引入。
另请参阅 Q_UNLIKELY ().
This macro represents a value you can compare to the macro Q_BYTE_ORDER to determine the endian-ness of your system. In a little-endian system, the least significant byte is stored at the lowest address. The other bytes follow in increasing order of significance.
#if Q_BYTE_ORDER == Q_LITTLE_ENDIAN ... #endif
另请参阅 Q_BYTE_ORDER and Q_BIG_ENDIAN .
Defined on AIX.
Defined on Any BSD 4.4 system.
Defined on BSD/OS.
Defined on Cygwin.
Defined on Darwin OS (synonym for Q_OS_MAC ).
Defined on DG/UX.
Defined on DYNIX/ptx.
Defined on FreeBSD.
Defined on HP-UX.
Defined on GNU Hurd.
Defined on SGI Irix.
Defined on Linux.
Defined on LynxOS.
Defined on MAC OS (synonym for Darwin).
Defined on MS-DOS and Windows.
Defined on NetBSD.
Defined on OS/2.
Defined on OpenBSD.
Defined on XFree86 on OS/2 (not PM).
Defined on HP Tru64 UNIX.
Defined on QNX Neutrino.
Defined on Reliant UNIX.
Defined on SCO OpenServer 5.
Defined on Sun Solaris.
Defined on Symbian.
Defined on DEC Ultrix.
Defined on Any UNIX BSD/SYSV system.
Defined on UnixWare 7, Open UNIX 8.
Defined on all supported versions of Windows.
Defined on Windows CE.
Wraps the unsigned 64-bit integer literal in a platform-independent way.
范例:
quint64 value = Q_UINT64_C(932838457459459);
另请参阅 quint64 and Q_INT64_C ().
Hints to the compiler that the enclosed condition,
expr
, is likely to evaluate to
false
.
Use of this macro can help the compiler to optimize the code.
范例:
bool readConfiguration(const QFile &file) { // We expect to be asked to read an existing file if (Q_UNLIKELY(!file.exists())) { qWarning() << "File not found"; return false; } ... return true; }
该函数在 Qt 4.8 引入。
另请参阅 Q_LIKELY ().
Indicates to the compiler that the parameter with the specified name is not used in the body of a function. This can be used to suppress compiler warnings while allowing functions to be defined with meaningful parameter names in their signatures.
Defined on S60 with the Avkon UI framework.
另请参阅 Q_WS_MAC , Q_WS_WIN , Q_WS_X11 ,和 Q_WS_QWS .
Defined on X11.
另请参阅 Q_WS_MAC , Q_WS_WIN , Q_WS_QWS , Q_WS_QPA ,和 Q_WS_S60 .
Defined on Mac OS X.
另请参阅 Q_WS_WIN , Q_WS_X11 , Q_WS_QWS , Q_WS_QPA ,和 Q_WS_S60 .
Defined on Qt for Embedded Linux, Lite version.
另请参阅 Q_WS_MAC , Q_WS_WIN , Q_WS_X11 , Q_WS_QWS ,和 Q_WS_S60 .
Defined on Qt for Embedded Linux.
另请参阅 Q_WS_MAC , Q_WS_WIN , Q_WS_X11 , Q_WS_QPA ,和 Q_WS_S60 .
Defined on Windows.
另请参阅 Q_WS_MAC , Q_WS_X11 , Q_WS_QWS , Q_WS_QPA ,和 Q_WS_S60 .
此宏用于实现 Qt 的
foreach
循环。
variable
parameter is a variable name or variable definition; the
container
parameter is a Qt container whose value type corresponds to the type of the variable. See
foreach 关键字
了解细节。
If you're worried about namespace pollution, you can disable this macro by adding the following line to your
.pro
文件:
CONFIG += no_keywords
另请参阅 Q_FOREACH ().
This macro is provided for convenience for writing infinite loops.
范例:
forever {
...
}
它相当于
for (;;)
.
If you're worried about namespace pollution, you can disable this macro by adding the following line to your
.pro
文件:
CONFIG += no_keywords
另请参阅 Q_FOREVER .
返回
str
作为
const char *
。这相当于
str
.toLocal8Bit().constData().
The char pointer will be invalid after the statement in which qPrintable() is used. This is because the array returned by toLocal8Bit() will fall out of scope.
范例:
qWarning("%s: %s", qPrintable(key), qPrintable(value));