This commit is contained in:
putterman%netscape.com 1999-09-09 06:11:28 +00:00
Родитель a5c4082159
Коммит cd35896bc8
2 изменённых файлов: 138 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,90 @@
/* -*- 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.
*/
#include "nsMessageView.h"
NS_BEGIN_EXTERN_C
nsresult
NS_NewMessageView(const nsIID& iid, void **result)
{
nsMessageView *messageView = new nsMessageView();
if(!messageView)
return NS_ERROR_OUT_OF_MEMORY;
nsresult rv = messageView->Init();
if(NS_FAILED(rv))
{
delete messageView;
return rv;
}
return messageView->QueryInterface(iid, result);
}
NS_END_EXTERN_C
NS_IMPL_ISUPPORTS(nsMessageView, nsCOMTypeInfo<nsIMessageView>::GetIID())
nsMessageView::nsMessageView()
{
NS_INIT_REFCNT();
mShowThreads = PR_FALSE;
mViewType = nsIMessageView::eShowAll;
}
nsMessageView::~nsMessageView()
{
}
nsresult nsMessageView::Init()
{
return NS_OK;
}
NS_IMETHODIMP nsMessageView::GetViewType(PRUint32 *aViewType)
{
if(!aViewType)
return NS_ERROR_NULL_POINTER;
*aViewType = mViewType;
return NS_OK;
}
NS_IMETHODIMP nsMessageView::SetViewType(PRUint32 aViewType)
{
mViewType = aViewType;
return NS_OK;
}
NS_IMETHODIMP nsMessageView::GetShowThreads(PRBool *aShowThreads)
{
if(!aShowThreads)
return NS_ERROR_NULL_POINTER;
*aShowThreads = mShowThreads;
return NS_OK;
}
NS_IMETHODIMP nsMessageView::SetShowThreads(PRBool aShowThreads)
{
mShowThreads = aShowThreads;
return NS_OK;
}

Просмотреть файл

@ -0,0 +1,48 @@
/* -*- 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 _nsMessageView_h
#define _nsMessageView_h
#include "nsIMessageView.h"
class nsMessageView : public nsIMessageView {
public:
NS_DECL_ISUPPORTS
nsMessageView();
~nsMessageView();
nsresult Init();
NS_DECL_NSIMESSAGEVIEW
protected:
PRBool mShowThreads;
PRUint32 mViewType;
};
NS_BEGIN_EXTERN_C
nsresult
NS_NewMessageView(const nsIID& iid, void **result);
NS_END_EXTERN_C
#endif