blob: 6dd061990f431337620241ffd22a367535b20b1e (
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
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/* 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 _nsMsgWindow_h
#define _nsMsgWindow_h
#include "nsIMsgWindow.h"
#include "nsIMsgStatusFeedback.h"
#include "nsITransactionManager.h"
#include "nsIMsgFolder.h"
#include "nsIDocShell.h"
#include "nsIURIContentListener.h"
#include "nsIMimeMiscStatus.h"
#include "nsWeakReference.h"
#include "nsIInterfaceRequestor.h"
#include "nsCOMPtr.h"
class nsMsgWindow : public nsIMsgWindow,
public nsIURIContentListener,
public nsIMsgWindowTest,
public nsSupportsWeakReference
{
public:
NS_DECL_THREADSAFE_ISUPPORTS
nsMsgWindow();
nsresult Init();
NS_DECL_NSIMSGWINDOW
NS_DECL_NSIURICONTENTLISTENER
NS_DECL_NSIMSGWINDOWTEST
protected:
virtual ~nsMsgWindow();
nsCOMPtr<nsIMsgHeaderSink> mMsgHeaderSink;
nsCOMPtr<nsIMsgStatusFeedback> mStatusFeedback;
nsCOMPtr<nsITransactionManager> mTransactionManager;
nsCOMPtr<nsIMsgFolder> mOpenFolder;
nsCOMPtr<nsIMsgWindowCommands> mMsgWindowCommands;
// These are used by the backend protocol code to attach
// notification callbacks to channels, e.g., nsIBadCertListner2.
nsCOMPtr<nsIInterfaceRequestor> mNotificationCallbacks;
// prompt dialog used during testing only
nsCOMPtr<nsIPrompt> mPromptDialog;
// authorization prompt used during testing only
nsCOMPtr<nsIAuthPrompt> mAuthPrompt;
// let's not make this a strong ref - we don't own it.
nsWeakPtr mRootDocShellWeak;
nsWeakPtr mMessageWindowDocShellWeak;
nsWeakPtr mDomWindow;
nsCString mMailCharacterSet;
bool mCharsetOverride;
bool m_stopped;
};
#endif
|