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
|
/*
BossKey - Hide Miranda from your boss :)
Copyright (C) 2002-2003 Goblineye Entertainment, (C) 2007-2010 Billy_Bons
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
*/
#pragma once
#define WIN32_LEAN_AND_MEAN
#define _CRT_SECURE_NO_DEPRECATE
#define BOSSKEY_LISTEN_INFO L"MY6BossKey_Param"
#include <windows.h>
#include <shellapi.h>
#include <Wtsapi32.h>
#include <newpluginapi.h>
#include <m_utils.h>
#include <m_langpack.h>
#include <m_protosvc.h>
#include <m_options.h>
#include <m_popup.h>
#include <m_awaymsg.h>
#include <m_icolib.h>
#include <m_clistint.h>
#include <m_message.h>
#include <m_hotkeys.h>
#include <win2k.h>
#include <m_variables.h>
#include <m_toptoolbar.h>
#include "resource.h"
#include "version.h"
#define MOD_NAME "BossKey"
struct CMPlugin : public PLUGIN<CMPlugin>
{
CMPlugin() :
PLUGIN<CMPlugin>(MOD_NAME)
{}
};
#define KEY_DOWN(key) ((GetAsyncKeyState(key) & 0x8000) ? (true) : (false))
#define MAXPASSLEN 16
#define DEFAULTSETTING (OPT_SETONLINEBACK | OPT_DISABLESNDS | OPT_ONLINEONLY | OPT_USEDEFMSG)
#define OLD_SOUND 1
#define OLD_POPUP 2
#define OLD_FLTCONT 4
#define OLD_WASHIDDEN 128
#define OPT_SETONLINEBACK 1
#define OPT_CHANGESTATUS 2
#define OPT_DISABLESNDS 8
#define OPT_REQPASS 16
#define OPT_ONLINEONLY 32
#define OPT_USEDEFMSG 128
#define OPT_TRAYICON 256
#define OPT_HIDEIFLOCK 1
#define OPT_HIDEIFWINIDLE 2
#define OPT_HIDEIFMIRIDLE 4
#define OPT_HIDEIFSCRSVR 8
#define OPT_MENUITEM 16
#define OPT_HIDEONSTART 32
#define OPT_RESTORE 64
#define MS_BOSSKEY_HIDE "BossKey/HideMiranda"
#define MS_BOSSKEY_ISMIRANDAHIDDEN "BossKey/IsMirandaHidden"
const unsigned STATUS_ARR_TO_ID[8] = { ID_STATUS_OFFLINE, ID_STATUS_ONLINE, ID_STATUS_AWAY, ID_STATUS_NA, ID_STATUS_OCCUPIED, ID_STATUS_DND, ID_STATUS_FREECHAT, ID_STATUS_INVISIBLE };
extern bool g_fOptionsOpen; // options dialog is open. be sure not to hide anything while we're there.
extern WORD g_wMask, g_wMaskAdv;
extern bool g_bWindowHidden;
extern UINT minutes;
int OptsDlgInit(WPARAM wParam, LPARAM lParam);
INT_PTR BossKeyHideMiranda(WPARAM wParam, LPARAM lParam);
void BossKeyMenuItemInit(void);
void BossKeyMenuItemUnInit(void);
static wchar_t *GetBossKeyText(void);
void InitIdleTimer(void);
void UninitIdleTimer(void);
wchar_t* GetDefStatusMsg(unsigned uMode, const char* szProto);
// I never really liked STL's vector... hmm this is nicer anyway, more flexible
typedef struct HWND_ITEM_TYPE
{
HWND hWnd;
HWND_ITEM_TYPE *next;
} HWND_ITEM;
typedef HRESULT(WINAPI *PFNDwmIsCompositionEnabled)(BOOL *);
|