File: QLanguage.hpp

package info (click to toggle)
qcodeeditor 1.0%2B1gitdc644d-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 528 kB
  • sloc: cpp: 2,502; xml: 731; python: 11; makefile: 9
file content (61 lines) | stat: -rw-r--r-- 997 bytes parent folder | download | duplicates (2)
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
53
54
55
56
57
58
59
60
61
#pragma once

// Qt
#include <QObject> // Required for inheritance
#include <QString>
#include <QMap>

class QIODevice;

/**
 * Class, that describes object for parsing
 * language file.
 */
class QLanguage : public QObject
{
    Q_OBJECT

public:

    /**
     * @brief Constructor.
     * @param parent Pointer to parent QObject.
     */
    explicit QLanguage(QIODevice* device=nullptr, QObject* parent=nullptr);

    /**
     * @brief Method for parsing.
     * @param device Pointer to device.
     * @return Success.
     */
    bool load(QIODevice* device);

    /**
     * @brief Method for getting available keys.
     */
    QStringList keys();

    /**
     * @brief Method for getting names
     * from key.
     * @param name
     * @return
     */
    QStringList names(const QString& key);

    /**
     * @brief Method for getting is object loaded.
     */
    bool isLoaded() const;

private:

    bool m_loaded;

    QMap<
        QString,
        QStringList
    > m_list;

};