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
|
/* -*- Mode: C++; tab-width: 2; 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 __nsMsgAppCore_h
#define __nsMsgAppCore_h
#include "nscore.h"
#include "nsIMessenger.h"
#include "nsCOMPtr.h"
#include "nsITransactionManager.h"
#include "nsIFile.h"
#include "nsIDocShell.h"
#include "nsIStringBundle.h"
#include "nsIFile.h"
#include "nsWeakReference.h"
#include "mozIDOMWindow.h"
#include "nsTArray.h"
#include "nsIFolderListener.h"
class nsMessenger : public nsIMessenger, public nsSupportsWeakReference, public nsIFolderListener
{
public:
nsMessenger();
NS_DECL_ISUPPORTS
NS_DECL_NSIMESSENGER
NS_DECL_NSIFOLDERLISTENER
nsresult Alert(const char * stringName);
nsresult SaveAttachment(nsIFile *file, const nsACString& unescapedUrl,
const nsACString& messageUri, const nsACString& contentType,
void *closure, nsIUrlListener *aListener);
nsresult PromptIfFileExists(nsIFile *file);
nsresult DetachAttachments(uint32_t aCount,
const char ** aContentTypeArray,
const char ** aUrlArray,
const char ** aDisplayNameArray,
const char ** aMessageUriArray,
nsTArray<nsCString> *saveFileUris,
bool withoutWarning = false);
nsresult SaveAllAttachments(uint32_t count,
const char **contentTypeArray,
const char **urlArray,
const char **displayNameArray,
const char **messageUriArray,
bool detaching);
nsresult SaveOneAttachment(const char* aContentType,
const char* aURL,
const char* aDisplayName,
const char* aMessageUri,
bool detaching);
protected:
virtual ~nsMessenger();
void GetString(const nsString& aStringName, nsString& stringValue);
nsresult InitStringBundle();
nsresult PromptIfDeleteAttachments(bool saveFirst, uint32_t count, const char **displayNameArray);
private:
nsresult GetLastSaveDirectory(nsIFile **aLastSaveAsDir);
// if aLocalFile is a dir, we use it. otherwise, we use the parent of aLocalFile.
nsresult SetLastSaveDirectory(nsIFile *aLocalFile);
nsresult AdjustFileIfNameTooLong(nsIFile* aFile);
nsresult GetSaveAsFile(const nsAString& aMsgFilename, int32_t *aSaveAsFileType,
nsIFile **aSaveAsFile);
nsresult GetSaveToDir(nsIFile **aSaveToDir);
nsString mId;
nsCOMPtr<nsITransactionManager> mTxnMgr;
/* rhp - need this to drive message display */
nsCOMPtr<mozIDOMWindowProxy> mWindow;
nsCOMPtr<nsIMsgWindow> mMsgWindow;
nsCOMPtr<nsIDocShell> mDocShell;
// String bundles...
nsCOMPtr<nsIStringBundle> mStringBundle;
nsCString mCurrentDisplayCharset;
nsCOMPtr<nsISupports> mSearchContext;
nsCString mLastDisplayURI; // this used when the user attempts to force a charset reload of a message...we need to get the last displayed
// uri so we can re-display it..
nsCString mNavigatingToUri;
nsTArray<nsCString> mLoadedMsgHistory;
int32_t mCurHistoryPos;
};
#define NS_MESSENGER_CID \
{ /* f436a174-e2c0-4955-9afe-e3feb68aee56 */ \
0xf436a174, 0xe2c0, 0x4955, \
{0x9a, 0xfe, 0xe3, 0xfe, 0xb6, 0x8a, 0xee, 0x56}}
#endif
|