亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? qglobal.cpp

?? QT 開發環境里面一個很重要的文件
?? CPP
?? 第 1 頁 / 共 5 頁
字號:
/******************************************************************************** Copyright (C) 1992-2006 Trolltech ASA. All rights reserved.**** This file is part of the QtCore module of the Qt Toolkit.**** This file may be used under the terms of the GNU General Public** License version 2.0 as published by the Free Software Foundation** and appearing in the file LICENSE.GPL included in the packaging of** this file.  Please review the following information to ensure GNU** General Public Licensing requirements will be met:** http://www.trolltech.com/products/qt/opensource.html**** If you are unsure which license is appropriate for your use, please** review the following information:** http://www.trolltech.com/products/qt/licensing.html or contact the** sales department at sales@trolltech.com.**** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.******************************************************************************/#include "qplatformdefs.h"#include "qstring.h"#include "qvector.h"#include "qlist.h"#include "qthreadstorage.h"#ifndef QT_NO_QOBJECT#include <private/qthread_p.h>#endif#include <stdio.h>#include <stdlib.h>#include <limits.h>#include <stdarg.h>#include <errno.h>#if defined(Q_CC_MSVC) && !defined(Q_OS_TEMP)#include <crtdbg.h>#endif/*!    \class QFlag    \brief The QFlag class is a helper data type for QFlags.    It is equivalent to a plain \c int, except with respect to    function overloading and type conversions. You should never need    to use this class in your applications.    \sa QFlags*//*!    \fn QFlag::QFlag(int value)    Constructs a QFlag object that stores the given \a value.*//*!    \fn QFlag::operator int() const    Returns the value stored by the QFlag object.*//*!    \class QFlags    \brief The QFlags class provides a type-safe way of storing    OR-combinations of enum values.    \mainclass    \ingroup tools    The QFlags<Enum> class is a template class, where Enum is an enum    type. QFlags is used throughout Qt for storing combinations of    enum values.    The traditional C++ approach for storing OR-combinations of enum    values is to use an \c int or \c uint variable. The inconvenience    with this approach is that there's no type checking at all; any    enum value can be OR'd with any other enum value and passed on to    a function that takes an \c int or \c uint.    Qt uses QFlags to provide type safety. For example, the    Qt::Alignment type is simply a typedef for    QFlags<Qt::AlignmentFlag>. QLabel::setAlignment() takes a    Qt::Alignment parameter, which means that any combination of    Qt::AlignmentFlag values is legal:    \code        label->setAlignment(Qt::AlignLeft | Qt::AlignTop);    \endcode    If you try to pass a value from another enum, the compiler will    report an error.    If you want to use QFlags for your own enum types, use    the Q_DECLARE_FLAGS() and Q_DECLARE_OPERATORS_FOR_FLAGS().    For example:    \code        class MyClass        {        public:            enum Option {                NoOptions = 0x0,                ShowTabs = 0x1,                ShowAll = 0x2,                SqueezeBlank = 0x4            };            Q_DECLARE_FLAGS(Options, Option)            ...        };        Q_DECLARE_OPERATORS_FOR_FLAGS(MyClass::Options)    \endcode    You can then use the \c MyClass::Options type to store    combinations of \c MyClass::Option values.    A sensible naming convension for enum types and associated QFlags    types is to give a singular name to the enum type (e.g., \c    Option) and a plural name to the QFlags type (e.g., \c Options).    When a singular name is desired for the QFlags type (e.g., \c    Alignment), you can use \c Flag as the suffix for the enum type    (e.g., \c AlignmentFlag).    \sa QFlag*//*!    \typedef QFlags::enum_type    Typedef for the Enum template type.*//*!    \fn QFlags::QFlags(const QFlags &other)    Constructs a copy of \a other.*//*!    \fn QFlags::QFlags(Enum flag)    Constructs a QFlags object storing the given \a flag.*//*!    \fn QFlags::QFlags(Zero zero)    Constructs a QFlags object with no flags set. \a zero must be a    literal 0 value.*//*!    \fn QFlags::QFlags(QFlag value)    Constructs a QFlags object initialized with the given integer \a    value.    The QFlag type is a helper type. By using it here instead of \c    int, we effectively ensure that arbitrary enum values cannot be    cast to a QFlags, whereas untyped enum values (i.e., \c int    values) can.*//*!    \fn QFlags &QFlags::operator=(const QFlags &other)    Assigns \a other to this object and returns a reference to this    object.*//*!    \fn QFlags &QFlags::operator&=(int mask)    Performs a bitwise AND operation with \a mask and stores the    result in this QFlags object. Returns a reference to this object.    \sa operator&(), operator|=(), operator^=()*//*!    \fn QFlags &QFlags::operator&=(uint mask)    \overload*//*!    \fn QFlags &QFlags::operator|=(QFlags other)    Performs a bitwise OR operation with \a other and stores the    result in this QFlags object. Returns a reference to this object.    \sa operator|(), operator&=(), operator^=()*//*!    \fn QFlags &QFlags::operator|=(Enum other)    \overload*//*!    \fn QFlags &QFlags::operator^=(QFlags other)    Performs a bitwise XOR operation with \a other and stores the    result in this QFlags object. Returns a reference to this object.    \sa operator^(), operator&=(), operator|=()*//*!    \fn QFlags &QFlags::operator^=(Enum other)    \overload*//*!    \fn QFlags::operator int() const    Returns the value stored in the QFlags object as an integer.*//*!    \fn QFlags QFlags::operator|(QFlags other) const    Returns a QFlags object containing the result of the bitwise OR    operation on this object and \a other.    \sa operator|=(), operator^(), operator&(), operator~()*//*!    \fn QFlags QFlags::operator|(Enum other) const    \overload*//*!    \fn QFlags QFlags::operator^(QFlags other) const    Returns a QFlags object containing the result of the bitwise XOR    operation on this object and \a other.    \sa operator^=(), operator&(), operator|(), operator~()*//*!    \fn QFlags QFlags::operator^(Enum other) const    \overload*//*!    \fn QFlags QFlags::operator&(int mask) const    Returns a QFlags object containing the result of the bitwise AND    operation on this object and \a mask.    \sa operator&=(), operator|(), operator^(), operator~()*//*!    \fn QFlags QFlags::operator&(uint mask) const    \overload*//*!    \fn QFlags QFlags::operator&(Enum mask) const    \overload*//*!    \fn QFlags QFlags::operator~() const    Returns a QFlags object that contains the bitwise negation of    this object.    \sa operator&(), operator|(), operator^()*//*!    \fn bool QFlags::operator!() const    Returns true if no flag is set (i.e., if the value stored by the    QFlags object is 0); otherwise returns false.*//*!    \fn bool QFlags::testFlag(Enum flag) const    \since 4.2    Returns true if the \a flag is set, otherwise false.*//*!    \macro Q_DECLARE_FLAGS(Flags, Enum)    \relates QFlags    The Q_DECLARE_FLAGS() macro expands to    \code        typedef QFlags<Enum> Flags;    \endcode    \a Enum is the name of an existing enum type, whereas \a Flags is    the name of the QFlags<\e{Enum}> typedef.    See the QFlags documentation for details.    \sa Q_DECLARE_OPERATORS_FOR_FLAGS()*//*!    \macro Q_DECLARE_OPERATORS_FOR_FLAGS(Flags)    \relates QFlags    The Q_DECLARE_OPERATORS_FOR_FLAGS() macro declares global \c    operator|() functions for \a Flags, which is of type QFlags<T>.    See the QFlags documentation for details.    \sa Q_DECLARE_FLAGS()*//*!    \headerfile <QtGlobal>    \title Global Qt Declarations    \ingroup architecture    \brief The <QtGlobal> header provides basic declarations and    is included by all other Qt headers.    The declarations include \l {types}, \l functions and    \l macros.    The type definitions are partly convenience definitions for basic    types (some of which guarantee certain bit-sizes on all platforms    supported by Qt), partly types related to Qt message handling. The    functions are related to generating messages, Qt version handling    and comparing and adjusting object values. And finally, some of    the declared macros enable programmers to add compiler or platform    specific code to their applications, while others are convenience    macros for larger operations.    \section1 Types    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 \l qint8 which is a signed char    guaranteed to be 8-bit on all platforms supported by Qt. The    header file also declares the \l qlonglong type definition for \c    {long long int } (\c __int64 on Windows).    Several convenience type definitions are declared: \l qreal for \c    double, \l uchar for \c unsigned char, \l uint for \c unsigned    int, \l ulong for \c unsigned long and \l ushort for \c 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 \c {void myMsgHandler(QtMsgType, const char *)}.    \section1 Functions    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() and qMax() respectively. All these functions    return a corresponding template type; the template types can be    replaced by any other type. For example:    \code        int myValue = 10;        int minValue = 2;        int maxValue = 6;        int boundedValue = qBound(minValue, myValue, maxValue);        // boundedValue == 6    \endcode    <QtGlobal> also contains functions that generate messages from the    given string argument: qCritical(), qDebug(), qFatal() and    qWarning(). These functions call the message handler with the    given message. For example:    \code        if (!driver()->isOpen() || driver()->isOpenError()) {            qWarning("QSqlQuery::exec: database not open");            return false;        }    \endcode    The remaining functions are qRound() and qRound64(), which both    accept a \l 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, and the qVersion() function which returns the    version number of Qt at run-time as a string.    \section1 Macros    The <QtGlobal> header file provides a range of macros (Q_CC_*)    that are defined if the application is compiled using the    specified platforms. For example, the Q_CC_SUN macro is defined if    the application is compiled using Forte Developer, or Sun Studio    C++.  The header file also declares a range of macros (Q_OS_*)    that are defined for the specified platforms. For example,    Q_OS_X11 which is defined for the X Window System.    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() and 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() and Q_ASSERT_X() enables warning messages of various    level of refinement. The Q_FOREACH() and foreach() macros    implement Qt's foreach loop.    The Q_INT64_C() and 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.    \sa <QtAlgorithms>, QSysInfo*//*!    \typedef qreal    \relates <QtGlobal>    Typedef for \c double on all platforms except for those using CPUs with    ARM architectures.    On ARM-based platforms, \c qreal is a typedef for \c float for performance    reasons.*//*! \typedef uchar    \relates <QtGlobal>    Convenience typedef for \c{unsigned char}.*//*!    \fn qt_set_sequence_auto_mnemonic(bool on)    \relates <QtGlobal>    Enables automatic mnemonics on Mac if \a on is true; otherwise    this feature is disabled.    Note that this function is only available on Mac where mnemonics    are disabled by default.    \sa {QShortcut#mnemonic}{QShortcut}*//*! \typedef ushort    \relates <QtGlobal>    Convenience typedef for \c{unsigned short}.*//*! \typedef uint    \relates <QtGlobal>    Convenience typedef for \c{unsigned int}.*//*! \typedef ulong    \relates <QtGlobal>    Convenience typedef for \c{unsigned long}.*//*! \typedef qint8    \relates <QtGlobal>    Typedef for \c{signed char}. This type is guaranteed to be 8-bit    on all platforms supported by Qt.*//*!    \typedef quint8    \relates <QtGlobal>    Typedef for \c{unsigned char}. This type is guaranteed to    be 8-bit on all platforms supported by Qt.*//*! \typedef qint16    \relates <QtGlobal>    Typedef for \c{signed short}. This type is guaranteed to be    16-bit on all platforms supported by Qt.*//*!    \typedef quint16    \relates <QtGlobal>    Typedef for \c{unsigned short}. This type is guaranteed to    be 16-bit on all platforms supported by Qt.*//*! \typedef qint32    \relates <QtGlobal>    Typedef for \c{signed int}. This type is guaranteed to be 32-bit    on all platforms supported by Qt.*//*!    \typedef quint32

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
中文字幕国产一区| 精品剧情v国产在线观看在线| 欧美系列日韩一区| 欧美精品一区二区三区很污很色的| 欧美激情在线免费观看| 日韩一区欧美二区| 93久久精品日日躁夜夜躁欧美| 精品区一区二区| 亚洲一卡二卡三卡四卡无卡久久| 国产福利91精品一区二区三区| 欧美性猛片xxxx免费看久爱| 国产精品理伦片| 狠狠色丁香久久婷婷综合_中 | 国产成人精品1024| 国产日本一区二区| 成人中文字幕电影| 亚洲精品少妇30p| 国产一区二区三区在线观看精品| 成人欧美一区二区三区小说| 国产日产亚洲精品系列| 奇米色一区二区| 亚洲午夜一区二区三区| 18成人在线观看| 亚洲狠狠丁香婷婷综合久久久| 懂色av一区二区在线播放| 日韩免费一区二区三区在线播放| 亚瑟在线精品视频| 色综合久久久久久久久| 中文字幕国产一区| 波多野结衣在线aⅴ中文字幕不卡| 精品盗摄一区二区三区| 国精产品一区一区三区mba视频 | 国产美女精品一区二区三区| 日韩欧美一级在线播放| 日韩av不卡一区二区| 欧美男女性生活在线直播观看| 亚洲一区日韩精品中文字幕| 色激情天天射综合网| 亚洲一区二区视频在线| 日韩精品在线网站| 国内精品伊人久久久久影院对白| 精品乱人伦一区二区三区| 乱中年女人伦av一区二区| 日韩欧美中文字幕一区| 精品写真视频在线观看 | 国产伦理精品不卡| 久久久久久久久久久黄色| 国产成人亚洲综合a∨婷婷| 国产亚洲精品7777| 久久久久久毛片| 久久久久成人黄色影片| 亚洲一区二区免费视频| 国产福利一区二区三区视频在线| 美女视频一区二区三区| 开心九九激情九九欧美日韩精美视频电影| 午夜视频一区二区| 午夜国产精品影院在线观看| 捆绑调教一区二区三区| 国产成人亚洲精品狼色在线| 欧美亚洲国产怡红院影院| 日本一区二区视频在线| 亚洲综合一二区| 日韩欧美中文字幕制服| 粉嫩在线一区二区三区视频| 亚洲女子a中天字幕| 欧美在线观看一区| 久久国产福利国产秒拍| 国产精品国产三级国产aⅴ原创 | 欧美一二三区精品| 国产二区国产一区在线观看| 亚洲精品日韩综合观看成人91| 欧美一区二区三区四区久久| 国产成人综合亚洲网站| 一区二区视频免费在线观看| 日韩精品一区在线| 一本大道av伊人久久综合| 久久超碰97人人做人人爱| 亚洲日本在线天堂| 欧美大片在线观看一区二区| 色综合视频在线观看| 国产在线国偷精品免费看| 亚洲欧美视频在线观看视频| 精品福利一二区| 欧美午夜宅男影院| 成人午夜精品一区二区三区| 奇米影视在线99精品| 亚洲欧美日韩系列| 国产日韩v精品一区二区| 9191国产精品| 91麻豆产精品久久久久久| 国产精品一区专区| 麻豆成人av在线| 亚洲亚洲精品在线观看| 亚洲欧洲日韩一区二区三区| 久久综合狠狠综合久久综合88| 欧美日韩在线一区二区| 99re视频这里只有精品| 国产福利一区二区三区视频| 久久99精品国产麻豆婷婷洗澡| 夜夜爽夜夜爽精品视频| 国产精品久久久久久久蜜臀| 久久色在线观看| 精品毛片乱码1区2区3区| 欧美丰满少妇xxxbbb| 91亚洲精品一区二区乱码| 欧美第一区第二区| 成人免费三级在线| 免费在线观看视频一区| 91精品国产福利在线观看| 国产一区二区三区黄视频| 亚洲国产成人午夜在线一区| 大美女一区二区三区| 亚洲va欧美va人人爽午夜| 久久精品免视看| 欧美日韩黄视频| 91在线观看美女| 中文字幕巨乱亚洲| 国产精品国产精品国产专区不片| 欧美一区二区三区在线电影| 欧美日本韩国一区| 欧美高清精品3d| 337p亚洲精品色噜噜狠狠| 欧美另类一区二区三区| 欧美日韩激情在线| 日韩一区二区视频在线观看| 日韩午夜精品视频| 久久亚区不卡日本| 亚洲国产精品黑人久久久| 国产精品丝袜一区| 亚洲人快播电影网| 亚洲成人黄色影院| 日韩成人精品在线观看| 精品一区二区三区影院在线午夜 | 色综合婷婷久久| 欧美丝袜丝交足nylons图片| 在线播放/欧美激情| 精品国产乱码久久久久久夜甘婷婷| 精品国产一区久久| 国产精品美女久久久久久久网站| 中文字幕亚洲欧美在线不卡| 一区二区三区久久| 麻豆一区二区在线| 99国产精品99久久久久久| 欧美人与禽zozo性伦| 精品成人一区二区三区| 国产精品不卡在线| 石原莉奈一区二区三区在线观看| 韩国三级中文字幕hd久久精品| 成人精品亚洲人成在线| 欧美日本在线视频| 国产色一区二区| 亚洲一区二区三区在线| 激情五月激情综合网| 91美女蜜桃在线| 日韩精品自拍偷拍| 亚洲精品写真福利| 久久精品免费观看| 在线日韩国产精品| 国产日韩欧美麻豆| 亚洲福利视频导航| caoporm超碰国产精品| 91精品福利在线一区二区三区 | 成人黄色av网站在线| 欧美日本在线视频| 国产精品欧美一区喷水| 欧美日韩国产另类一区| 国产成人日日夜夜| 一区二区三区四区五区视频在线观看 | 高清shemale亚洲人妖| 欧美日韩黄色影视| 免费成人在线网站| 日韩丝袜情趣美女图片| 91精品国产综合久久精品图片 | 欧美本精品男人aⅴ天堂| 精品国产露脸精彩对白| 人人精品人人爱| 欧美精品一区二区三区高清aⅴ| 久久久久久影视| 激情综合色综合久久| 久久99精品久久久| 懂色av一区二区三区免费观看| 国产午夜三级一区二区三| 丁香激情综合五月| 日韩三级伦理片妻子的秘密按摩| 亚洲成a人v欧美综合天堂| 久久精品一区四区| 一本久久a久久免费精品不卡| 亚洲人成人一区二区在线观看| 久久免费美女视频| 91国偷自产一区二区三区成为亚洲经典 | 欧美日韩成人在线| 久久99国产精品成人| 天堂久久一区二区三区| 精品国产一区二区国模嫣然| 欧美三区在线观看| 石原莉奈一区二区三区在线观看| 国产午夜精品美女毛片视频| 欧美亚洲高清一区| 在线观看亚洲一区| 在线观看日韩av先锋影音电影院|