gecko-dev/mailnews/base/public/nsIMsgHdr.idl

113 строки
3.9 KiB
Plaintext

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
*
* The contents of this file are subject to the Netscape Public
* License Version 1.1 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.mozilla.org/NPL/
*
* Software distributed under the License is distributed on an "AS
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
* implied. See the License for the specific language governing
* rights and limitations under the License.
*
* The Original Code is mozilla.org code.
*
* The Initial Developer of the Original Code is Netscape
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 1998 Netscape Communications Corporation. All
* Rights Reserved.
*
* Contributor(s):
*/
#include "nsISupports.idl"
%{C++
#include "MailNewsTypes.h"
%}
#include "MailNewsTypes2.idl"
[ptr] native nsString(nsString);
[ptr] native nsCString(nsCString);
[ref] native nsStringRef(nsString);
[ref] native nsCStringRef(nsCString);
[scriptable, uuid(4e994f60-c317-11d2-8cc9-0060b0fc14a3)]
interface nsIMsgHdr : nsISupports
{
/* general property routines - I think this can retrieve any
header in the db */
[noscript] void getProperty(in string propertyName, in nsStringRef propertyValue);
[noscript] void setProperty(in string propertyName, in nsStringRef propertyStr);
unsigned long getUint32Property(in string propertyName);
void setUint32Property(in string propertyName,
in unsigned long propertyVal);
// Mark message routines
// attribute boolean read;
//attribute boolean flagged;
void markRead(in boolean read);
void markFlagged(in boolean flagged);
attribute nsMsgPriorityValue priority;
void setPriorityString(in string priority);
/* flag handling routines */
attribute unsigned long flags;
unsigned long OrFlags(in unsigned long flags);
unsigned long AndFlags(in unsigned long flags);
/* various threading stuff */
attribute nsMsgKey threadId;
attribute nsMsgKey messageKey;
attribute nsMsgKey threadParent;
/* meta information about the message, learned from reading the message */
attribute unsigned long messageSize;
attribute unsigned long lineCount;
attribute unsigned long statusOffset;
readonly attribute unsigned long messageOffset;
/* common headers */
attribute PRTime date;
attribute string messageId;
attribute string ccList;
attribute string author;
attribute string subject;
attribute string recipients;
attribute boolean recipientsIsNewsgroup;
/* anything below here still has to be fixed */
void setReferences(in string references);
readonly attribute unsigned short numReferences;
[noscript] void getStringReference(in long refNum, in nsCStringRef ref);
void setRecipientsArray(in string names, in string addresses,
in unsigned long numAddresses);
void setCCListArray(in string names, in string addresses,
in unsigned long numAddresses);
readonly attribute wstring mime2DecodedAuthor;
readonly attribute wstring mime2DecodedSubject;
readonly attribute wstring mime2DecodedRecipients;
// [noscript] void getMime2DecodedAuthor(in nsString resultAuthor);
// [noscript] void getMime2DecodedSubject(in nsString resultSubject);
// [noscript] void getMime2DecodedRecipients(in nsString resultRecipients);
readonly attribute wstring authorCollationKey;
readonly attribute wstring subjectCollationKey;
readonly attribute wstring recipientsCollationKey;
[noscript] void getCharSet(in nsString result);
};
[scriptable, uuid(B5212A60-F93F-11d2-951C-006097222B83)]
interface nsIMsgDBHdr : nsIMsgHdr
{
};
/* *******************************************************************************/