blob: a7fac34e65b05eaa9be0afebeb2b602bac5d019f (
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
|
// SPDX-FileCopyrightText: 2023 kumquat-ir 66188216+kumquat-ir@users.noreply.github.com
//
// SPDX-License-Identifier: LGPL-3.0-only
#ifndef QDCSS_H
#define QDCSS_H
#include <QMap>
#include <QString>
#include <QStringList>
#include <optional>
class QDCSS {
// these are all we need to parse a couple string values out of a css string
// lots more in the original code, yet to be ported
// https://github.com/unascribed/NilLoader/blob/trunk/src/main/java/nilloader/api/lib/qdcss/QDCSS.java
public:
QDCSS(QString);
std::optional<QString>* get(QString);
private:
QMap<QString, QStringList> m_data;
};
#endif // QDCSS_H
|