1999-04-21 20:17:23 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Netscape Public License
|
|
|
|
* Version 1.0 (the "NPL"); you may not use this file except in
|
|
|
|
* compliance with the NPL. You may obtain a copy of the NPL at
|
|
|
|
* http://www.mozilla.org/NPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the NPL is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* NPL.
|
|
|
|
*
|
|
|
|
* The Initial Developer of this code under the NPL is Netscape
|
|
|
|
* Communications Corporation. Portions created by Netscape are
|
|
|
|
* Copyright (C) 1999 Netscape Communications Corporation. All Rights
|
|
|
|
* Reserved.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "nsIMsgMessageService.h"
|
|
|
|
#include "nsString.h"
|
1999-04-24 20:37:00 +00:00
|
|
|
#include "nsIEnumerator.h"
|
|
|
|
#include "nsIMsgFolder.h"
|
1999-05-18 23:55:39 +00:00
|
|
|
#include "msgCore.h"
|
1999-05-04 22:34:35 +00:00
|
|
|
#include "nsCOMPtr.h"
|
1999-04-21 20:17:23 +00:00
|
|
|
|
|
|
|
//These are utility functions that can used throughout the mailnews code
|
|
|
|
|
|
|
|
//Utilities for getting a message service.
|
1999-05-18 23:55:39 +00:00
|
|
|
NS_MSG_BASE nsresult GetMessageServiceProgIDForURI(const char *uri, nsString &progID);
|
1999-04-21 20:17:23 +00:00
|
|
|
//Use ReleaseMessageServiceFromURI to release the service.
|
1999-05-18 23:55:39 +00:00
|
|
|
NS_MSG_BASE nsresult GetMessageServiceFromURI(const char *uri, nsIMsgMessageService **messageService);
|
|
|
|
NS_MSG_BASE nsresult ReleaseMessageServiceFromURI(const char *uri, nsIMsgMessageService *messageService);
|
1999-04-24 20:37:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
//An enumerator for converting nsIMsgHdrs to nsIMessages.
|
1999-05-18 23:55:39 +00:00
|
|
|
class NS_MSG_BASE nsMessageFromMsgHdrEnumerator: public nsIEnumerator
|
1999-04-24 20:37:00 +00:00
|
|
|
{
|
|
|
|
protected:
|
1999-05-04 22:34:35 +00:00
|
|
|
nsCOMPtr<nsIEnumerator> mSrcEnumerator;
|
|
|
|
nsCOMPtr<nsIMsgFolder> mFolder;
|
1999-04-24 20:37:00 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
nsMessageFromMsgHdrEnumerator(nsIEnumerator *srcEnumerator, nsIMsgFolder *folder);
|
1999-05-04 22:34:35 +00:00
|
|
|
nsMessageFromMsgHdrEnumerator(){} //Default constructor that does nothing so nsComPtr will work.
|
1999-04-26 22:30:52 +00:00
|
|
|
virtual ~nsMessageFromMsgHdrEnumerator();
|
1999-04-24 20:37:00 +00:00
|
|
|
|
|
|
|
NS_IMETHOD First(void);
|
|
|
|
NS_IMETHOD Next(void);
|
|
|
|
NS_IMETHOD CurrentItem(nsISupports **aItem);
|
|
|
|
NS_IMETHOD IsDone(void);
|
|
|
|
};
|
|
|
|
|
1999-05-18 23:55:39 +00:00
|
|
|
NS_MSG_BASE nsresult NS_NewMessageFromMsgHdrEnumerator(nsIEnumerator *srcEnumerator,
|
1999-04-24 20:37:00 +00:00
|
|
|
nsIMsgFolder *folder,
|
1999-04-25 21:23:36 +00:00
|
|
|
nsMessageFromMsgHdrEnumerator **messageEnumerator);
|
1999-05-10 21:06:39 +00:00
|
|
|
|
1999-05-18 23:55:39 +00:00
|
|
|
NS_MSG_BASE nsresult NS_MsgGetPriorityFromString(const char *priority, nsMsgPriority *outPriority);
|
1999-05-10 21:06:39 +00:00
|
|
|
|
1999-05-18 23:55:39 +00:00
|
|
|
NS_MSG_BASE nsresult NS_MsgGetUntranslatedPriorityName (nsMsgPriority p, nsString2 *outName);
|