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

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

?? qabstractfileengine.cpp

?? QT 開發(fā)環(huán)境里面一個很重要的文件
?? CPP
?? 第 1 頁 / 共 2 頁
字號:
    return false;}/*!    Requests that the file is deleted from the file system. If the    operation succeeds return true; otherwise return false.    This virtual function must be reimplemented by all subclasses.    \sa setFileName() rmdir() */bool QAbstractFileEngine::remove(){    return false;}/*!    Copies the contents of this file to a file with the name \a newName.    Returns true on success; otherwise, false is returned.*/bool QAbstractFileEngine::copy(const QString &newName){    Q_UNUSED(newName);    return false;}/*!    Requests that the file be renamed to \a newName in the file    system. If the operation succeeds return true; otherwise return    false.    This virtual function must be reimplemented by all subclasses.    \sa setFileName() */bool QAbstractFileEngine::rename(const QString &newName){    Q_UNUSED(newName);    return false;}/*!    Creates a link from the file currently specified by fileName() to    \a newName. What a link is depends on the underlying filesystem    (be it a shortcut on Windows or a symbolic link on Unix). Returns    true if successful; otherwise returns false.*/bool QAbstractFileEngine::link(const QString &newName){    Q_UNUSED(newName);    return false;}/*!    Requests that the directory \a dirName be created. If    \a createParentDirectories is true, then any sub-directories in \a dirName    that don't exist must be created. If \a createParentDirectories is false then    any sub-directories in \a dirName must already exist for the function to    succeed. If the operation succeeds return true; otherwise return    false.    This virtual function must be reimplemented by all subclasses.    \sa setFileName() rmdir() isRelativePath() */bool QAbstractFileEngine::mkdir(const QString &dirName, bool createParentDirectories) const{    Q_UNUSED(dirName);    Q_UNUSED(createParentDirectories);    return false;}/*!    Requests that the directory \a dirName is deleted from the file    system. When \a recurseParentDirectories is true, then any empty    parent-directories in \a dirName must also be deleted. If    \a recurseParentDirectories is false, only the \a dirName leaf-node    should be deleted. In most file systems a directory cannot be deleted    using this function if it is non-empty. If the operation succeeds    return true; otherwise return false.    This virtual function must be reimplemented by all subclasses.    \sa setFileName() remove() mkdir() isRelativePath() */bool QAbstractFileEngine::rmdir(const QString &dirName, bool recurseParentDirectories) const{    Q_UNUSED(dirName);    Q_UNUSED(recurseParentDirectories);    return false;}/*!    Requests that the file be set to size \a size. If \a size is larger    than the current file then it is filled with 0's, if smaller it is    simply truncated. If the operations succceeds return true; otherwise    return false;    This virtual function must be reimplemented by all subclasses.    \sa size()*/bool QAbstractFileEngine::setSize(qint64 size){    Q_UNUSED(size);    return false;}/*!    Should return true if the underlying file system is case-sensitive;    otherwise return false.    This virtual function must be reimplemented by all subclasses. */bool QAbstractFileEngine::caseSensitive() const{    return false;}/*!    Return true if the file referred to by this file engine has a    relative path; otherwise return false.    This virtual function must be reimplemented by all subclasses.    \sa setFileName() */bool QAbstractFileEngine::isRelativePath() const{    return false;}/*!    Requests that a list of all the files matching the \a filters    list based on the \a filterNames in the file engine's directory    are returned.    Should return an empty list if the file engine refers to a file    rather than a directory, or if the directory is unreadable or does    not exist or if nothing matches the specifications.    This virtual function must be reimplemented by all subclasses.    \sa setFileName() */QStringList QAbstractFileEngine::entryList(QDir::Filters filters, const QStringList &filterNames) const{    Q_UNUSED(filters);    Q_UNUSED(filterNames);    return QStringList();}/*!    This function should return the set of OR'd flags that are true    for the file engine's file, and that are in the \a type's OR'd    members.    In your reimplementation you can use the \a type argument as an    optimization hint and only return the OR'd set of members that are    true and that match those in \a type; in other words you can    ignore any members not mentioned in \a type, thus avoiding some    potentially expensive lookups or system calls.    This virtual function must be reimplemented by all subclasses.    \sa setFileName()*/QAbstractFileEngine::FileFlags QAbstractFileEngine::fileFlags(FileFlags type) const{    Q_UNUSED(type);    return 0;}/*!    Requests that the file's permissions be set to \a perms. The argument    perms will be set to the OR-ed together combination of    QAbstractFileEngine::FileInfo, with only the QAbstractFileEngine::PermsMask being    honored. If the operations succceeds return true; otherwise return    false;    This virtual function must be reimplemented by all subclasses.    \sa size()*/bool QAbstractFileEngine::setPermissions(uint perms){    Q_UNUSED(perms);    return false;}/*!    Return  the file engine's current file name in the format    specified by \a file.    If you don't handle some \c FileName possibilities, return the    file name set in setFileName() when an unhandled format is    requested.    This virtual function must be reimplemented by all subclasses.    \sa setFileName(), FileName */QString QAbstractFileEngine::fileName(FileName file) const{    Q_UNUSED(file);    return QString();}/*!    If \a owner is \c OwnerUser return the ID of the user who owns    the file. If \a owner is \c OwnerGroup return the ID of the group    that own the file. If you can't determine the owner return -2.    This virtual function must be reimplemented by all subclasses.    \sa owner() setFileName(), FileOwner */uint QAbstractFileEngine::ownerId(FileOwner owner) const{    Q_UNUSED(owner);    return 0;}/*!    If \a owner is \c OwnerUser return the name of the user who owns    the file. If \a owner is \c OwnerGroup return the name of the group    that own the file. If you can't determine the owner return    QString().    This virtual function must be reimplemented by all subclasses.    \sa ownerId() setFileName(), FileOwner */QString QAbstractFileEngine::owner(FileOwner owner) const{    Q_UNUSED(owner);    return QString();}/*!    If \a time is \c CreationTime, return when the file was created.    If \a time is \c ModificationTime, return when the file was most    recently modified. If \a time is \c AccessTime, return when the    file was most recently accessed (e.g. read or written).    If the time cannot be determined return QDateTime() (an invalid    date time).    This virtual function must be reimplemented by all subclasses.    \sa setFileName(), QDateTime, QDateTime::isValid(), FileTime */QDateTime QAbstractFileEngine::fileTime(FileTime time) const{    Q_UNUSED(time);    return QDateTime();}/*!    Sets the file engine's file name to \a file. This file name is the    file that the rest of the virtual functions will operate on.    This virtual function must be reimplemented by all subclasses.    \sa rename() */void QAbstractFileEngine::setFileName(const QString &file){    Q_UNUSED(file);}/*!    Returns the native file handle for this file engine. This handle must be    used with care; its value and type are platform specific, and using it    will most likely lead to non-portable code.*/int QAbstractFileEngine::handle() const{    return -1;}/*!    \internal*/QAbstractFileEngine::Iterator *QAbstractFileEngine::beginEntryList(QDir::Filters filters, const QStringList &filterNames){    Q_UNUSED(filters);    Q_UNUSED(filterNames);    return 0;}/*!    \internal*/QAbstractFileEngine::Iterator *QAbstractFileEngine::endEntryList(){    return 0;}/*!    Reads a number of characters from the file into \a data. At most    \a maxlen characters will be read.    Returns -1 if a fatal error occurs, or 0 if there are no bytes to    read.*/qint64 QAbstractFileEngine::read(char *data, qint64 maxlen){    Q_UNUSED(data);    Q_UNUSED(maxlen);    return -1;}/*!    Writes \a len bytes from \a data to the file. Returns the number    of characters written on success; otherwise returns -1.*/qint64 QAbstractFileEngine::write(const char *data, qint64 len){    Q_UNUSED(data);    Q_UNUSED(len);    return -1;}/*!    This function reads one line, terminated by a '\n' character, from the    file info \a data. At most \a maxlen characters will be read. The    end-of-line character is included.*/qint64 QAbstractFileEngine::readLine(char *data, qint64 maxlen){    qint64 readSoFar = 0;    while (readSoFar < maxlen) {        char c;        qint64 readResult = read(&c, 1);        if (readResult <= 0)            return (readSoFar > 0) ? readSoFar : readResult;        ++readSoFar;        *data++ = c;        if (c == '\n')            return readSoFar;    }    return readSoFar;}/*!   \internal   \enum QAbstractFileEngine::Extension*//*!   \internal   \class QAbstractFileEngine::ExtensionOption*//*!   \internal   \class QAbstractFileEngine::ExtensionReturn*//*!    \internal*/bool QAbstractFileEngine::extension(Extension extension, const ExtensionOption *option, ExtensionReturn *output){    Q_UNUSED(extension);    Q_UNUSED(option);    Q_UNUSED(output);    return false;}/*!    \internal*/bool QAbstractFileEngine::supportsExtension(Extension extension) const{    Q_UNUSED(extension);    return false;}/*!  Returns the QFile::FileError that resulted from the last failed  operation. If QFile::UnspecifiedError is returned, QFile will  use its own idea of the error status.  \sa QFile::FileError, errorString() */QFile::FileError QAbstractFileEngine::error() const{    Q_D(const QAbstractFileEngine);    return d->fileError;}/*!  Returns the human-readable message appropriate to the current error  reported by error(). If no suitable string is available, an  empty string is returned.  \sa error() */QString QAbstractFileEngine::errorString() const{    Q_D(const QAbstractFileEngine);    return d->errorString;}/*!    Sets the error type to \a error, and the error string to \a errorString.    Call this function to set the error values returned by the higher-level    classes.    \sa QFile::error(), QIODevice::errorString(), QIODevice::setErrorString()*/void QAbstractFileEngine::setError(QFile::FileError error, const QString &errorString){    Q_D(QAbstractFileEngine);    d->fileError = error;    d->errorString = errorString;}

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美日韩的一区二区| 亚洲综合一区二区| 欧美一区二区三区四区视频 | 欧美日韩视频专区在线播放| 91影院在线观看| 99久久精品免费看| 色哟哟在线观看一区二区三区| jiyouzz国产精品久久| caoporm超碰国产精品| 色偷偷成人一区二区三区91| 91精品1区2区| 欧美久久久久久久久| 制服丝袜成人动漫| 精品国产乱码久久久久久牛牛| 日韩视频一区二区三区| 久久久久久久久久久久久夜| 亚洲国产精品av| 亚洲日本在线天堂| 日韩精品一卡二卡三卡四卡无卡| 日本伊人精品一区二区三区观看方式| 午夜电影网亚洲视频| 久久av老司机精品网站导航| 高清不卡一区二区在线| 色中色一区二区| 日韩欧美一级精品久久| 欧美国产精品专区| 亚洲国产成人av网| 精品无人码麻豆乱码1区2区 | 午夜久久久影院| 国模一区二区三区白浆| 成人免费毛片嘿嘿连载视频| 欧美综合天天夜夜久久| 精品国产sm最大网站免费看| 亚洲欧美日韩电影| 免费成人美女在线观看.| www..com久久爱| 日韩精品在线一区| 一区二区三区四区av| 国产一区二区三区在线观看免费| 972aa.com艺术欧美| 精品国产亚洲一区二区三区在线观看 | 精品一区二区三区的国产在线播放| 丰满亚洲少妇av| 日韩欧美一级二级三级久久久 | 91免费版在线| 欧美大片一区二区三区| 一区二区在线观看免费 | 亚洲欧美综合另类在线卡通| 日本三级韩国三级欧美三级| 色婷婷精品大在线视频| 国产女人18水真多18精品一级做| 亚洲高清视频中文字幕| 色婷婷综合五月| 国产精品初高中害羞小美女文| 裸体健美xxxx欧美裸体表演| 欧美日韩在线播| 日韩美女视频一区| 国产精品资源在线| 欧美精品aⅴ在线视频| 日韩伦理免费电影| 成人午夜激情视频| 国产亚洲一区字幕| 激情六月婷婷综合| 欧美成人精品3d动漫h| 日韩高清欧美激情| 欧美一级搡bbbb搡bbbb| 午夜精品久久久久久| 欧美系列在线观看| 亚洲一区二区偷拍精品| 欧美在线观看视频一区二区三区 | 欧美精选午夜久久久乱码6080| 国产精品久久久久久久久果冻传媒| 国产原创一区二区三区| 久久女同精品一区二区| 国产一本一道久久香蕉| 久久九九全国免费| 国产不卡在线视频| 国产精品国产三级国产普通话蜜臀 | 国产在线国偷精品产拍免费yy | 福利一区二区在线观看| 国产日韩在线不卡| 国产白丝网站精品污在线入口| 精品国产123| 国产九九视频一区二区三区| 中文一区在线播放 | 日韩国产精品91| 欧美一区二区三区日韩| 激情都市一区二区| 国产日韩精品视频一区| av午夜一区麻豆| 国产精品乱码一区二区三区软件| 99re66热这里只有精品3直播| 亚洲精品成人在线| 欧美视频完全免费看| 蜜桃视频一区二区| 日本一区二区三级电影在线观看| 97精品视频在线观看自产线路二| 亚洲男人都懂的| 制服丝袜日韩国产| 成人在线综合网| 亚洲午夜视频在线| 2021久久国产精品不只是精品| 国产一区 二区 三区一级| 亚洲精品免费视频| 日韩视频在线一区二区| 国产麻豆成人传媒免费观看| 综合久久久久综合| 欧美一区二区三区在线观看视频| 国产成人免费视频网站| 亚洲乱码国产乱码精品精98午夜 | 精品一二三四区| 国产精品卡一卡二| 日韩欧美国产精品一区| 成人动漫在线一区| 蜜臀精品久久久久久蜜臀| 国产精品日产欧美久久久久| 欧美日韩成人一区| 成人av在线看| 激情六月婷婷久久| 亚洲在线中文字幕| 中文字幕精品三区| 精品久久国产字幕高潮| 欧美亚洲图片小说| 成人免费毛片嘿嘿连载视频| 久久国产精品露脸对白| 亚洲一级二级在线| 国产精品乱码久久久久久| 91精品国产麻豆| 日本电影欧美片| 成人永久aaa| 精品一区二区三区视频在线观看| 一区二区国产视频| 国产精品欧美久久久久无广告| 日韩欧美在线观看一区二区三区| 在线看国产一区| 99re成人在线| 成人av电影免费在线播放| 久久精品国产在热久久| 日本视频中文字幕一区二区三区| 一区二区成人在线| 亚洲欧美二区三区| 亚洲男人的天堂在线观看| 亚洲国产精华液网站w| 国产日韩av一区| 久久久www成人免费毛片麻豆| 欧美成人vps| 精品人伦一区二区色婷婷| 在线不卡的av| 日韩亚洲欧美在线| 欧美高清一级片在线| 欧美老女人在线| 欧美高清性hdvideosex| 欧美一级夜夜爽| 日韩精品一区二区三区swag| 精品嫩草影院久久| 精品福利av导航| 国产日本一区二区| 国产精品日日摸夜夜摸av| **网站欧美大片在线观看| 综合电影一区二区三区| 亚洲乱码国产乱码精品精的特点| 亚洲精品欧美激情| 香蕉久久夜色精品国产使用方法| 亚洲电影第三页| 蜜臀av在线播放一区二区三区| 久久国产精品99久久久久久老狼| 激情六月婷婷久久| 波多野结衣精品在线| 日本高清不卡aⅴ免费网站| 在线观看免费亚洲| 日韩欧美一区电影| 国产精品乱子久久久久| 亚洲一区二区三区四区在线免费观看| 日精品一区二区| 国产激情一区二区三区桃花岛亚洲| 国产丶欧美丶日本不卡视频| 一本到一区二区三区| 日韩一区二区麻豆国产| 国产欧美日韩综合精品一区二区| 亚洲欧洲综合另类在线| 蜜桃久久久久久久| 国产91精品一区二区麻豆网站| 欧美艳星brazzers| 久久你懂得1024| 亚洲国产精品嫩草影院| 国产一区二区导航在线播放| 色88888久久久久久影院野外| 日韩午夜在线观看| 综合电影一区二区三区| 久久精品国产精品亚洲综合| 91麻豆免费在线观看| 3d动漫精品啪啪一区二区竹菊| 亚洲国产精品黑人久久久| 三级影片在线观看欧美日韩一区二区| 国产成人综合自拍| 欧美精三区欧美精三区| 自拍视频在线观看一区二区| 久久国产精品99精品国产| 欧美视频一区二区| 中文字幕在线一区免费|