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

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

?? qdir.h

?? QT 開發環境里面一個很重要的文件
?? 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 QDIR_H#define QDIR_H#include <QtCore/qstring.h>#include <QtCore/qfileinfo.h>#include <QtCore/qstringlist.h>QT_BEGIN_HEADERQT_MODULE(Core)class QDirPrivate;class Q_CORE_EXPORT QDir{protected:    QDirPrivate *d_ptr;private:    Q_DECLARE_PRIVATE(QDir)public:    enum Filter { Dirs        = 0x001,                  Files       = 0x002,                  Drives      = 0x004,                  NoSymLinks  = 0x008,                  AllEntries  = Dirs | Files | Drives,                  TypeMask    = 0x00f,#ifdef QT3_SUPPORT                  All         = AllEntries,#endif                  Readable    = 0x010,                  Writable    = 0x020,                  Executable  = 0x040,                  PermissionMask    = 0x070,#ifdef QT3_SUPPORT                  RWEMask     = 0x070,#endif                  Modified    = 0x080,                  Hidden      = 0x100,                  System      = 0x200,                                   AccessMask  = 0x3F0,                  AllDirs       = 0x400,                  CaseSensitive = 0x800,                  NoDotAndDotDot = 0x1000,                  NoFilter = -1#ifdef QT3_SUPPORT                  ,DefaultFilter = NoFilter#endif    };    Q_DECLARE_FLAGS(Filters, Filter)#ifdef QT3_SUPPORT    typedef Filters FilterSpec;#endif    enum SortFlag { Name        = 0x00,                    Time        = 0x01,                    Size        = 0x02,                    Unsorted    = 0x03,                    SortByMask  = 0x03,                    DirsFirst   = 0x04,                    Reversed    = 0x08,                    IgnoreCase  = 0x10,                    DirsLast    = 0x20,                    LocaleAware = 0x40,                     Type        = 0x80,                    NoSort = -1#ifdef QT3_SUPPORT                  ,DefaultSort = NoSort#endif    };    Q_DECLARE_FLAGS(SortFlags, SortFlag)    QDir(const QDir &);    QDir(const QString &path = QString());    QDir(const QString &path, const QString &nameFilter,         SortFlags sort = SortFlags(Name | IgnoreCase), Filters filter = AllEntries);    ~QDir();    QDir &operator=(const QDir &);    QDir &operator=(const QString &path);    void setPath(const QString &path);    QString path() const;    QString absolutePath() const;    QString canonicalPath() const;    static void addResourceSearchPath(const QString &path);    QString dirName() const;    QString filePath(const QString &fileName) const;    QString absoluteFilePath(const QString &fileName) const;    QString relativeFilePath(const QString &fileName) const;    QT_DEPRECATED static QString convertSeparators(const QString &pathName);    static QString toNativeSeparators(const QString &pathName);    static QString fromNativeSeparators(const QString &pathName);    bool cd(const QString &dirName);    bool cdUp();    QStringList nameFilters() const;    void setNameFilters(const QStringList &nameFilters);    Filters filter() const;    void setFilter(Filters filter);    SortFlags sorting() const;    void setSorting(SortFlags sort);    uint count() const;    QString operator[](int) const;    static QStringList nameFiltersFromString(const QString &nameFilter);    QStringList entryList(Filters filters = NoFilter, SortFlags sort = NoSort) const;    QStringList entryList(const QStringList &nameFilters, Filters filters = NoFilter,                          SortFlags sort = NoSort) const;    QFileInfoList entryInfoList(Filters filters = NoFilter, SortFlags sort = NoSort) const;    QFileInfoList entryInfoList(const QStringList &nameFilters, Filters filters = NoFilter,                                SortFlags sort = NoSort) const;    bool mkdir(const QString &dirName) const;    bool rmdir(const QString &dirName) const;    bool mkpath(const QString &dirPath) const;    bool rmpath(const QString &dirPath) const;    bool isReadable() const;    bool exists() const;    bool isRoot() const;    static bool isRelativePath(const QString &path);    inline static bool isAbsolutePath(const QString &path) { return !isRelativePath(path); }    bool isRelative() const;    inline bool isAbsolute() const { return !isRelative(); }    bool makeAbsolute();    bool operator==(const QDir &dir) const;    inline bool operator!=(const QDir &dir) const {  return !operator==(dir); }    bool remove(const QString &fileName);    bool rename(const QString &oldName, const QString &newName);    bool exists(const QString &name) const;    static QFileInfoList drives();    static QChar separator();    static bool setCurrent(const QString &path);    static inline QDir current() { return QDir(currentPath()); }    static QString currentPath();    static inline QDir home() { return QDir(homePath()); }    static QString homePath();    static inline QDir root() { return QDir(rootPath()); }    static QString rootPath();    static inline QDir temp() { return QDir(tempPath()); }    static QString tempPath();#ifndef QT_NO_REGEXP    static bool match(const QStringList &filters, const QString &fileName);    static bool match(const QString &filter, const QString &fileName);#endif    static QString cleanPath(const QString &path);    void refresh() const;#ifdef QT3_SUPPORT    typedef SortFlags SortSpec;    inline QT3_SUPPORT QString absPath() const { return absolutePath(); }    inline QT3_SUPPORT QString absFilePath(const QString &fileName, bool acceptAbsPath = true) const       { Q_UNUSED(acceptAbsPath); return absoluteFilePath(fileName); }    QT3_SUPPORT bool matchAllDirs() const;    QT3_SUPPORT void setMatchAllDirs(bool on);    inline QT3_SUPPORT QStringList entryList(const QString &nameFilter, Filters filters = NoFilter,                                           SortFlags sort = NoSort) const    { return entryList(nameFiltersFromString(nameFilter), filters, sort); }    inline QT3_SUPPORT QFileInfoList entryInfoList(const QString &nameFilter,                                                 Filters filters = NoFilter,                                                 SortFlags sort = NoSort) const    { return entryInfoList(nameFiltersFromString(nameFilter), filters, sort); }    QT3_SUPPORT QString nameFilter() const;    QT3_SUPPORT void setNameFilter(const QString &nameFilter);    inline QT3_SUPPORT bool mkdir(const QString &dirName, bool acceptAbsPath) const        { Q_UNUSED(acceptAbsPath); return mkdir(dirName); }    inline QT3_SUPPORT bool rmdir(const QString &dirName, bool acceptAbsPath) const        { Q_UNUSED(acceptAbsPath); return rmdir(dirName); }    inline QT3_SUPPORT void convertToAbs() { makeAbsolute(); }    inline QT3_SUPPORT static QString currentDirPath() { return currentPath(); }    inline QT3_SUPPORT static QString homeDirPath() { return homePath(); }    inline QT3_SUPPORT static QString rootDirPath() { return rootPath(); }    inline QT3_SUPPORT static QString cleanDirPath(const QString &name) { return cleanPath(name); }#endif};Q_DECLARE_OPERATORS_FOR_FLAGS(QDir::Filters)Q_DECLARE_OPERATORS_FOR_FLAGS(QDir::SortFlags)#ifndef QT_NO_DEBUGclass QDebug;Q_CORE_EXPORT QDebug operator<<(QDebug debug, QDir::Filters filters);Q_CORE_EXPORT QDebug operator<<(QDebug debug, const QDir &dir);#endifQT_END_HEADER#endif // QDIR_H

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久丁香综合五月国产三级网站| 亚洲欧美国产毛片在线| 久久精工是国产品牌吗| 欧美成人女星排名| 精品一区二区三区久久久| 欧美精品一区二区在线播放| 国产在线精品不卡| 国产精品久久久一本精品| 在线国产亚洲欧美| 麻豆精品久久久| 国产日产欧产精品推荐色| 色婷婷久久综合| 天天综合色天天综合| 久久婷婷国产综合精品青草| www.日韩精品| 五月天激情综合网| 国产欧美日韩激情| 欧美午夜免费电影| 国产自产视频一区二区三区| 国产精品毛片大码女人| 欧美四级电影在线观看| 国产综合久久久久影院| 亚洲欧美日韩一区二区| 日韩一级免费观看| 91免费精品国自产拍在线不卡| 亚洲国产精品影院| 久久精品视频免费观看| 欧美日韩亚洲综合在线 欧美亚洲特黄一级| 日本亚洲电影天堂| 亚洲日本一区二区| 欧美精品一区二区蜜臀亚洲| 色哦色哦哦色天天综合| 99久久99久久精品免费观看| 亚洲综合免费观看高清完整版| 欧美r级在线观看| 欧洲精品在线观看| 丰满岳乱妇一区二区三区| 视频一区欧美精品| 中文字幕在线视频一区| 欧美tickling挠脚心丨vk| 色婷婷av一区二区| 成人在线视频一区| 久久99久久99精品免视看婷婷 | 99精品在线观看视频| 日本成人中文字幕| 一区二区久久久久| 国产精品卡一卡二| 欧美精品一区二区三区很污很色的| 欧美综合久久久| 91在线视频官网| 国产精品99久久久久| 麻豆精品在线播放| 婷婷成人综合网| 亚洲一线二线三线视频| 1区2区3区精品视频| 国产区在线观看成人精品 | 91毛片在线观看| 国产91精品一区二区麻豆网站| 日韩精品一二三四| 亚洲一区二区三区精品在线| 亚洲欧美激情插| 亚洲色图在线看| 中文字幕va一区二区三区| 久久综合九色综合97_久久久| 欧美一区二区三区性视频| 欧美色图一区二区三区| 91久久香蕉国产日韩欧美9色| 成人av网址在线| 不卡电影免费在线播放一区| 成人免费高清在线| 国产夫妻精品视频| 国产iv一区二区三区| 国产激情一区二区三区| 欧美久久久久免费| 欧美日韩国产中文| 在线播放91灌醉迷j高跟美女| 欧美亚洲日本国产| 欧美区一区二区三区| 欧美精品一卡二卡| 欧美精三区欧美精三区| 911精品产国品一二三产区| 欧美日韩中文另类| 欧美一区永久视频免费观看| 欧美福利一区二区| 日韩欧美精品在线视频| 精品久久国产字幕高潮| 国产日韩av一区| 中文字幕视频一区二区三区久| 自拍偷拍亚洲欧美日韩| 一区二区三区电影在线播| 亚洲不卡在线观看| 狠狠v欧美v日韩v亚洲ⅴ| 国产999精品久久| 99久久精品免费| 欧美性猛交xxxxxx富婆| 日韩三级中文字幕| 国产亚洲精品aa午夜观看| 亚洲视频小说图片| 五月天一区二区| 黄一区二区三区| 粉嫩aⅴ一区二区三区四区五区 | 国产精品白丝在线| 亚洲与欧洲av电影| 麻豆精品一区二区三区| 欧美一卡2卡3卡4卡| 久久综合久久99| 一区二区三区精品在线| 美女视频一区二区| www.色精品| 日韩一区二区三区电影在线观看| 久久综合色综合88| 亚洲精品视频免费观看| 日本sm残虐另类| 成人黄色国产精品网站大全在线免费观看| 在线亚洲人成电影网站色www| 欧美一区二区三区公司| 国产精品久久久久aaaa樱花| 天天影视网天天综合色在线播放 | eeuss鲁片一区二区三区在线看| 色老汉一区二区三区| 日韩久久免费av| 亚洲一区二区四区蜜桃| 国产福利一区二区| 欧美一区二区免费观在线| 国产精品不卡一区二区三区| 琪琪久久久久日韩精品| 色噜噜狠狠成人网p站| 久久综合丝袜日本网| 亚洲成人av在线电影| 成人免费黄色在线| 精品粉嫩超白一线天av| 五月天一区二区| 91蝌蚪porny| 欧美高清在线视频| 久久国产综合精品| 欧美三级在线视频| 亚洲欧美日韩国产综合在线| 国产一区日韩二区欧美三区| 91麻豆精品国产自产在线观看一区 | 一区二区三区高清在线| 国产不卡视频在线播放| 欧美成人精品福利| 午夜精品123| 色成年激情久久综合| 中文字幕av一区二区三区| 裸体在线国模精品偷拍| 欧美日韩免费电影| 亚洲综合自拍偷拍| 91亚洲国产成人精品一区二三| 久久久久99精品一区| 另类小说欧美激情| 欧美一区午夜精品| 日本aⅴ亚洲精品中文乱码| 欧美午夜不卡在线观看免费| 亚洲欧洲综合另类| 色综合天天性综合| 亚洲裸体在线观看| 91视频在线观看| 日韩伦理免费电影| 91伊人久久大香线蕉| 中文字幕综合网| 色哟哟日韩精品| 一个色综合网站| 欧美三级视频在线| 亚洲国产成人av好男人在线观看| 欧美色视频在线| 天天影视涩香欲综合网| 欧美妇女性影城| 蜜臀av一区二区在线观看| 日韩欧美另类在线| 国产在线国偷精品免费看| 久久精品亚洲精品国产欧美kt∨| 国产一区二区久久| 亚洲国产精品av| 91视频免费播放| 亚洲图片一区二区| 在线成人高清不卡| 麻豆专区一区二区三区四区五区| 欧美一级日韩一级| 国产精品亚洲一区二区三区妖精 | 蜜臀久久99精品久久久久宅男 | 一卡二卡三卡日韩欧美| 欧美性受xxxx黑人xyx| 丝袜美腿亚洲综合| 精品噜噜噜噜久久久久久久久试看| 美女视频一区在线观看| 国产欧美日韩精品在线| 91福利精品第一导航| 麻豆成人91精品二区三区| 久久综合九色综合欧美就去吻| 不卡大黄网站免费看| 亚洲成a人片在线观看中文| 欧美成人福利视频| aaa欧美日韩| 亚洲成人免费在线| 久久伊99综合婷婷久久伊| 99久久久精品| 青青草91视频| 亚洲日本一区二区| 日韩免费观看高清完整版在线观看|