summaryrefslogtreecommitdiff
path: root/plugins/!NotAdopted/SmartAutoAway/idleMenu.cpp
blob: ae03310421012c278c074d0c40465728f2c65640 (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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
/*

Miranda IM: the free IM client for Microsoft* Windows*

Copyright 2000-2006 Miranda ICQ/IM project,
all portions of this codebase are copyrighted to the people
listed in contributors.txt.

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 "globals.h"
#ifdef SAA_PLUGIN
# include "m_icolib.h"
#endif

HANDLE hIdleMenu[4] = {NULL,NULL,NULL,NULL};
HANDLE hHookIconsChanged = NULL;
static char *iconDescs[4]={"Not Idle","Short Idle","Long Idle","Reconnect"};
static int iconInd[4]={IDI_IDLE_HERE,IDI_IDLE_SHORT,IDI_IDLE_LONG,IDI_RECONNECT};
static char *IdleServices[4]={AA_IDLE_BENOTIDLESERVICE,AA_IDLE_BESHORTIDLESERVICE,AA_IDLE_BELONGIDLESERVICE,AA_IDLE_RECONNECTSERVICE};

void xModifyMenu(int menuInd,long flags)
{	if (hIdleMenu[menuInd]){
	CLISTMENUITEM mi = {0};

	mi.cbSize = sizeof(mi);
	mi.flags = CMIM_FLAGS;
	mi.flags |= flags;
	CallService(MS_CLIST_MODIFYMENUITEM,(WPARAM)hIdleMenu[menuInd],(LPARAM)&mi);
}	}

static int hasIcoLib = 0;

static void CListSetMenuItemIcon(HANDLE hMenuItem, HICON hIcon)
{
  CLISTMENUITEM mi = {0};

  mi.cbSize = sizeof(mi);
  mi.flags = CMIM_FLAGS | CMIM_ICON;

  mi.hIcon = hIcon;
  CallService(MS_CLIST_MODIFYMENUITEM, (WPARAM)hMenuItem, (LPARAM)&mi);
}

static int IconLibIconsChanged(WPARAM wParam, LPARAM lParam)
{
	int i;
	for (i=0;i<4;i++)
	{
		HICON hIcon = Skin_GetIcon(IdleServices[i]);
		CListSetMenuItemIcon(hIdleMenu[i], hIcon);
		Skin_ReleaseIcon(IdleServices[i]);
	}
	return 0;
}

void AddIdleMenu(){
	CLISTMENUITEM mi;
	int i;

	SKINICONDESC sid = {0};
	hHookIconsChanged = HookEvent(ME_SKIN2_ICONSCHANGED, IconLibIconsChanged);
	hasIcoLib = 1;
	sid.cbSize = sizeof(SKINICONDESC);
	sid.pszSection = SECTIONNAME;
	sid.pszDefaultFile = NULL;
	sid.iDefaultIndex = 0;
	for (i=0;i<4;i++){
		sid.pszDescription = iconDescs[i];
		sid.pszName = IdleServices[i];
		sid.iDefaultIndex = iconInd[i];
		sid.hDefaultIcon = (HICON)LoadImage(
			#ifdef SAA_PLUGIN
				g_hInst,
			#else
				GetModuleHandle(NULL),
			#endif
			MAKEINTRESOURCE( iconInd[i] ), IMAGE_ICON, 0, 0, 0);
		Skin_AddIcon(&sid);
		DestroyIcon(sid.hDefaultIcon);
	}

 	ZeroMemory(&mi,sizeof(mi));
	mi.cbSize=sizeof(mi);
	mi.pszPopupName="&Idle";
	mi.popupPosition=1000090000;
	for (i=0;i<4;i++)
	{
		mi.hIcon = Skin_GetIcon(IdleServices[i]);
		mi.position = i+1;
		mi.pszName = iconDescs[i];
		mi.pszService = IdleServices[i];
		if (i==3) mi.position = 1000000;
		hIdleMenu[i] = (HANDLE)Menu_AddMainMenuItem(&mi);

		Skin_ReleaseIcon(IdleServices[i]);
	}
}

MIRANDASERVICE idleServiceNotIdle(WPARAM w, LPARAM l){
	SimulateIdle(0);
	return 0;
};
MIRANDASERVICE idleServiceShortIdle(WPARAM w, LPARAM l){
	SimulateIdle(1);
	return 0;
};
MIRANDASERVICE idleServiceLongIdle(WPARAM w, LPARAM l){
	SimulateIdle(2);
	return 0;
};
MIRANDASERVICE reconnectService(WPARAM w, LPARAM l){
	int i;
	for (i=0;i<protoCount;i++){
		if (isInterestingProto(i)){
			protoStatus[i]|=4;
		}
	}
	return 0;
};