summaryrefslogtreecommitdiff
path: root/RecentContacts/V_RecentContacts.h
blob: 524ec36016d6f81d6018bc327e9ddda485625746 (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

#pragma once

#define MIRANDA_VER    0x0600

#include <windows.h>
#include <commctrl.h>
#include <string>
#include <map>
#include "resource.h"
#include <time.h>

#include <newpluginapi.h>
#include <m_clist.h>
#include <m_contacts.h>
#include <m_langpack.h>
#include <m_database.h>
#include <m_system.h>
#include <m_message.h>
#include <m_utils.h>
#include <m_updater.h>
#include <m_icolib.h>
#include <m_hotkeys.h>
#include <m_protosvc.h>
#include <m_options.h>

#include <m_toptoolbar.h>

/* dc90285a-9985-4b7a-baad-e70ae1dfc1d9 */
#define MIID_RECENTCONTACTS { 0xdc90285a, 0x9985, 0x4b7a, {0xba, 0xad, 0xe7, 0x0a, 0xe1, 0xdf, 0xc1, 0xd9}}

static struct MM_INTERFACE   mmi;

// from m_protosvc.h
//#define MS_PROTO_GETCONTACTBASEPROTO  "Proto/GetContactBaseProto"

// Toggle ignore state for contact.
//wParam=(WPARAM)(HANDLE)hContact1
//lParam=0

#define V_RECENTCONTACTS_TOGGLE_IGNORE "V_RecentContacts/ToggleIgnore"

using namespace std;

void wSetData(char **Data, const char *Value);
void wfree(char **Data);


//HICON LoadIconExEx( const char* IcoLibName, int NonIcoLibIcon );

static char msLastUC_ShowListName[] =					"Recent Contacts";

static char dbLastUC_ModuleName[] =					"V_RecentContacts";
static char dbLastUC_LastUsedTimeLo[] =				"LastUsedTimeLo";
static char dbLastUC_LastUsedTimeHi[] =				"LastUsedTimeHi";
static char dbLastUC_WindowPosPrefix[] =				"Window";
static char dbLastUC_DateTimeFormat[] =				"DateTimeFormat";
//char dbLastUC_DateTimeFormatDefault[] =			"(%Y-%m-%d %H:%M)  ";
static char dbLastUC_DateTimeFormatDefault[] =			"(%Y-%m-%d %H:%M)  ";
static char dbLastUC_MaxShownContacts[] =		"MaxShownContacts";
static char dbLastUC_IgnoreContact[] = 			"Ignore";
static char dbLastUC_HideOfflineContacts[] = 			"HideOfflineContacts";
//int  MaxShownContacts = 0;

static char msLastUC_ShowList[] =						"V_RecentContacts/ShowList";
static char msLastUC_IgnoreOff[] =						"V_RecentContacts/SetIgnoreOff";
static char msLastUC_IgnoreOn[] =						"V_RecentContacts/SetIgnoreOn";

//translations
static char msLastUC_IconName[] =					"Main icon";
static char msLastUC_HotkeyName[] =					"Show Recent Contacts";
static char strLastUC_WndListHeadNameColumn[] =		"Contact";



typedef struct _LastUCOptions
{
	int    MaxShownContacts;
	int    HideOffline;
	string DateTimeFormat;
}
LastUCOptions;

extern LastUCOptions LastUCOpt;
//#include "m_tabsrmm.h"
// custom tabSRMM events
#define tabMSG_WINDOW_EVT_CUSTOM_BEFORESEND 1
struct TABSRMM_SessionInfo {
	unsigned int cbSize;
	unsigned int evtCode;
	HWND hwnd;              // handle of the message dialog (tab)
	HWND hwndContainer;     // handle of the parent container
	HWND hwndInput;         // handle of the input area (rich edit)
	/*struct MessageWindowData*/ void *dat;      // the session info
	/*struct ContainerWindowData*/ void *pContainer;
};


typedef std::multimap <__time64_t, HANDLE, std::greater<__time64_t> > cmultimap;
typedef std::pair <__time64_t, HANDLE> cpair;

typedef struct LASTUC_DLG_DATA
{
	cmultimap *Contacts;
	SIZE WindowMinSize;
	RECT ListUCRect;
	HANDLE hContact;
} LASTUC_DLG_DATA;