-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscripttools.h
45 lines (38 loc) · 1.93 KB
/
scripttools.h
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
/****************************************************************************}
{ scripttool.h - misc tools for scripts }
{ }
{ Copyright (c) 2017 Alexey Parfenov <[email protected]> }
{ }
{ This file is part of GPU Fan Meister. }
{ }
{ GPU Fan Meister is free software: you can redistribute it and/or modify it }
{ under the terms of the GNU General Public License as published by }
{ the Free Software Foundation, either version 3 of the License, }
{ or (at your option) any later version. }
{ }
{ GPU Fan Meister is distributed in the hope that it will be useful, }
{ but WITHOUT ANY WARRANTY; without even the implied warranty of }
{ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU }
{ General Public License for more details: https://gnu.org/licenses/gpl.html }
{****************************************************************************/
#pragma once
#include "qmlsimple.h"
#include <QObject>
#include <QVariantMap>
#include <QJSValue>
#include <QColor>
class ScriptTools : public QObject
{
Q_OBJECT
public:
ScriptTools(QJSEngine* engine);
Q_INVOKABLE QVariantMap fromColor(const QColor& color) const;
Q_INVOKABLE QVariantMap fromColorF(const QColor& color) const;
Q_INVOKABLE QColor toColor(const QVariantMap& obj) const;
Q_INVOKABLE QColor toColorF(const QVariantMap& obj) const;
Q_INVOKABLE QJSValue clone(const QJSValue& obj, bool deep = false) const;
protected:
QJSEngine* engine;
private:
Q_DISABLE_COPY(ScriptTools)
};