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
|
//This file is part of Msg_Export a Miranda IM plugin
//Copyright (C)2002 Kennet Nielsen ( http://sourceforge.net/projects/msg-export/ )
//
//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., 675 Mass Ave, Cambridge, MA 02139, USA.
#include "stdafx.h"
CMPlugin g_plugin;
MWindowList hInternalWindowList = nullptr;
/////////////////////////////////////////////////////////////////////////////////////////
PLUGININFOEX pluginInfoEx = {
sizeof(PLUGININFOEX),
__PLUGIN_NAME,
PLUGIN_MAKE_VERSION(__MAJOR_VERSION, __MINOR_VERSION, __RELEASE_NUM, __BUILD_NUM),
__DESCRIPTION,
__AUTHOR,
__COPYRIGHT,
__AUTHORWEB,
UNICODE_AWARE,
// {46102B07-C215-4162-9C83-D377881DA7CC}
{ 0x46102b07, 0xc215, 0x4162, { 0x9c, 0x83, 0xd3, 0x77, 0x88, 0x1d, 0xa7, 0xcc } }
};
CMPlugin::CMPlugin() :
PLUGIN<CMPlugin>(MODULENAME, pluginInfoEx),
bUseJson(MODULENAME, "UseJson", false),
bUseIntViewer(MODULENAME, "UseInternalViewer", true),
bAppendNewLine(MODULENAME, "AppendNewLine", true),
bReplaceHistory(MODULENAME, "ReplaceHistory", false),
bUseAngleBrackets(MODULENAME, "UseLessAndGreaterInExport", false),
bUseUtf8InNewFiles(MODULENAME, "UseUtf8InNewFiles", true)
{}
/////////////////////////////////////////////////////////////////////////////////////////
// Services
static INT_PTR ShowExportHistory(WPARAM hContact, LPARAM)
{
if (g_plugin.bUseIntViewer)
bShowFileViewer(hContact);
else
bOpenExternaly(hContact);
return 0;
}
static INT_PTR ExportContactHistory(WPARAM hContact, LPARAM)
{
ExportDialogData* data = new ExportDialogData();
data->contacts.push_back(hContact);
data->Run();
return 0;
}
/////////////////////////////////////////////////////////////////////////////////////////
static int nSystemShutdown(WPARAM, LPARAM)
{
WindowList_Broadcast(hInternalWindowList, WM_CLOSE, 0, 0);
return 0;
}
static int OnModuleLoaded(WPARAM, LPARAM)
{
if (g_pDriver = GetDatabasePlugin("JSON"))
g_bUseJson = g_plugin.bUseJson;
else
g_bUseJson = false;
return 0;
}
int MainInit(WPARAM, LPARAM)
{
OnModuleLoaded(0, 0);
UpdateFileToColWidth();
CMenuItem mi(&g_plugin);
SET_UID(mi, 0x4e889089, 0x2304, 0x425f, 0x8f, 0xaa, 0x4f, 0x8a, 0x7b, 0x26, 0x4d, 0x4d); // {4E889089-2304-425F-8FAA-4F8A7B264D4D}
mi.hIcolibItem = g_plugin.getIconHandle(IDI_MAIN);
mi.position = 1000090101;
mi.name.a = LPGEN("Export history");
mi.pszService = MS_EXPORT_HISTORY;
Menu_AddContactMenuItem(&mi);
if (!g_plugin.bReplaceHistory) {
SET_UID(mi, 0x701c543, 0xd078, 0x41dd, 0x95, 0xe3, 0x96, 0x49, 0x8a, 0x72, 0xc7, 0x50);
mi.hIcolibItem = g_plugin.getIconHandle(IDI_MAIN);
mi.position = 1000090100;
mi.name.a = LPGEN("Open E&xported History");
mi.pszService = MS_SHOW_EXPORT_HISTORY;
Menu_AddContactMenuItem(&mi);
}
HookEvent(ME_SYSTEM_MODULELOAD, OnModuleLoaded);
HookEvent(ME_SYSTEM_MODULEUNLOAD, OnModuleLoaded);
HookEvent(ME_SYSTEM_SHUTDOWN, nSystemShutdown);
return 0;
}
/////////////////////////////////////////////////////////////////////////////////////////
// Plugin entry point
static IconItem iconList[] =
{
{ "Main icon", "main", IDI_MAIN },
};
int CMPlugin::Load()
{
registerIcon(MODULENAME, iconList, MODULENAME);
HookEvent(ME_DB_EVENT_ADDED, nExportEvent);
HookEvent(ME_DB_EVENT_EDITED, nExportEvent);
HookEvent(ME_DB_CONTACT_DELETED, nContactDeleted);
HookEvent(ME_OPT_INITIALISE, OptionsInitialize);
HookEvent(ME_SYSTEM_MODULESLOADED, MainInit);
nMaxLineWidth = getWord("MaxLineWidth", nMaxLineWidth);
if (nMaxLineWidth > 0 && nMaxLineWidth < 5)
nMaxLineWidth = 5;
g_sExportDir = _DBGetStringW(0, MODULENAME, "ExportDir", L"%dbpath%\\MsgExport\\");
g_sDefaultFile = _DBGetStringW(0, MODULENAME, "DefaultFile", L"%nick%.txt");
g_sTimeFormat = _DBGetStringW(0, MODULENAME, "TimeFormat", L"d s");
sFileViewerPrg = _DBGetStringW(0, MODULENAME, "FileViewerPrg", L"");
g_enRenameAction = (ENDialogAction)getByte("RenameAction", eDAPromptUser);
g_enDeleteAction = (ENDialogAction)getByte("DeleteAction", eDAPromptUser);
HANDLE hServiceFunc = nullptr;
if (g_plugin.bReplaceHistory)
hServiceFunc = CreateServiceFunction(MS_HISTORY_SHOWCONTACTHISTORY, ShowExportHistory); //this need new code
if (!hServiceFunc)
hServiceFunc = CreateServiceFunction(MS_SHOW_EXPORT_HISTORY, ShowExportHistory);
CreateServiceFunction(MS_EXPORT_HISTORY, ExportContactHistory);
hInternalWindowList = WindowList_Create();
return 0;
}
int CMPlugin::Unload()
{
WindowList_Destroy(hInternalWindowList);
bUseInternalViewer(false);
return 0;
}
|