From 931a7dc1ac0dbc7e6c1083583ced915e572f5b47 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Sat, 2 Mar 2019 12:32:44 +0300 Subject: all protocols (even virtual ones) moved to the Protocols folder --- plugins/Weather/src/weather_info.cpp | 240 ----------------------------------- 1 file changed, 240 deletions(-) delete mode 100644 plugins/Weather/src/weather_info.cpp (limited to 'plugins/Weather/src/weather_info.cpp') diff --git a/plugins/Weather/src/weather_info.cpp b/plugins/Weather/src/weather_info.cpp deleted file mode 100644 index 525b473b57..0000000000 --- a/plugins/Weather/src/weather_info.cpp +++ /dev/null @@ -1,240 +0,0 @@ -/* -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 . -*/ - - -/* -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 = { 0 }; - 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; - switch (Item->Data.InternalVer) { - case 1: lvi.pszText = L"1.0"; break; - case 2: lvi.pszText = L"1.1"; break; - case 3: lvi.pszText = L"1.1a"; break; - case 4: lvi.pszText = L"1.2"; break; - case 5: lvi.pszText = L"1.3"; break; - case 6: lvi.pszText = L"1.4"; break; - case 7: lvi.pszText = L"1.5"; break; - default: lvi.pszText = L""; break; - } - 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 = { 0 }; - - 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 -void GetINIInfo(wchar_t *pszSvc) -{ - wchar_t str2[2048]; - WIDATA *sData = GetWIData(pszSvc); - // if the service does not exist among the loaded INI's - if (sData == nullptr) { - mir_snwprintf(str2, TranslateT("The corresponding INI file for \"%s\" is not found."), pszSvc); - MessageBox(nullptr, str2, TranslateT("Weather INI information"), MB_OK | MB_ICONINFORMATION); - } - // if exist, get the information - else { - mir_snwprintf(str2, TranslateT("Weather INI information for \"%s\":"), pszSvc); - mir_wstrncat(str2, L"\n\n", _countof(str2) - mir_wstrlen(str2)); - mir_wstrncat(str2, TranslateT("Name:"), _countof(str2) - mir_wstrlen(str2)); - mir_wstrncat(str2, L"\t\t", _countof(str2) - mir_wstrlen(str2)); - mir_wstrncat(str2, sData->DisplayName, _countof(str2) - mir_wstrlen(str2)); - mir_wstrncat(str2, L"\n", _countof(str2) - mir_wstrlen(str2)); - mir_wstrncat(str2, TranslateT("Internal Name:"), _countof(str2) - mir_wstrlen(str2)); - mir_wstrncat(str2, L"\t", _countof(str2) - mir_wstrlen(str2)); - mir_wstrncat(str2, sData->InternalName, _countof(str2) - mir_wstrlen(str2)); - mir_wstrncat(str2, L"\n", _countof(str2) - mir_wstrlen(str2)); - mir_wstrncat(str2, TranslateT("Author:"), _countof(str2) - mir_wstrlen(str2)); - mir_wstrncat(str2, L"\t\t", _countof(str2) - mir_wstrlen(str2)); - mir_wstrncat(str2, sData->Author, _countof(str2) - mir_wstrlen(str2)); - mir_wstrncat(str2, L"\n", _countof(str2) - mir_wstrlen(str2)); - mir_wstrncat(str2, TranslateT("Version:"), _countof(str2) - mir_wstrlen(str2)); - mir_wstrncat(str2, L"\t\t", _countof(str2) - mir_wstrlen(str2)); - mir_wstrncat(str2, sData->Version, _countof(str2) - mir_wstrlen(str2)); - mir_wstrncat(str2, L"\n", _countof(str2) - mir_wstrlen(str2)); - mir_wstrncat(str2, TranslateT("INI Version:"), _countof(str2) - mir_wstrlen(str2)); - mir_wstrncat(str2, L"\t", _countof(str2) - mir_wstrlen(str2)); - switch (sData->InternalVer) { - case 1: mir_wstrncat(str2, L"1.0", _countof(str2) - mir_wstrlen(str2)); break; - case 2: mir_wstrncat(str2, L"1.1", _countof(str2) - mir_wstrlen(str2)); break; - case 3: mir_wstrncat(str2, L"1.1a", _countof(str2) - mir_wstrlen(str2)); break; - case 4: mir_wstrncat(str2, L"1.2", _countof(str2) - mir_wstrlen(str2)); break; - case 5: mir_wstrncat(str2, L"1.3", _countof(str2) - mir_wstrlen(str2)); break; - case 6: mir_wstrncat(str2, L"1.4", _countof(str2) - mir_wstrlen(str2)); break; - case 7: mir_wstrncat(str2, L"1.5", _countof(str2) - mir_wstrlen(str2)); break; - } - mir_wstrncat(str2, L"\n", _countof(str2) - mir_wstrlen(str2)); - mir_wstrncat(str2, TranslateT("File Name:"), _countof(str2) - mir_wstrlen(str2)); - mir_wstrncat(str2, L"\t", _countof(str2) - mir_wstrlen(str2)); - mir_wstrncat(str2, sData->ShortFileName, _countof(str2) - mir_wstrlen(str2)); - mir_wstrncat(str2, L"\n", _countof(str2) - mir_wstrlen(str2)); - mir_wstrncat(str2, TranslateT("Item Count:"), _countof(str2) - mir_wstrlen(str2)); - mir_snwprintf(str2, L"%s\t%i\n", str2, sData->UpdateDataCount); - mir_wstrncat(str2, TranslateT("Memory Used:"), _countof(str2) - mir_wstrlen(str2)); - mir_snwprintf(str2, L"%s\t%i ", str2, sData->MemUsed); - mir_wstrncat(str2, TranslateT("bytes"), _countof(str2) - mir_wstrlen(str2)); - mir_wstrncat(str2, L"\n\n", _countof(str2) - mir_wstrlen(str2)); - mir_wstrncat(str2, TranslateT("Description:"), _countof(str2) - mir_wstrlen(str2)); - mir_wstrncat(str2, L"\n", _countof(str2) - mir_wstrlen(str2)); - mir_wstrncat(str2, sData->Description, _countof(str2) - mir_wstrlen(str2)); - - // display the message box and quit - MessageBox(nullptr, str2, 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) -{ - wchar_t str[10240], tempstr[1024]; - - // heading - wcsncpy(str, VARS_LIST, _countof(str) - 1); - mir_wstrncat(str, L"\n\n", _countof(str) - mir_wstrlen(str)); - // loop through all weather services to find custom variables - 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 "%[]" - // ignore the "hi" item and hidden items - if (mir_wstrcmp(WItem->Item.Name, L"Ignore") && WItem->Item.Name[0] != '#') { - mir_snwprintf(tempstr, L"%c[%s]", '%', WItem->Item.Name); - wchar_t *find = wcsstr(str, tempstr); - // if the custom variable does not exist in the list, add it to the list - if (find == nullptr) { - mir_wstrncat(str, tempstr, _countof(str) - mir_wstrlen(str)); - mir_wstrncat(str, L", ", _countof(str) - mir_wstrlen(str)); - } - } - } - } - // remove the last comma in the list - wchar_t* find = wcsrchr(str, ','); - if (find != nullptr) - *find = '\0'; - - // display the list in a message box - MessageBox(nullptr, str, TranslateT("More Variables"), MB_OK | MB_ICONINFORMATION | MB_TOPMOST); -} - -- cgit v1.2.3