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
|
/*
Fingerprint NG (client version) icons module for Miranda NG
Copyright © 2006-12 ghazan, mataes, HierOS, FYR, Bio, nullbie, faith_healer and all respective contributors.
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.
*/
//Start of header
#include "global.h"
struct
{
int idCtrl, defValue;
LPCSTR szSetName;
}
static settings[] =
{
{IDC_GROUP_MIRANDA, TRUE, "GroupMiranda"},
{IDC_GROUP_MIRANDA_VERSION, FALSE, "GroupMirandaVersion"},
{IDC_GROUP_MIRANDA_PACKS, TRUE, "GroupMirandaPacks"},
{IDC_GROUP_MULTI, TRUE, "GroupMulti"},
{IDC_GROUP_AIM, TRUE, "GroupAIM"},
{IDC_GROUP_GG, TRUE, "GroupGG"},
{IDC_GROUP_ICQ, TRUE, "GroupICQ"},
{IDC_GROUP_IRC, TRUE, "GroupIRC"},
{IDC_GROUP_JABBER, TRUE, "GroupJabber"},
{IDC_GROUP_MRA, TRUE, "GroupMRA"},
{IDC_GROUP_MSN, TRUE, "GroupMSN"},
{IDC_GROUP_QQ, TRUE, "GroupQQ"},
{IDC_GROUP_RSS, TRUE, "GroupRSS"},
{IDC_GROUP_TLEN, TRUE, "GroupTlen"},
{IDC_GROUP_WEATHER, TRUE, "GroupWeather"},
{IDC_GROUP_YAHOO, TRUE, "GroupYahoo"},
{IDC_GROUP_OTHER_PROTOS, TRUE, "GroupOtherProtos"},
{IDC_GROUP_OTHERS, TRUE, "GroupOthers"},
{IDC_GROUP_OVERLAYS_RESOURCE, TRUE, "GroupOverlaysResource"},
{IDC_GROUP_OVERLAYS_PLATFORM, TRUE, "GroupOverlaysPlatform"},
{IDC_GROUP_OVERLAYS_UNICODE, TRUE, "GroupOverlaysUnicode"},
{IDC_GROUP_OVERLAYS_PROTO, TRUE, "GroupOverlaysProtos"},
{IDC_GROUP_OVERLAYS_SECURITY, TRUE, "GroupOverlaysSecurity"},
{IDC_STATUSBAR, TRUE, "StatusBarIcon"}
};
/*static void OptDlgChanged(HWND hwndDlg, BOOL show)
{
if (show)
ShowWindow(GetDlgItem(hwndDlg, IDC_OPTCHANGENOTE), SW_SHOW);
SendMessage(GetParent(hwndDlg), PSM_CHANGED, 0, 0);
}*/
static void LoadDBCheckState(HWND hwndDlg, int idCtrl, LPCSTR szSetting, BYTE bDef)
{
CheckDlgButton(hwndDlg, idCtrl, db_get_b(NULL, MODULENAME, szSetting, bDef));
}
static void StoreDBCheckState(HWND hwndDlg, int idCtrl, LPCSTR szSetting)
{
db_set_b(NULL, MODULENAME, szSetting, (BYTE)IsDlgButtonChecked(hwndDlg, idCtrl));
}
static INT_PTR CALLBACK DlgProcOptions(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam)
{
int i;
switch(msg) {
case WM_INITDIALOG:
TranslateDialogDefault(hwndDlg);
for (i=0; i < SIZEOF(settings); i++)
LoadDBCheckState(hwndDlg, settings[i].idCtrl, settings[i].szSetName, settings[i].defValue);
break;
case WM_COMMAND:
if ( HIWORD(wParam) == BN_CLICKED)
for (i=0; i < SIZEOF(settings); i++)
if (settings[i].idCtrl == LOWORD(wParam)) {
SendMessage(GetParent(hwndDlg), PSM_CHANGED, 0, 0);
break;
}
break;
case WM_NOTIFY:
NMHDR *hdr = (NMHDR *)lParam;
if (hdr && hdr->code == PSN_APPLY) {
for (i=0; i < SIZEOF(settings); i++)
StoreDBCheckState(hwndDlg, settings[i].idCtrl, settings[i].szSetName);
ClearFI();
RegisterIcons();
for (MCONTACT hContact = db_find_first(); hContact; hContact = db_find_next(hContact))
OnExtraImageApply(hContact, 0);
}
break;
}
return FALSE;
}
int OnOptInitialise(WPARAM wParam, LPARAM lParam)
{
OPTIONSDIALOGPAGE odp = { sizeof(odp) };
odp.hInstance = g_hInst;
odp.ptszGroup = LPGENT("Icons");
odp.pszTemplate = MAKEINTRESOURCEA(IDD_DIALOG);
odp.ptszTitle = LPGENT("Fingerprint");
odp.pfnDlgProc = DlgProcOptions;
odp.flags = ODPF_BOLDGROUPS | ODPF_TCHAR;
Options_AddPage(wParam, &odp);
return 0;
}
|