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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
|
/*
Weather Protocol plugin for Miranda IM
Copyright (c) 2012 Miranda NG team
Copyright (c) 2005-2011 Boris Krasnovskiy All Rights Reserved
Copyright (c) 2002-2005 Calvin Che
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; version 2
of the License.
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, see <http://www.gnu.org/licenses/>.
*/
/*
This file contain the source for displaying information for the
ini files, as well as function that are used for debug purpose
regrading the loading of ini contents
*/
#include "stdafx.h"
//============ INI INFORMATION ============
// List INI Information for all loaded INI files
static void INIInfo(HWND hwndDlg)
{
wchar_t str[16];
size_t memused = 0;
HWND hIniList = GetDlgItem(hwndDlg, IDC_INFOLIST);
ListView_DeleteAllItems(hIniList);
LVITEM lvi = {};
lvi.mask = LVIF_TEXT;
lvi.iItem = 0;
for (WIDATALIST *Item = WIHead; Item != nullptr; Item = Item->next) {
// get the data for the ini file
lvi.iSubItem = 0;
lvi.pszText = Item->Data.InternalName;
ListView_InsertItem(hIniList, &lvi);
lvi.iSubItem = 1;
lvi.pszText = Item->Data.Author;
ListView_SetItem(hIniList, &lvi);
lvi.iSubItem = 2;
lvi.pszText = Item->Data.Version;
ListView_SetItem(hIniList, &lvi);
lvi.iSubItem = 3;
lvi.pszText = GetINIVersionNum(Item->Data.InternalVer);
ListView_SetItem(hIniList, &lvi);
lvi.iSubItem = 4;
lvi.pszText = _ltow(Item->Data.UpdateDataCount, str, 10);
ListView_SetItem(hIniList, &lvi);
lvi.iSubItem = 5;
lvi.pszText = Item->Data.DisplayName;
ListView_SetItem(hIniList, &lvi);
lvi.iSubItem = 6;
lvi.pszText = Item->Data.ShortFileName;
ListView_SetItem(hIniList, &lvi);
memused += Item->Data.MemUsed;
++lvi.iItem;
}
SetDlgItemText(hwndDlg, IDC_INICOUNT, _itow(lvi.iItem, str, 10));
SetDlgItemText(hwndDlg, IDC_MEMUSED, _ltow((long)memused, str, 10));
}
static const struct tag_Columns
{
const wchar_t *name;
unsigned size;
}
columns[] =
{
{ LPGENW("Name"), 70 },
{ LPGENW("Author"), 100 },
{ LPGENW("File Version"), 70 },
{ LPGENW("INI Version"), 70 },
{ LPGENW("Items"), 40 },
{ LPGENW("Display Name"), 200 },
{ LPGENW("File Name"), 150 },
};
INT_PTR CALLBACK DlgProcINIPage(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM)
{
switch (msg) {
case WM_INITDIALOG:
TranslateDialogDefault(hwndDlg);
{
HWND hIniList = GetDlgItem(hwndDlg, IDC_INFOLIST);
LVCOLUMN lvc = {};
lvc.mask = LVCF_FMT | LVCF_SUBITEM | LVCF_TEXT | LVCF_WIDTH;
lvc.fmt = LVCFMT_LEFT;
for (int i = 0; i < 7; ++i) {
lvc.iSubItem = i;
lvc.pszText = TranslateW(columns[i].name);
lvc.cx = columns[i].size;
ListView_InsertColumn(hIniList, i, &lvc);
}
INIInfo(hwndDlg);
}
break;
case WM_DESTROY:
break;
case WM_COMMAND:
if (HIWORD(wParam) == BN_CLICKED &&
LOWORD(wParam) == IDC_RELOADINI) {
DestroyWIList();
LoadWIData(true);
INIInfo(hwndDlg);
}
break;
}
return 0;
}
// get the info of individual ini file
// pszSvc = the internal name of the service to get the data
wchar_t* GetINIVersionNum(int iVersion)
{
switch (iVersion) {
case 1: return L"1.0";
case 2: return L"1.1";
case 3: return L"1.1a";
case 4: return L"1.2";
case 5: return L"1.3";
case 6: return L"1.4";
case 7: return L"1.5";
}
return L"";
}
void GetINIInfo(wchar_t *pszSvc)
{
CMStringW str;
WIDATA *sData = GetWIData(pszSvc);
// if the service does not exist among the loaded INI's
if (sData == nullptr) {
str.Format(TranslateT("The corresponding INI file for \"%s\" is not found."), pszSvc);
}
// if exist, get the information
else {
str.AppendFormat(TranslateT("Weather INI information for \"%s\":"), pszSvc);
str += L"\n\n";
str.AppendFormat(L"%s\t%s\n", TranslateT("Name:"), sData->DisplayName);
str.AppendFormat(L"%s\t%s\n", TranslateT("Internal Name:"), sData->InternalName);
str.AppendFormat(L"%s\t%s\n", TranslateT("Author:"), sData->Author);
str.AppendFormat(L"%s\t%s\n", TranslateT("Version:"), sData->Version);
str.AppendFormat(L"%s\t%s\n", TranslateT("INI Version:"), GetINIVersionNum(sData->InternalVer));
str.AppendFormat(L"%s\t%s\n", TranslateT("File Name:"), sData->ShortFileName);
str.AppendFormat(L"%s\t%i\n", TranslateT("Item Count:"), sData->UpdateDataCount);
str.AppendFormat(L"%s\t%i %s\n\n", TranslateT("Memory Used:"), (int)sData->MemUsed, TranslateT("bytes"));
str.AppendFormat(L"%s\n%s", TranslateT("Description:"), sData->Description);
}
MessageBox(nullptr, str, TranslateT("Weather INI information"), MB_OK | MB_ICONINFORMATION);
}
//============ DISPLAY A LIST FOR CUSTOM VARIABLES ============
//
// a message box for displaying the list of custom variables
// can be found when click on "More" in text option dialog
void MoreVarList(void)
{
// heading
CMStringW str(TranslateT("Here is a list of custom variables that are currently available"));
str += L"\n\n";
// loop through all weather services to find custom variables
bool bFirst = true;
for (WIDATALIST *Item = WIHead; Item != nullptr; Item = Item->next) {
// loop through all update items in a service
for (WIDATAITEMLIST *WItem = Item->Data.UpdateData; WItem != nullptr; WItem = WItem->Next) {
// the custom variable is defined as "%[<variable name>]"
// ignore the "hi" item and hidden items
if (mir_wstrcmp(WItem->Item.Name, L"Ignore") && WItem->Item.Name[0] != '#') {
wchar_t tempstr[1024];
mir_snwprintf(tempstr, L"%c[%s]", '%', WItem->Item.Name);
auto *find = wcsstr(str, tempstr);
// if the custom variable does not exist in the list, add it to the list
if (find == nullptr) {
if (bFirst)
bFirst = false;
else
str += L", ";
str += tempstr;
}
}
}
}
// display the list in a message box
MessageBox(nullptr, str, TranslateT("More Variables"), MB_OK | MB_ICONINFORMATION | MB_TOPMOST);
}
|