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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? qsettings.h

?? QT 開發(fā)環(huán)境里面一個很重要的文件
?? H
字號:
/******************************************************************************** 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.******************************************************************************/#ifndef QSETTINGS_H#define QSETTINGS_H#include <QtCore/qobject.h>#include <QtCore/qvariant.h>#include <QtCore/qstring.h>QT_BEGIN_HEADERQT_MODULE(Core)#ifndef QT_NO_SETTINGS#ifdef QT3_SUPPORT#include <QtCore/qstringlist.h>#endif#include <ctype.h>#ifdef Status // ### we seem to pick up a macro Status --> int somewhere#undef Status#endifclass QIODevice;class QSettingsPrivate;#ifndef QT_NO_QOBJECTclass Q_CORE_EXPORT QSettings : public QObject#elseclass Q_CORE_EXPORT QSettings#endif{#ifndef QT_NO_QOBJECT    Q_OBJECT#else    QSettingsPrivate *d_ptr;#endif    Q_DECLARE_PRIVATE(QSettings)public:    enum Status {        NoError = 0,        AccessError,        FormatError    };    enum Format {        NativeFormat,        IniFormat,        InvalidFormat = 16,        CustomFormat1,        CustomFormat2,        CustomFormat3,        CustomFormat4,        CustomFormat5,        CustomFormat6,        CustomFormat7,        CustomFormat8,        CustomFormat9,        CustomFormat10,        CustomFormat11,        CustomFormat12,        CustomFormat13,        CustomFormat14,        CustomFormat15,        CustomFormat16    };    enum Scope {        UserScope,        SystemScope#ifdef QT3_SUPPORT        ,        User = UserScope,        Global = SystemScope#endif    };#ifndef QT_NO_QOBJECT    explicit QSettings(const QString &organization,                       const QString &application = QString(), QObject *parent = 0);    QSettings(Scope scope, const QString &organization,              const QString &application = QString(), QObject *parent = 0);    QSettings(Format format, Scope scope, const QString &organization,	      const QString &application = QString(), QObject *parent = 0);    QSettings(const QString &fileName, Format format, QObject *parent = 0);    explicit QSettings(QObject *parent = 0);#else    explicit QSettings(const QString &organization,                       const QString &application = QString());    QSettings(Scope scope, const QString &organization,              const QString &application = QString());    QSettings(Format format, Scope scope, const QString &organization,              const QString &application = QString());    QSettings(const QString &fileName, Format format);#endif    ~QSettings();    void clear();    void sync();    Status status() const;    void beginGroup(const QString &prefix);    void endGroup();    QString group() const;    int beginReadArray(const QString &prefix);    void beginWriteArray(const QString &prefix, int size = -1);    void endArray();    void setArrayIndex(int i);    QStringList allKeys() const;    QStringList childKeys() const;    QStringList childGroups() const;    bool isWritable() const;    void setValue(const QString &key, const QVariant &value);    QVariant value(const QString &key, const QVariant &defaultValue = QVariant()) const;    void remove(const QString &key);    bool contains(const QString &key) const;    void setFallbacksEnabled(bool b);    bool fallbacksEnabled() const;    QString fileName() const;    static void setSystemIniPath(const QString &dir); // ### remove in 5.0 (use setPath() instead)    static void setUserIniPath(const QString &dir);   // ### remove in 5.0 (use setPath() instead)    static void setPath(Format format, Scope scope, const QString &path);    typedef QMap<QString, QVariant> SettingsMap;    typedef bool (*ReadFunc)(QIODevice &device, SettingsMap &map);    typedef bool (*WriteFunc)(QIODevice &device, const SettingsMap &map);    static Format registerFormat(const QString &extension, ReadFunc readFunc, WriteFunc writeFunc,                                 Qt::CaseSensitivity caseSensitivity = Qt::CaseSensitive);#ifdef QT3_SUPPORT    inline QT3_SUPPORT bool writeEntry(const QString &key, bool value)    { setValue(key, value); return isWritable(); }    inline QT3_SUPPORT bool writeEntry(const QString &key, double value)    { setValue(key, value); return isWritable(); }    inline QT3_SUPPORT bool writeEntry(const QString &key, int value)    { setValue(key, value); return isWritable(); }    inline QT3_SUPPORT bool writeEntry(const QString &key, const char *value)    { setValue(key, QString::fromAscii(value)); return isWritable(); }    inline QT3_SUPPORT bool writeEntry(const QString &key, const QString &value)    { setValue(key, value); return isWritable(); }    inline QT3_SUPPORT bool writeEntry(const QString &key, const QStringList &value)    { setValue(key, value); return isWritable(); }    inline QT3_SUPPORT bool writeEntry(const QString &key, const QStringList &value, QChar separator)    { setValue(key, value.join(QString(separator))); return isWritable(); }    inline QT3_SUPPORT QStringList readListEntry(const QString &key, bool *ok = 0)    {        if (ok)            *ok = contains(key);        return value(key).toStringList();    }    inline QT3_SUPPORT QStringList readListEntry(const QString &key, QChar separator, bool *ok = 0)    {        if (ok)            *ok = contains(key);        QString str = value(key).toString();        if (str.isEmpty())            return QStringList();        return str.split(separator);    }    inline QT3_SUPPORT QString readEntry(const QString &key, const QString &defaultValue = QString(),                                         bool *ok = 0)    {        if (ok)            *ok = contains(key);        return value(key, defaultValue).toString();    }    inline QT3_SUPPORT int readNumEntry(const QString &key, int defaultValue = 0, bool *ok = 0)    {        if (ok)            *ok = contains(key);        return value(key, defaultValue).toInt();    }    inline QT3_SUPPORT double readDoubleEntry(const QString &key, double defaultValue = 0,                                              bool *ok = 0)    {        if (ok)            *ok = contains(key);        return value(key, defaultValue).toDouble();    }    inline QT3_SUPPORT bool readBoolEntry(const QString &key, bool defaultValue = false,                                          bool *ok = 0)    {        if (ok)            *ok = contains(key);        return value(key, defaultValue).toBool();    }    inline QT3_SUPPORT bool removeEntry(const QString &key)    { remove(key); return true; }    enum System { Unix, Windows, Mac };    inline QT3_SUPPORT void insertSearchPath(System, const QString &) {}    inline QT3_SUPPORT void removeSearchPath(System, const QString &) {}    inline QT3_SUPPORT void setPath(const QString &organization, const QString &application,                                    Scope scope = Global)    {#ifndef QT_NO_QOBJECT        QObject *parent = this->parent();        this->~QSettings();        new (this) QSettings(scope == Global ? QSettings::SystemScope : QSettings::UserScope,                             organization, application, parent);#else        this->~QSettings();        new (this) QSettings(scope == Global ? QSettings::SystemScope : QSettings::UserScope,                             organization, application);#endif    }    inline QT3_SUPPORT void resetGroup()    {        while (!group().isEmpty())            endGroup();    }    inline QT3_SUPPORT QStringList entryList(const QString &key) const    {        QSettings *that = const_cast<QSettings *>(this);        QStringList result;        that->beginGroup(key);        result = that->childKeys();        that->endGroup();        return result;    }    inline QT3_SUPPORT QStringList subkeyList(const QString &key) const    {        QSettings *that = const_cast<QSettings *>(this);        QStringList result;        that->beginGroup(key);        result = that->childGroups();        that->endGroup();        return result;    }#endifprotected:#ifndef QT_NO_QOBJECT    bool event(QEvent *event);#endifprivate:    Q_DISABLE_COPY(QSettings)};#endif // QT_NO_SETTINGSQT_END_HEADER#endif // QSETTINGS_H

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲欧洲日韩在线| 欧美电影免费观看完整版| 亚洲蜜臀av乱码久久精品| 99这里只有久久精品视频| 亚洲区小说区图片区qvod| 91久久香蕉国产日韩欧美9色| 亚洲欧美日韩国产另类专区| 在线免费亚洲电影| 麻豆国产精品视频| 国产校园另类小说区| 国产99精品国产| 一卡二卡三卡日韩欧美| 91麻豆精品国产91久久久资源速度 | 色综合色狠狠综合色| 亚洲一二三四在线观看| 欧美一区二区精美| 国产成人自拍在线| 亚洲成在人线免费| 欧美v国产在线一区二区三区| 国产精品一二三四五| 一区二区三区成人| 久久综合久久久久88| 91视视频在线观看入口直接观看www | 91丨porny丨在线| 人人狠狠综合久久亚洲| 国产精品三级在线观看| 欧美天堂一区二区三区| 国产精品一色哟哟哟| 亚洲美女视频在线观看| 精品久久久久久久一区二区蜜臀| 成人国产精品免费观看视频| 亚洲韩国精品一区| 久久亚洲二区三区| 欧美日韩一区三区四区| 国产一区二区三区久久久| 亚洲欧美另类综合偷拍| 26uuu精品一区二区| 欧美综合色免费| 国产盗摄一区二区三区| 奇米影视一区二区三区小说| 中文欧美字幕免费| 久久品道一品道久久精品| 欧美乱妇一区二区三区不卡视频| 成人网男人的天堂| 久久成人精品无人区| 亚洲一区二区美女| 亚洲男人的天堂在线观看| 久久久精品免费观看| 91精品国产麻豆| 欧美日韩在线精品一区二区三区激情 | 在线成人免费视频| 一本一道综合狠狠老| 国产精品亚洲第一| 久久精品国产精品亚洲精品| 亚洲国产精品一区二区久久恐怖片| 日本一区二区在线不卡| 精品三级在线观看| 日韩精品一区二区三区老鸭窝| 欧美午夜一区二区三区| 91麻豆免费观看| 国产一区不卡在线| 国内精品免费**视频| 久久精品噜噜噜成人av农村| 亚洲国产精品一区二区久久恐怖片| 亚洲三级视频在线观看| 久久这里只有精品6| 精品区一区二区| 日韩欧美一级在线播放| 777xxx欧美| 欧美高清www午色夜在线视频| 欧美午夜精品一区二区三区| 欧美美女喷水视频| 欧美日韩美女一区二区| 在线观看精品一区| 欧美视频三区在线播放| 欧洲国产伦久久久久久久| 色成人在线视频| 欧美性猛交一区二区三区精品| eeuss国产一区二区三区| av综合在线播放| 91免费视频大全| 91老师片黄在线观看| 91国产丝袜在线播放| 欧美在线观看视频一区二区三区| 91极品视觉盛宴| 欧美裸体bbwbbwbbw| 欧美一区二区视频免费观看| 91精品国产日韩91久久久久久| 69久久夜色精品国产69蝌蚪网| 欧美军同video69gay| 日韩精品一区在线| 国产日韩精品一区| 国产精品白丝在线| 性欧美疯狂xxxxbbbb| 麻豆精品一区二区三区| 国产成人精品1024| 色综合久久久久网| 制服.丝袜.亚洲.中文.综合| 久久综合狠狠综合久久激情| 国产精品萝li| 亚洲电影视频在线| 久久国内精品视频| 成a人片国产精品| 欧美日韩在线三区| 久久先锋影音av鲁色资源网| 国产精品久久99| 亚洲成人av一区二区三区| 国产在线乱码一区二区三区| 91农村精品一区二区在线| 欧美视频一区二区三区四区 | 国产精品久久久久一区二区三区共| 1024国产精品| 亚洲一二三四久久| 国产精品资源在线| 91首页免费视频| 91精品国产入口在线| 国产精品欧美一区二区三区| 亚洲国产日产av| 国产一区999| 欧美视频一区在线| 日本一道高清亚洲日美韩| 国产福利一区二区三区视频| 91精品办公室少妇高潮对白| 欧美精品一区在线观看| 亚洲国产精品自拍| 成人av免费观看| 日韩免费看的电影| 亚洲午夜在线视频| 岛国一区二区在线观看| 欧美α欧美αv大片| 一区二区免费看| 成人综合在线观看| 日韩欧美国产麻豆| 午夜精品123| 一本大道久久a久久综合| www国产成人免费观看视频 深夜成人网| 日韩理论在线观看| 国产精品99久| 日韩一区二区免费视频| 亚洲精品伦理在线| 成人美女视频在线观看| 日韩欧美aaaaaa| 亚洲一区二区在线免费观看视频| 国产91在线观看丝袜| 欧美不卡一区二区三区四区| 亚洲超碰97人人做人人爱| 91麻豆自制传媒国产之光| 中文字幕高清一区| 国产一区二区三区在线观看免费 | 国产盗摄视频一区二区三区| 日韩精品中文字幕一区二区三区| 亚洲成人在线免费| 在线精品视频一区二区三四 | 久久综合成人精品亚洲另类欧美| 婷婷中文字幕综合| 色综合久久天天综合网| 亚洲欧洲三级电影| 99久久精品国产观看| 中文在线免费一区三区高中清不卡| 国模套图日韩精品一区二区| 日韩一级完整毛片| 水野朝阳av一区二区三区| 欧美日韩情趣电影| 亚洲成人黄色小说| 欧美日韩国产在线播放网站| 成人激情免费电影网址| 久久久不卡网国产精品一区| 久久69国产一区二区蜜臀| 欧美成人一区二区| 国内成人自拍视频| 日韩欧美不卡一区| 国模套图日韩精品一区二区| 精品国内片67194| 美腿丝袜亚洲综合| 精品国产一区二区三区四区四| 免费人成网站在线观看欧美高清| 欧美一级黄色录像| 国产一区二区在线电影| 国产欧美日韩综合精品一区二区| 国产91精品精华液一区二区三区| 国产日韩av一区| 色综合亚洲欧洲| 亚洲午夜国产一区99re久久| 欧美日韩一级二级| 久久av资源站| 国产日韩欧美精品一区| 色综合一个色综合亚洲| 视频在线在亚洲| 久久久精品黄色| 91色porny在线视频| 亚洲夂夂婷婷色拍ww47| 欧美另类久久久品| 国产一区二区毛片| 亚洲激情网站免费观看| 欧美一级电影网站| 国产mv日韩mv欧美| 亚洲一区二区三区免费视频| 欧美成va人片在线观看| 99久久伊人久久99| 日韩在线a电影|