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

80 строки
2.4 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.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/
1999-03-29 01:04:05 +04:00
*
* 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.
1999-03-29 01:04:05 +04:00
*
* The Original Code is mozilla.org code.
*
* The Initial Developer of the Original Code is Netscape
1999-03-29 01:04:05 +04:00
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 1999 Netscape Communications Corporation. All
* Rights Reserved.
*
* Contributor(s):
1999-03-29 01:04:05 +04:00
*/
#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();
1999-07-13 22:43:04 +04:00
friend class nsMsgThreadEnumerator;
1999-03-29 01:04:05 +04:00
NS_DECL_ISUPPORTS
NS_DECL_NSIMSGTHREAD
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-07-13 22:43:04 +04:00
nsresult SetThreadRootKey(nsMsgKey threadRootKey);
nsresult GetChildHdrForKey(nsMsgKey desiredKey,
nsIMsgDBHdr **result, PRInt32 *resultIndex);
1999-07-22 01:49:46 +04:00
nsresult ReparentChildrenOf(nsMsgKey oldParent, nsMsgKey newParent, nsIDBChangeAnnouncer *announcer);
1999-04-02 07:26:14 +04:00
nsresult ReparentNonReferenceChildrenOf(nsIMsgDBHdr *topLevelHdr, nsMsgKey newParentKey,
nsIDBChangeAnnouncer *announcer);
nsresult ReparentMsgsWithInvalidParent(PRUint32 numChildren, nsMsgKey threadParentKey);
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-07-13 22:43:04 +04:00
nsMsgKey m_threadRootKey;
1999-03-29 01:04:05 +04:00
};
#endif