~carlos-mazieri/ubuntu-filemanager-app/model-using-qfilesystemwatcher

« back to all changes in this revision

Viewing changes to test_folderlistmodel/regression/mimetypes/src/mimetypes/qmimetypeparser_p.h

  • Committer: carlos.mazieri at gmail
  • Date: 2013-05-25 17:21:13 UTC
  • Revision ID: carlos.mazieri@gmail.com-20130525172113-s8e1ajb7c4egpjw5
added QMimeType to try QIcon::fromTheme() to get icons.

added a private Clipboard handling to prevent Qcliboard not working on Nemo emulator

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/****************************************************************************
 
2
**
 
3
** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
 
4
** Contact: http://www.qt-project.org/
 
5
**
 
6
** This file is part of the QtCore module of the Qt Toolkit.
 
7
**
 
8
** $QT_BEGIN_LICENSE:LGPL$
 
9
** GNU Lesser General Public License Usage
 
10
** This file may be used under the terms of the GNU Lesser General Public
 
11
** License version 2.1 as published by the Free Software Foundation and
 
12
** appearing in the file LICENSE.LGPL included in the packaging of this
 
13
** file. Please review the following information to ensure the GNU Lesser
 
14
** General Public License version 2.1 requirements will be met:
 
15
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
 
16
**
 
17
** In addition, as a special exception, Nokia gives you certain additional
 
18
** rights. These rights are described in the Nokia Qt LGPL Exception
 
19
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
 
20
**
 
21
** GNU General Public License Usage
 
22
** Alternatively, this file may be used under the terms of the GNU General
 
23
** Public License version 3.0 as published by the Free Software Foundation
 
24
** and appearing in the file LICENSE.GPL included in the packaging of this
 
25
** file. Please review the following information to ensure the GNU General
 
26
** Public License version 3.0 requirements will be met:
 
27
** http://www.gnu.org/copyleft/gpl.html.
 
28
**
 
29
** Other Usage
 
30
** Alternatively, this file may be used in accordance with the terms and
 
31
** conditions contained in a signed written agreement between you and Nokia.
 
32
**
 
33
**
 
34
**
 
35
**
 
36
**
 
37
**
 
38
** $QT_END_LICENSE$
 
39
**
 
40
****************************************************************************/
 
41
 
 
42
 
 
43
#ifndef MIMETYPEPARSER_P_H
 
44
#define MIMETYPEPARSER_P_H
 
45
 
 
46
#include "qmimedatabase_p.h"
 
47
#include "qmimeprovider_p.h"
 
48
 
 
49
QT_BEGIN_NAMESPACE
 
50
 
 
51
class QIODevice;
 
52
 
 
53
class QMimeTypeParserBase
 
54
{
 
55
    Q_DISABLE_COPY(QMimeTypeParserBase)
 
56
 
 
57
public:
 
58
    QMimeTypeParserBase() {}
 
59
    virtual ~QMimeTypeParserBase() {}
 
60
 
 
61
    bool parse(QIODevice *dev, const QString &fileName, QString *errorMessage);
 
62
 
 
63
protected:
 
64
    virtual bool process(const QMimeType &t, QString *errorMessage) = 0;
 
65
    virtual bool process(const QMimeGlobPattern &t, QString *errorMessage) = 0;
 
66
    virtual void processParent(const QString &child, const QString &parent) = 0;
 
67
    virtual void processAlias(const QString &alias, const QString &name) = 0;
 
68
    virtual void processMagicMatcher(const QMimeMagicRuleMatcher &matcher) = 0;
 
69
 
 
70
private:
 
71
    enum ParseState {
 
72
        ParseBeginning,
 
73
        ParseMimeInfo,
 
74
        ParseMimeType,
 
75
        ParseComment,
 
76
        ParseGenericIcon,
 
77
        ParseIcon,
 
78
        ParseGlobPattern,
 
79
        ParseSubClass,
 
80
        ParseAlias,
 
81
        ParseMagic,
 
82
        ParseMagicMatchRule,
 
83
        ParseOtherMimeTypeSubTag,
 
84
        ParseError
 
85
    };
 
86
 
 
87
    static ParseState nextState(ParseState currentState, const QStringRef &startElement);
 
88
};
 
89
 
 
90
 
 
91
class QMimeTypeParser : public QMimeTypeParserBase
 
92
{
 
93
public:
 
94
    explicit QMimeTypeParser(QMimeXMLProvider &provider) : m_provider(provider) {}
 
95
 
 
96
protected:
 
97
    inline bool process(const QMimeType &t, QString *)
 
98
    { m_provider.addMimeType(t); return true; }
 
99
 
 
100
    inline bool process(const QMimeGlobPattern &glob, QString *)
 
101
    { m_provider.addGlobPattern(glob); return true; }
 
102
 
 
103
    inline void processParent(const QString &child, const QString &parent)
 
104
    { m_provider.addParent(child, parent); }
 
105
 
 
106
    inline void processAlias(const QString &alias, const QString &name)
 
107
    { m_provider.addAlias(alias, name); }
 
108
 
 
109
    inline void processMagicMatcher(const QMimeMagicRuleMatcher &matcher)
 
110
    { m_provider.addMagicMatcher(matcher); }
 
111
 
 
112
private:
 
113
    QMimeXMLProvider &m_provider;
 
114
};
 
115
 
 
116
QT_END_NAMESPACE
 
117
 
 
118
#endif // MIMETYPEPARSER_P_H