summaryrefslogtreecommitdiff
path: root/plugins/FingerprintNG/src/options.cpp
blob: 42ff9e0b648741b2bdbb24232051228875f2d6f9 (plain)
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
/*
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 _settingsInfo
{
	int idCtrl;
	LPCSTR szSetName;
}
static settings [] =
{
	{IDC_GROUP_MIRANDA,				"GroupMiranda"},
	{IDC_GROUP_MIRANDA_VERSION,		"GroupMirandaVersion"},
	{IDC_GROUP_MIRANDA_PACKS,		"GroupMirandaPacks"},
	
	{IDC_GROUP_MULTI,				"GroupMulti"},
	{IDC_GROUP_AIM,			   		"GroupAIM"},
	{IDC_GROUP_GG,			   		"GroupGG"},
	{IDC_GROUP_ICQ,			   		"GroupICQ"},
	{IDC_GROUP_IRC,			   		"GroupIRC"},
	{IDC_GROUP_JABBER,		   		"GroupJabber"},
	{IDC_GROUP_MRA,			   		"GroupMRA"},
	{IDC_GROUP_MSN,			   		"GroupMSN"},
	{IDC_GROUP_QQ,			   		"GroupQQ"},
	{IDC_GROUP_RSS,			   		"GroupRSS"},
	{IDC_GROUP_TLEN,				"GroupTlen"},
	{IDC_GROUP_WEATHER,				"GroupWeather"},
	{IDC_GROUP_YAHOO,				"GroupYahoo"},
	
	{IDC_GROUP_OTHER_PROTOS,		"GroupOtherProtos"},
	{IDC_GROUP_OTHERS,				"GroupOthers"},

	{IDC_GROUP_OVERLAYS_RESOURCE,	"GroupOverlaysResource"},
	{IDC_GROUP_OVERLAYS_PLATFORM,	"GroupOverlaysPlatform"},
	{IDC_GROUP_OVERLAYS_PROTO,		"GroupOverlaysProtos"},
	{IDC_GROUP_OVERLAYS_SECURITY,	"GroupOtherProtos"},
//	{IDC_GROUP_OVERLAYS_RESOURCE_ALT,	"GroupOverlays"},

};

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,	"Finger", szSetting, bDef));
}

static void StoreDBCheckState(HWND hwndDlg, int idCtrl, LPCSTR szSetting)
{
	db_set_b(NULL,	"Finger", szSetting, (BYTE)IsDlgButtonChecked(hwndDlg, idCtrl));
}

static INT_PTR CALLBACK DlgProcOptions(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam)
{
	switch(msg) {
	case WM_INITDIALOG:
		{
			TranslateDialogDefault(hwndDlg);
			for (int i = 0; i < SIZEOF(settings); i++) {
				if (lstrcmpA(settings[i].szSetName,	"ShowVersion") == 0)
					LoadDBCheckState(hwndDlg, settings[i].idCtrl, settings[i].szSetName, 0);
				else
					LoadDBCheckState(hwndDlg, settings[i].idCtrl, settings[i].szSetName, 1);
			}

			ShowWindow(GetDlgItem(hwndDlg, IDC_OPTCHANGENOTE), SW_HIDE);
		}
		break;

	case WM_COMMAND:
		switch(LOWORD(wParam)) {
		
		case IDC_GROUP_MIRANDA:
		case IDC_GROUP_MIRANDA_VERSION:
		case IDC_GROUP_MIRANDA_PACKS:
//		case IDC_GROUP_OVERLAYS_RESOURCE_ALT:

			OptDlgChanged(hwndDlg, true);
			break;

		case IDC_GROUP_MULTI:
		case IDC_GROUP_AIM:
		case IDC_GROUP_GG:
		case IDC_GROUP_ICQ:
		case IDC_GROUP_IRC:
		case IDC_GROUP_JABBER:
		case IDC_GROUP_MRA:
		case IDC_GROUP_MSN:
		case IDC_GROUP_QQ:
		case IDC_GROUP_RSS:
		case IDC_GROUP_TLEN:
		case IDC_GROUP_WEATHER:
		case IDC_GROUP_YAHOO:
		
		case IDC_GROUP_OTHER_PROTOS:
		case IDC_GROUP_OTHERS:
		
		case IDC_GROUP_OVERLAYS_RESOURCE:
		case IDC_GROUP_OVERLAYS_PLATFORM:
		case IDC_GROUP_OVERLAYS_PROTO:
		case IDC_GROUP_OVERLAYS_SECURITY:

			OptDlgChanged(hwndDlg, false);
			break;

		default:
			return 0;
		}
		break;

	case WM_NOTIFY:
		{
			NMHDR *hdr = (NMHDR *)lParam;
			if (hdr && hdr->code == PSN_APPLY) {
				for (int i = 0; i < SIZEOF(settings); i++)
					StoreDBCheckState(hwndDlg, settings[i].idCtrl, settings[i].szSetName);

				ClearFI();
				RegisterIcons();
			}
		}
		break;
	}
	return FALSE;
}

int OnOptInitialise(WPARAM wParam, LPARAM lParam)
{
	OPTIONSDIALOGPAGE odp = { 0 };
	odp.cbSize = sizeof(odp);
	odp.hInstance = g_hInst;
	odp.ptszGroup = LPGENT("Customize");
	odp.pszTemplate = MAKEINTRESOURCEA(IDD_DIALOG);
	odp.ptszTitle = LPGENT("Fingerprint");
	odp.pfnDlgProc = DlgProcOptions;
	odp.flags = ODPF_BOLDGROUPS|ODPF_TCHAR;;
	Options_AddPage(wParam, &odp);
	return 0;
}