blob: 5f7b31ee323dc43c2fb37a22b69b4708c1a9d19c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
// Copyright (C) 2018 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#ifndef QTEXTUREFILEREADER_H
#define QTEXTUREFILEREADER_H
//
// W A R N I N G
// -------------
//
// This file is not part of the Qt API. It exists purely as an
// implementation detail. This header file may change from version to
// version without notice, or even be removed.
//
// We mean it.
//
#include "qtexturefiledata_p.h"
#include <QString>
#include <QFileInfo>
QT_BEGIN_NAMESPACE
class QIODevice;
class QTextureFileHandler;
class Q_GUI_EXPORT QTextureFileReader
{
public:
QTextureFileReader(QIODevice *device, const QString &fileName = QString()); //### drop this logname thing?
~QTextureFileReader();
bool canRead();
QTextureFileData read();
// TBD access function to params
// TBD ask for identified fmt
static QList<QByteArray> supportedFileFormats();
private:
bool init();
QIODevice *m_device = nullptr;
QString m_fileName;
QTextureFileHandler *m_handler = nullptr;
bool checked = false;
};
QT_END_NAMESPACE
#endif // QTEXTUREFILEREADER_H
|