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
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef __nsMessengerWinIntegration_h
#define __nsMessengerWinIntegration_h
#include <windows.h>
// shellapi.h is needed to build with WIN32_LEAN_AND_MEAN
#include <shellapi.h>
#include "nsIMessengerOSIntegration.h"
#include "nsIFolderListener.h"
#include "nsIAtom.h"
#include "nsITimer.h"
#include "nsCOMPtr.h"
#include "nsStringGlue.h"
#include "nsIMutableArray.h"
#include "nsIObserver.h"
#define NS_MESSENGERWININTEGRATION_CID \
{0xf62f3d3a, 0x1dd1, 0x11b2, \
{0xa5, 0x16, 0xef, 0xad, 0xb1, 0x31, 0x61, 0x5c}}
class nsIStringBundle;
class nsMessengerWinIntegration : public nsIMessengerOSIntegration,
public nsIFolderListener,
public nsIObserver
{
public:
nsMessengerWinIntegration();
virtual nsresult Init();
NS_DECL_ISUPPORTS
NS_DECL_NSIMESSENGEROSINTEGRATION
NS_DECL_NSIFOLDERLISTENER
NS_DECL_NSIOBSERVER
nsresult ShowNewAlertNotification(bool aUserInitiated, const nsString& aAlertTitle, const nsString& aAlertText);
#ifndef MOZ_THUNDERBIRD
nsresult ShowAlertMessage(const nsString& aAlertTitle, const nsString& aAlertText, const nsACString& aFolderURI);
#endif
private:
virtual ~nsMessengerWinIntegration();
nsresult AlertFinished();
nsresult AlertClicked();
#ifdef MOZ_SUITE
nsresult AlertClickedSimple();
#endif
void InitializeBiffStatusIcon();
void FillToolTipInfo();
void GenericShellNotify(DWORD aMessage);
void DestroyBiffIcon();
nsresult GetFirstFolderWithNewMail(nsACString& aFolderURI);
nsresult GetStringBundle(nsIStringBundle **aBundle);
nsCOMPtr<nsIMutableArray> mFoldersWithNewMail; // keep track of all the root folders with pending new mail
nsCOMPtr<nsIAtom> mBiffStateAtom;
uint32_t mCurrentBiffState;
bool mBiffIconVisible;
bool mBiffIconInitialized;
bool mSuppressBiffIcon;
bool mAlertInProgress;
// "might" because we don't know until we check
// what type of server is associated with the default account
bool mDefaultAccountMightHaveAnInbox;
// True if the timer is running
bool mUnreadTimerActive;
nsresult ResetCurrent();
nsresult RemoveCurrentFromRegistry();
nsresult UpdateRegistryWithCurrent();
nsresult SetupInbox();
nsresult SetupUnreadCountUpdateTimer();
static void OnUnreadCountUpdateTimer(nsITimer *timer, void *osIntegration);
nsresult UpdateUnreadCount();
nsCOMPtr <nsIAtom> mDefaultServerAtom;
nsCOMPtr <nsIAtom> mTotalUnreadMessagesAtom;
nsCOMPtr <nsITimer> mUnreadCountUpdateTimer;
nsCString mInboxURI;
nsCString mEmail;
nsString mAppName;
nsString mEmailPrefix;
nsString mProfilePath;
int32_t mCurrentUnreadCount;
int32_t mLastUnreadCountWrittenToRegistry;
};
#endif // __nsMessengerWinIntegration_h
|