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
|
/*
Miranda plugin template, originally by Richard Hughes
http://miranda-icq.sourceforge.net/
This file is placed in the public domain. Anybody is free to use or
modify it as they wish with no restriction.
There is no warranty.
*/
#include "win.h"
#include "options.h"
HINSTANCE hInst;
PLUGINLINK *pluginLink;
MM_INTERFACE memoryManagerInterface;
HANDLE hEventClistDblClick, hEventWindow, hEventIconChanged;
typedef LRESULT (CALLBACK *WNDPROC)(HWND, UINT, WPARAM, LPARAM);
PLUGININFO pluginInfo={
sizeof(PLUGININFO),
MODULE,
PLUGIN_MAKE_VERSION(0,0,2,2),
"Put SRMM windows into a single frame",
"Scott Ellis",
"mail@scottellis.com.au",
"© 2006 Scott Ellis",
"http://scottellis.com.au",
0, //not transient
0 //doesn't replace anything built-in
};
extern "C" BOOL WINAPI DllMain(HINSTANCE hinstDLL,DWORD fdwReason,LPVOID lpvReserved)
{
hInst=hinstDLL;
return TRUE;
}
extern "C" __declspec(dllexport) PLUGININFO* MirandaPluginInfo(DWORD mirandaVersion)
{
return &pluginInfo;
}
static int CALLBACK PopupDlgProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
{
switch(message) {
case WM_COMMAND:
if (HIWORD(wParam) == STN_CLICKED) { //It was a click on the Popup.
PUDeletePopUp(hWnd);
return TRUE;
}
break;
case UM_FREEPLUGINDATA: {
//MY_PLUGIN_DATA * mpd = NULL;
//mpd = (MY_PLUGIN_DATA*)CallService(MS_POPUP_GETPLUGINDATA, (WPARAM)hWnd,(LPARAM)mpd);
//if (mdp > 0) free(mpd);
return TRUE; //TRUE or FALSE is the same, it gets ignored.
}
default:
break;
}
return DefWindowProc(hWnd, message, wParam, lParam);
}
void ShowPopup(HANDLE hContact, const char *msg) {
if(ServiceExists(MS_POPUP_ADDPOPUP)) {
POPUPDATAEX ppd;
char *lpzContactName;
ZeroMemory(&ppd, sizeof(ppd)); //This is always a good thing to do.
ppd.lchContact = hContact; //Be sure to use a GOOD handle, since this will not be checked.
ppd.lchIcon = LoadSkinnedIcon(SKINICON_EVENT_MESSAGE);
lpzContactName = (char *)CallService(MS_CLIST_GETCONTACTDISPLAYNAME,(WPARAM)hContact,0);
lstrcpy(ppd.lpzContactName, lpzContactName);
lstrcpy(ppd.lpzText, msg);
ppd.colorBack = GetSysColor(COLOR_BTNFACE);;
ppd.colorText = RGB(0,0,0);
ppd.PluginWindowProc = (WNDPROC)PopupDlgProc;
ppd.PluginData = 0;
ppd.iSeconds = 3;
//Now that every field has been filled, we want to see the popup.
CallService(MS_POPUP_ADDPOPUPEX, (WPARAM)&ppd, 0);
}
}
int WindowEvent(WPARAM wParam, LPARAM lParam) {
MessageWindowEventData *ed = (MessageWindowEventData *)lParam;
char *proto = (char *)CallService(MS_PROTO_GETCONTACTBASEPROTO, (WPARAM)ed->hContact, 0);
if(proto && DBGetContactSettingByte(ed->hContact, proto, "ChatRoom", 0)) return 0; // ignore chat room contacts
switch(ed->uType) {
case MSG_WINDOW_EVT_OPENING:
SendMessage(pluginwind, WM_PREADDCHILD, (WPARAM)ed->hwndWindow, (LPARAM)ed->hContact);
break;
case MSG_WINDOW_EVT_OPEN:
PostMessage(pluginwind, WM_ADDCHILD, (WPARAM)ed->hwndWindow, (LPARAM)ed->hContact);
break;
case MSG_WINDOW_EVT_CLOSING:
SendMessage(pluginwind, WM_REMCHILD, (WPARAM)ed->hwndWindow, (LPARAM)ed->hContact);
break;
}
return 0;
}
int ClistDblClick(WPARAM wParam, LPARAM lParam) {
PostMessage(pluginwind, WM_SHOWCONTACTWND, wParam, 0);
return 0;
}
int ContactIconChanged(WPARAM wParam, LPARAM lParam) {
PostMessage(pluginwind, WM_RESETTABICONS, wParam, lParam);
return 0;
}
static int MainInit(WPARAM wParam,LPARAM lParam) {
if(ServiceExists(MS_UPDATE_REGISTER)) {
// register with updater
Update update = {0};
char szVersion[16];
update.cbSize = sizeof(Update);
update.szComponentName = pluginInfo.shortName;
update.pbVersion = (BYTE *)CreateVersionString(pluginInfo.version, szVersion);
update.cpbVersion = strlen((char *)update.pbVersion);
update.szUpdateURL = UPDATER_AUTOREGISTER;
// these are the three lines that matter - the archive, the page containing the version string, and the text (or data)
// before the version that we use to locate it on the page
// (note that if the update URL and the version URL point to standard file listing entries, the backend xml
// data will be used to check for updates rather than the actual web page - this is not true for beta urls)
update.szBetaUpdateURL = "http://www.scottellis.com.au/miranda_plugins/justtabs.zip";
update.szBetaVersionURL = "http://www.scottellis.com.au/miranda_plugins/ver_justtabs.html";
update.pbBetaVersionPrefix = (BYTE *)MODULE " version ";
update.cpbBetaVersionPrefix = strlen((char *)update.pbBetaVersionPrefix);
CallService(MS_UPDATE_REGISTER, 0, (WPARAM)&update);
}
// plugin only works for srmm classic
if(GetModuleHandle("srmm")) {
CreateFrame((HWND)CallService(MS_CLUI_GETHWND, 0, 0), hInst);
hEventWindow = HookEvent(ME_MSG_WINDOWEVENT, WindowEvent);
hEventClistDblClick = HookEvent(ME_CLIST_DOUBLECLICKED, ClistDblClick);
hEventIconChanged = HookEvent(ME_CLIST_CONTACTICONCHANGED, ContactIconChanged);
}
return 0;
}
static int MainDeInit(WPARAM wParam, LPARAM lParam) {
if(hEventWindow) UnhookEvent(hEventWindow);
if(hEventClistDblClick) UnhookEvent(hEventClistDblClick);
if(hEventIconChanged) UnhookEvent(hEventIconChanged);
if(pluginwind) {
DestroyWindow(pluginwind);
pluginwind = 0;
}
return 0;
}
static int DbEventAdded(WPARAM wParam, LPARAM lParam) {
DBEVENTINFO dbei;
ZeroMemory(&dbei, sizeof(dbei));
dbei.cbSize = sizeof(dbei);
dbei.cbBlob = 0;
CallService(MS_DB_EVENT_GET, lParam, (LPARAM) & dbei);
if((dbei.flags & DBEF_READ) || (dbei.flags & DBEF_SENT))
return 0;
SendMessage(pluginwind, WM_HIGHLIGHTCONTACTWND, wParam, 0);
//SendMessage(pluginwind, WM_SHOWCONTACTWND, wParam, 0);
return 0;
}
extern "C" int __declspec(dllexport) Load(PLUGINLINK *link)
{
pluginLink = link;
CallService(MS_SYSTEM_GET_MMI, 0, (LPARAM)&memoryManagerInterface);
HookEvent(ME_SYSTEM_MODULESLOADED,MainInit);
HookEvent(ME_SYSTEM_PRESHUTDOWN, MainDeInit);
HookEvent(ME_DB_EVENT_ADDED, DbEventAdded);
InitOptions();
return 0;
}
extern "C" int __declspec(dllexport) Unload(void)
{
return 0;
}
|