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
|
/*
Miranda Text Control - Plugin for Miranda IM
Copyright (C) 2005 Victor Pavlychko (nullbie@gmail.com)
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
*/
#include "headers.h"
HANDLE htuDefault = 0;
TextUser *textUserFirst=0;
TextUser *textUserLast=0;
void LoadTextUsers()
{
htuDefault = MTI_TextUserAdd("Text Controls", MTEXT_FANCY_MASK);
}
void UnloadTextUsers()
{
while (textUserFirst)
{
delete [] textUserFirst->name;
TextUser *next = textUserFirst->next;
delete [] textUserFirst;
textUserFirst = next;
}
}
HANDLE DLL_CALLCONV
MTI_TextUserAdd(const char *userTitle, DWORD options)
{
TextUser *textUserNew = new TextUser;
textUserNew->name = new char [lstrlenA(userTitle)+1];
lstrcpyA(textUserNew->name, userTitle);
textUserNew->options =
(DBGetContactSettingDword(0, MODULNAME, userTitle, options)&MTEXT_FANCY_MASK) | (textUserNew->options&MTEXT_SYSTEM_MASK);
DBWriteContactSettingDword(0, MODULNAME, userTitle, textUserNew->options);
textUserNew->prev = textUserLast;
textUserNew->next = 0;
if (textUserLast)
{
textUserLast->next = textUserNew;
textUserLast = textUserNew;
} else
{
textUserFirst = textUserLast = textUserNew;
}
return (HANDLE)textUserNew;
}
DWORD TextUserGetOptions(HANDLE userHandle)
{
if (!userHandle) return 0;
return ((TextUser *)userHandle)->options;
}
void TextUserSetOptions(HANDLE userHandle, DWORD options)
{
if (!userHandle) return;
((TextUser *)userHandle)->options = options;
}
void TextUsersSave()
{
for (TextUser *textUser = textUserFirst; textUser; textUser = textUser->next)
DBWriteContactSettingDword(0, MODULNAME, textUser->name, textUser->options);
}
void TextUsersReset()
{
for (TextUser *textUser = textUserFirst; textUser; textUser = textUser->next)
textUser->options =
(DBGetContactSettingDword(0, MODULNAME, textUser->name, 0)&MTEXT_FANCY_MASK) | (textUser->options&MTEXT_SYSTEM_MASK);
}
|