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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
// Copyright (C) 2024 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#pragma once
#include "../luaengine.h"
#include <utils/filepath.h>
#include <utils/icon.h>
#include <utils/id.h>
#include <QMetaEnum>
namespace Lua::Internal {
using FilePathOrString = std::variant<Utils::FilePath, QString>;
inline Utils::FilePath toFilePath(const FilePathOrString &v)
{
return std::visit(
[](auto &&arg) -> Utils::FilePath {
using T = std::decay_t<decltype(arg)>;
if constexpr (std::is_same_v<T, QString>)
return Utils::FilePath::fromUserInput(arg);
else
return arg;
},
v);
}
using IconFilePathOrString = std::variant<std::shared_ptr<Utils::Icon>, Utils::FilePath, QString>;
inline std::shared_ptr<Utils::Icon> toIcon(const IconFilePathOrString &v)
{
return std::visit(
[](auto &&arg) -> std::shared_ptr<Utils::Icon> {
using T = std::decay_t<decltype(arg)>;
if constexpr (std::is_same_v<T, std::shared_ptr<Utils::Icon>>)
return arg;
else
return std::make_shared<Utils::Icon>(toFilePath(arg));
},
v);
}
inline void mirrorEnum(sol::table &&target, QMetaEnum metaEnum, const QString &name = {})
{
sol::table luaEnumTable = target.create(
name.isEmpty() ? QString::fromUtf8(metaEnum.name()) : name, metaEnum.keyCount());
for (int i = 0; i < metaEnum.keyCount(); ++i)
luaEnumTable.set(metaEnum.key(i), metaEnum.value(i));
};
inline void mirrorEnum(sol::table &target, QMetaEnum metaEnum, const QString &name = {})
{
sol::table luaEnumTable = target.create(
name.isEmpty() ? QString::fromUtf8(metaEnum.name()) : name, metaEnum.keyCount());
for (int i = 0; i < metaEnum.keyCount(); ++i)
luaEnumTable.set(metaEnum.key(i), metaEnum.value(i));
};
template <typename E>
inline QFlags<E> tableToFlags(const sol::table &table) noexcept {
static_assert(std::is_enum<E>::value, "Enum type required");
QFlags<E> flags;
for (const auto& kv : table)
flags.setFlag(static_cast<E>(kv.second.as<int>()));
return flags;
}
class InfoBarCleaner
{
QList<Utils::Id> openInfoBars;
public:
~InfoBarCleaner();
void infoBarEntryAdded(const Utils::Id &id) { openInfoBars.append(id); }
};
} // namespace Lua::Internal
|