forked from Mudlet/Mudlet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKeyUnit.h
105 lines (91 loc) · 3.48 KB
/
KeyUnit.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
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
#ifndef MUDLET_KEYUNIT_H
#define MUDLET_KEYUNIT_H
/***************************************************************************
* Copyright (C) 2008-2011 by Heiko Koehn - KoehnHeiko@googlemail.com *
* Copyright (C) 2014 by Ahmed Charles - acharles@outlook.com *
* *
* This program 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 2 of the License, or *
* (at your option) any later version. *
* *
* This program 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. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include "pre_guard.h"
#include <QMap>
#include <QMutex>
#include <QPointer>
#include <QString>
#include "post_guard.h"
#include <list>
class Host;
class TKey;
class KeyUnit
{
friend class XMLexport;
friend class XMLimport;
public:
KeyUnit(Host* pHost);
std::list<TKey*> getKeyRootNodeList()
{
QMutexLocker locker(&mKeyUnitLock);
return mKeyRootNodeList;
}
TKey* getKey(int id);
void removeAllTempKeys();
void compileAll();
TKey* findKey(QString & name);
bool enableKey(const QString& name);
bool disableKey(const QString& name);
bool killKey(QString& name);
bool registerKey(TKey* pT);
void unregisterKey(TKey* pT);
void reParentKey(int childID, int oldParentID, int newParentID, int parentPosition = -1, int childPosition = -1);
QString assembleReport();
int getNewID();
QString getKeyName(int keyCode, int modifier);
void setupKeyNames();
void uninstall(const QString&);
void _uninstall(TKey* pChild, const QString& packageName);
bool processDataStream(int, int);
void markCleanup( TKey * pT );
void doCleanup();
void stopAllTriggers();
void reenableAllTriggers();
QMultiMap<QString, TKey*> mLookupTable;
std::list<TKey*> mCleanupList;
QMutex mKeyUnitLock;
int statsKeyTotal;
int statsTempKeys;
int statsActiveKeys;
int statsActiveKeysMax;
int statsActiveKeysMin;
int statsActiveKeysAverage;
int statsTempKeysCreated;
int statsTempKeysKilled;
QList<TKey*> uninstallList;
private:
KeyUnit() = default;
TKey* getKeyPrivate(int id);
void initStats();
void _assembleReport(TKey*);
void addKeyRootNode(TKey* pT, int parentPosition = -1, int childPosition = -1);
void addKey(TKey* pT);
void removeKeyRootNode(TKey* pT);
void removeKey(TKey*);
QPointer<Host> mpHost;
QMap<int, TKey*> mKeyMap;
std::list<TKey*> mKeyRootNodeList;
int mMaxID;
bool mModuleMember;
QMap<int, QString> mKeys;
};
#endif // MUDLET_KEYUNIT_H