-
Notifications
You must be signed in to change notification settings - Fork 206
/
CustomFriendsHelper.cpp
150 lines (118 loc) · 3.02 KB
/
CustomFriendsHelper.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
#include "stdafx.h"
#include "CustomFriendsHelper.h"
#include "CP_Main.h"
#include "Shared\Tokenizer.h"
#include "Shared\TextConvert.h"
CCustomFriendsHelper::CCustomFriendsHelper()
{
}
CCustomFriendsHelper::~CCustomFriendsHelper()
{
}
void CCustomFriendsHelper::Load()
{
m_list.clear();
CString oldValues = CGetSetOptions::GetCustomSendToList();
TiXmlDocument doc;
CStringA xmlA = CTextConvert::UnicodeToUTF8(oldValues);
doc.Parse(xmlA);
TiXmlElement *ItemHeader = doc.FirstChildElement("CustomFriends");
if (ItemHeader != NULL)
{
TiXmlElement *ItemElement = ItemHeader->FirstChildElement();
while (ItemElement)
{
Name_Desc array_item;
array_item.m_name = ItemElement->Attribute("name");
array_item.m_desc = ItemElement->Attribute("desc");
m_list.push_back(array_item);
ItemElement = ItemElement->NextSiblingElement();
}
}
}
void CCustomFriendsHelper::Save()
{
/*CString values = _T("");
int count = m_list.size();
for (int i = 0; i < count; i++)
{
CString lineValue = m_list[i];
values += _T(",");
values += lineValue;
}*/
TiXmlDocument doc;
TiXmlElement* friendOuter = new TiXmlElement("CustomFriends");
doc.LinkEndChild(friendOuter);
for (auto & listItem : m_list)
{
TiXmlElement* friendElement = new TiXmlElement("Friend");
CStringA nameA = CTextConvert::UnicodeToUTF8(listItem.m_name);
friendElement->SetAttribute("name", nameA);
CStringA descA = CTextConvert::UnicodeToUTF8(listItem.m_desc);
friendElement->SetAttribute("desc", descA);
friendOuter->LinkEndChild(friendElement);
}
TiXmlPrinter printer;
printer.SetLineBreak("");
doc.Accept(&printer);
CString cs = printer.CStr();
CGetSetOptions::SetCustomSendToList(cs);
}
void CCustomFriendsHelper::AddToMenu(CMenu *pMenu)
{
bool addedItem = false;
int id = 0;
for (auto & element : m_list)
{
if (addedItem == false)
{
addedItem = true;
}
CString cs;
if (element.m_desc != _T(""))
{
cs.Format(_T("(%s) - %s"), element.m_name, element.m_desc);
}
else
{
cs.Format(_T("%s"), element.m_name);
}
pMenu->AppendMenuW(MF_STRING, (CustomFriendStartId + id), cs);
id++;
}
if (addedItem)
{
pMenu->AppendMenu(MF_SEPARATOR);
}
pMenu->AppendMenuW(MF_STRING, (CustomFriendStartId + PromptForCustom), theApp.m_Language.GetString("prompt_for_name", "Prompt For Name"));
}
void CCustomFriendsHelper::Add(CString item, CString desc)
{
int count = (int)m_list.size();
if (count < MaxCustomFriends)
{
Name_Desc array_item;
array_item.m_name = item;
array_item.m_desc = desc;
m_list.push_back(array_item);
Save();
}
}
CString CCustomFriendsHelper::GetSendTo(int id, bool &showDlg)
{
int index = id - CustomFriendStartId;
if (index >= 0 && index < m_list.size())
{
return m_list[index].m_name;
}
if (index == PromptForCustom)
{
showDlg = true;
}
return _T("");
}
void CCustomFriendsHelper::ClearList()
{
m_list.clear();
this->Save();
}