diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
commit | 6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch) | |
tree | a68f146d7fa01f0134297619fbe7e33db084e0aa /comm/mailnews/local/src/nsMailboxService.h | |
parent | Initial commit. (diff) | |
download | thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.tar.xz thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.zip |
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'comm/mailnews/local/src/nsMailboxService.h')
-rw-r--r-- | comm/mailnews/local/src/nsMailboxService.h | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/comm/mailnews/local/src/nsMailboxService.h b/comm/mailnews/local/src/nsMailboxService.h new file mode 100644 index 0000000000..1ab9be1b67 --- /dev/null +++ b/comm/mailnews/local/src/nsMailboxService.h @@ -0,0 +1,59 @@ +/* -*- 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 nsMailboxService_h___ +#define nsMailboxService_h___ + +#include "nscore.h" +#include "nsISupports.h" + +#include "nsIMailboxService.h" +#include "nsIMsgFolder.h" +#include "nsIMsgMessageService.h" +#include "nsIMsgWindow.h" +#include "nsIMailboxUrl.h" +#include "nsIURI.h" +#include "nsIUrlListener.h" +#include "nsIProtocolHandler.h" + +class nsMailboxService : public nsIMailboxService, + public nsIMsgMessageService, + public nsIMsgMessageFetchPartService, + public nsIProtocolHandler { + public: + nsMailboxService(); + static nsresult NewURI(const nsACString& aSpec, const char* aOriginCharset, + nsIURI* aBaseURI, nsIURI** _retval); + + NS_DECL_ISUPPORTS + NS_DECL_NSIMAILBOXSERVICE + NS_DECL_NSIMSGMESSAGESERVICE + NS_DECL_NSIMSGMESSAGEFETCHPARTSERVICE + NS_DECL_NSIPROTOCOLHANDLER + + protected: + virtual ~nsMailboxService(); + + // helper functions used by the service + nsresult PrepareMessageUrl(const nsACString& aSrcMsgMailboxURI, + nsIUrlListener* aUrlListener, + nsMailboxAction aMailboxAction, + nsIMailboxUrl** aMailboxUrl, + nsIMsgWindow* msgWindow); + + nsresult RunMailboxUrl(nsIURI* aMailboxUrl, + nsISupports* aDisplayConsumer = nullptr); + + nsresult FetchMessage( + const nsACString& aMessageURI, nsISupports* aDisplayConsumer, + nsIMsgWindow* aMsgWindow, nsIUrlListener* aUrlListener, + const char* aFileName, /* only used by open attachment */ + nsMailboxAction mailboxAction, bool aAutodetectCharset, nsIURI** aURL); + + nsresult DecomposeMailboxURI(const nsACString& aMessageURI, + nsIMsgFolder** aFolder, nsMsgKey* aMsgKey); +}; + +#endif /* nsMailboxService_h___ */ |