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
|
/*
Fingerprint NG (client version) icons module for Miranda NG
Copyright © 2006-18 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.
*/
#pragma once
#define _CRT_SECURE_NO_DEPRECATE
//Start of header
// Native include
#include <windows.h>
#include <malloc.h>
// Miranda IM SDK includes
#include <newpluginapi.h>
#include <win2k.h>
#include <m_database.h>
#include <m_langpack.h>
#include <m_icolib.h>
#include <m_protocols.h>
#include <m_userinfo.h>
#include <m_extraicons.h>
#include <m_message.h>
#include <m_metacontacts.h>
#include <m_gui.h>
#include <m_fingerprint.h>
//plugins header
#include "version.h"
#include "resource.h"
struct RGBA
{
BYTE b;
BYTE g;
BYTE r;
BYTE a;
};
struct KN_FP_MASK
{
LPSTR szIconName;
LPTSTR szMask;
LPTSTR szClientDescription;
int iIconIndex;
int iSectionFlag;
BOOL fNotUseOverlay;
HANDLE hIcolibItem;
LPTSTR szMaskUpper;
};
struct FOUNDINFO
{
int iBase, iOverlay;
HANDLE hRegisteredImage;
};
#define MIRANDA_CASE 3001 // Miranda clients
#define MIRANDA_VERSION_CASE 3002 // Miranda version overlays
#define MIRANDA_PACKS_CASE 3003 // Miranda packs overlays
#define MULTI_CASE 3004 // multi-protocol clients
#define GG_CASE 3006 // Gadu-Gadu clients
#define ICQ_CASE 3008 // ICQ clients
#define IRC_CASE 3009 // IRC clients
#define JABBER_CASE 3010 // Jabber clients
#define MSN_CASE 3012 // MSN clients
#define QQ_CASE 3013 // QQ clients (+ versions)
#define RSS_CASE 3014 // RSS clients
#define WEATHER_CASE 3016 // Weather clients
#define FACEBOOK_CASE 3018 // acebook clients
#define VK_CASE 3019 // K clients
#define OTHER_PROTOS_CASE 3020 // other protocols
#define OTHERS_CASE 3021 // other icons
#define OVERLAYS_RESOURCE_CASE 3022 // resource overlays
#define OVERLAYS_PLATFORM_CASE 3023 // platforms overlays
#define OVERLAYS_PROTO_CASE 3024 // protocols overlays
#define OVERLAYS_UNICODE_CASE 3025 // unicode overlay
#define OVERLAYS_SECURITY_CASE 3026 // security overlays
#define PtrIsValid(p) (((p)!=0)&&(((HANDLE)(p))!=INVALID_HANDLE_VALUE))
#define SAFE_FREE(p) {if (PtrIsValid(p)){free((VOID*)p);(p)=NULL;}}
#define LIB_REG 2
#define LIB_USE 3
#define MODULENAME "Finger"
#define DEFAULT_SKIN_FOLDER L"Icons\\Fp_icons.dll"
struct CMPlugin : public PLUGIN<CMPlugin>
{
CMPlugin();
int Load() override;
int Unload() override;
};
void ClearFI();
void InitFingerModule(void);
int OnOptInitialise(WPARAM wParam, LPARAM lParam);
int OnExtraImageApply(WPARAM wParam, LPARAM lParam);
HICON __fastcall CreateJoinedIcon(HICON hBottom, HICON hTop);
HBITMAP __inline CreateBitmap32(int cx, int cy);
HBITMAP __fastcall CreateBitmap32Point(int cx, int cy, LPVOID* bits);
HANDLE __fastcall GetIconIndexFromFI(LPTSTR szMirVer);
BOOL __fastcall WildCompare(LPWSTR name, LPWSTR mask);
void RegisterIcons();
extern HANDLE hHeap;
extern KN_FP_MASK
def_kn_fp_mask[],
def_kn_fp_overlays_mask[],
def_kn_fp_overlays1_mask[],
def_kn_fp_overlays2_mask[],
def_kn_fp_overlays3_mask[],
def_kn_fp_overlays4_mask[];
extern int DEFAULT_KN_FP_MASK_COUNT, DEFAULT_KN_FP_OVERLAYS_COUNT, DEFAULT_KN_FP_OVERLAYS2_COUNT, DEFAULT_KN_FP_OVERLAYS3_COUNT, DEFAULT_KN_FP_OVERLAYS4_COUNT;
#define UNKNOWN_MASK_NUMBER (DEFAULT_KN_FP_MASK_COUNT - 2) // second from end
#define NOTFOUND_MASK_NUMBER (DEFAULT_KN_FP_MASK_COUNT - 3) // third from end
// the last count is how many masks from 2nd layer is used as Miranda version overlays (counting from the end)
#define DEFAULT_KN_FP_OVERLAYS2_NO_VER_COUNT (DEFAULT_KN_FP_OVERLAYS2_COUNT - 13)
#define DEFAULT_KN_FP_OVERLAYS3_NO_UNICODE_COUNT (DEFAULT_KN_FP_OVERLAYS3_COUNT - 1)
class COptDialog : public CDlgBase
{
private:
CCtrlCheck m_chkMiranda, m_chkMirandaPacks, m_chkMirandaVer, m_chkOverRes, m_chkOverPlatf, m_chkOverProto, m_chkOverUnicode, m_chkOverSecur,
m_chkFacebbok, m_chkGG, m_chkICQ, m_chkIRC, m_chkJabber, m_chkMSN, m_chkQQ, m_chkRSS, m_chkVK, m_chkWeather, m_chkMulti, m_chkOthersProto,
m_chkOthers, m_chkStatusBar;
protected:
bool OnInitDialog() override;
bool OnApply() override;
void LoadDBCheckState(int idCtrl, LPCSTR szSetting, BYTE bDef);
void StoreDBCheckState(int idCtrl, LPCSTR szSetting);
public:
COptDialog();
};
|