forked from bruderstein/ZenCoding-Python
-
Notifications
You must be signed in to change notification settings - Fork 74
/
FuncItemManager.cpp
92 lines (72 loc) · 2 KB
/
FuncItemManager.cpp
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
#include "stdafx.h"
#include "PluginInterface.h"
#include "FuncItemManager.h"
FuncItemManager::FuncItemManager()
: m_funcItems(NULL)
{
}
FuncItemManager::~FuncItemManager()
{
for(std::list<FuncItem*>::iterator it = m_funcList.begin(); it != m_funcList.end(); ++it)
{
if ((*it)->_pShKey != NULL)
{
delete (*it)->_pShKey;
}
delete (*it);
}
if (m_funcItems != NULL)
{
delete [] m_funcItems;
}
}
int FuncItemManager::addFunction(const TCHAR *functionName,
PFUNCPLUGINCMD function,
UCHAR key,
int modifiers,
bool initToChecked /* = false */)
{
ShortcutKey *shkey = new ShortcutKey();
shkey->_key = key;
shkey->_isCtrl = (modifiers & MODIFIER_CTRL) == MODIFIER_CTRL;
shkey->_isAlt = (modifiers & MODIFIER_ALT) == MODIFIER_ALT;
shkey->_isShift = (modifiers & MODIFIER_SHIFT) == MODIFIER_SHIFT;
return addFunction(functionName, function, shkey, initToChecked);
}
int FuncItemManager::addFunction(const TCHAR *functionName,
PFUNCPLUGINCMD function,
ShortcutKey* shortcutKey /* = NULL */,
bool initToChecked /* = false */)
{
FuncItem *item = new FuncItem();
_tcscpy_s<64>(item->_itemName, functionName);
item->_pFunc = function;
item->_init2Check = initToChecked;
item->_pShKey = shortcutKey;
m_funcList.push_back(item);
return m_funcList.size() - 1;
}
void FuncItemManager::addSplitter()
{
FuncItem *item = new FuncItem();
item->_itemName[0] = _T('\0');
item->_pFunc = NULL;
m_funcList.push_back(item);
}
FuncItem* FuncItemManager::getFuncItems(int *funcCount)
{
if (m_funcItems != NULL)
{
delete [] m_funcItems;
}
*funcCount = m_funcList.size();
m_funcItems = new FuncItem[(*funcCount)];
// Copy the list items into the m_funcList.
// Sadly this has to make an actual copy of each funcItem, but that's life..
int pos = 0;
for(std::list<FuncItem*>::iterator it = m_funcList.begin(); it != m_funcList.end(); ++it, ++pos)
{
m_funcItems[pos] = *(*it);
}
return m_funcItems;
}