gecko-dev/mailnews/db/msgdb/public/nsMsgThread.h

82 строки
2.5 KiB
C
Исходник Обычный вид История

1999-03-29 01:04:05 +04:00
/* -*- 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.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.
*/
#ifndef _nsMsgThread_H
#define _nsMsgThread_H
#include "nsIMsgThread.h"
#include "nsString.h"
#include "MailNewsTypes.h"
#include "mdb.h"
1999-03-29 01:04:05 +04:00
1999-04-02 07:26:14 +04:00
class nsIMdbTable;
class nsIMsgDBHdr;
1999-04-02 07:26:14 +04:00
class nsMsgDatabase;
1999-03-29 01:04:05 +04:00
class nsMsgThread : public nsIMsgThread {
public:
nsMsgThread();
1999-04-02 07:26:14 +04:00
nsMsgThread(nsMsgDatabase *db, nsIMdbTable *table);
1999-03-29 01:04:05 +04:00
virtual ~nsMsgThread();
NS_DECL_ISUPPORTS
1999-04-01 07:09:08 +04:00
NS_IMETHOD SetThreadKey(nsMsgKey threadKey);
NS_IMETHOD GetThreadKey(nsMsgKey *result);
1999-03-29 01:04:05 +04:00
NS_IMETHOD GetFlags(PRUint32 *result);
NS_IMETHOD SetFlags(PRUint32 flags);
NS_IMETHOD SetSubject(char *subject);
NS_IMETHOD GetSubject(char **result);
1999-03-29 01:04:05 +04:00
NS_IMETHOD GetNumChildren(PRUint32 *result);
NS_IMETHOD GetNumUnreadChildren (PRUint32 *result);
NS_IMETHOD AddChild(nsIMsgDBHdr *child, nsIMsgDBHdr *inReplyTo, PRBool threadInThread);
NS_IMETHOD GetChildAt(PRInt32 index, nsIMsgDBHdr **result);
NS_IMETHOD GetChild(nsMsgKey msgKey, nsIMsgDBHdr **result);
NS_IMETHOD GetChildHdrAt(PRInt32 index, nsIMsgDBHdr **result);
NS_IMETHOD RemoveChildAt(PRInt32 index);
NS_IMETHOD RemoveChildHdr(nsIMsgDBHdr *child);
1999-03-29 01:04:05 +04:00
NS_IMETHOD MarkChildRead(PRBool bRead);
NS_IMETHOD EnumerateMessages(nsMsgKey parent, nsIEnumerator* *result);
1999-03-29 01:04:05 +04:00
1999-04-02 07:26:14 +04:00
// non-interface methods
1999-06-26 02:04:32 +04:00
PRBool TryReferenceThreading(nsIMsgDBHdr *newHeader);
1999-04-02 07:26:14 +04:00
nsIMdbTable *GetMDBTable() {return m_mdbTable;}
nsIMdbRow *GetMetaRow() {return m_metaRow;}
nsMsgDatabase *m_mdbDB ;
1999-03-29 01:04:05 +04:00
protected:
1999-04-02 07:26:14 +04:00
void Init();
virtual nsresult InitCachedValues();
nsresult ChangeChildCount(PRInt32 delta);
nsresult ChangeUnreadChildCount(PRInt32 delta);
nsresult RemoveChild(nsMsgKey msgKey);
1999-04-02 07:26:14 +04:00
1999-03-29 01:04:05 +04:00
nsMsgKey m_threadKey;
PRUint32 m_numChildren;
1999-04-01 07:09:08 +04:00
PRUint32 m_numUnreadChildren;
1999-03-29 01:04:05 +04:00
PRUint32 m_flags;
1999-04-02 07:26:14 +04:00
nsIMdbTable *m_mdbTable;
nsIMdbRow *m_metaRow;
PRBool m_cachedValuesInitialized;
1999-04-02 07:26:14 +04:00
1999-03-29 01:04:05 +04:00
};
#endif