Added tag BETA_BASE_20140428 for changeset ffacfc0539ea a=betamerge DONTBUILD CLOSED TREE
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef nsImportMailboxDescriptor_h___
#define nsImportMailboxDescriptor_h___
#include "mozilla/Attributes.h"
#include "nscore.h"
#include "nsStringGlue.h"
#include "nsIImportMailboxDescriptor.h"
#include "nsIFile.h"
#include "nsCOMPtr.h"
////////////////////////////////////////////////////////////////////////
class nsImportMailboxDescriptor : public nsIImportMailboxDescriptor
{
public:
NS_DECL_THREADSAFE_ISUPPORTS
NS_IMETHOD GetIdentifier(uint32_t *pIdentifier) MOZ_OVERRIDE { *pIdentifier = m_id; return NS_OK;}
NS_IMETHOD SetIdentifier(uint32_t ident) MOZ_OVERRIDE { m_id = ident; return NS_OK;}
/* attribute unsigned long depth; */
NS_IMETHOD GetDepth(uint32_t *pDepth) MOZ_OVERRIDE { *pDepth = m_depth; return NS_OK;}
NS_IMETHOD SetDepth(uint32_t theDepth) MOZ_OVERRIDE { m_depth = theDepth; return NS_OK;}
/* attribute unsigned long size; */
NS_IMETHOD GetSize(uint32_t *pSize) MOZ_OVERRIDE { *pSize = m_size; return NS_OK;}
NS_IMETHOD SetSize(uint32_t theSize) MOZ_OVERRIDE { m_size = theSize; return NS_OK;}
/* attribute wstring displayName; */
NS_IMETHOD GetDisplayName(char16_t **pName) MOZ_OVERRIDE { *pName = ToNewUnicode(m_displayName); return NS_OK;}
NS_IMETHOD SetDisplayName(const char16_t * pName) MOZ_OVERRIDE { m_displayName = pName; return NS_OK;}
/* attribute boolean import; */
NS_IMETHOD GetImport(bool *pImport) MOZ_OVERRIDE { *pImport = m_import; return NS_OK;}
NS_IMETHOD SetImport(bool doImport) MOZ_OVERRIDE { m_import = doImport; return NS_OK;}
/* readonly attribute nsIFile file; */
NS_IMETHOD GetFile(nsIFile * *aFile) MOZ_OVERRIDE { if (m_pFile) { NS_ADDREF(*aFile = m_pFile); return NS_OK;} else return NS_ERROR_FAILURE; }
nsImportMailboxDescriptor();
virtual ~nsImportMailboxDescriptor() {}
static NS_METHOD Create(nsISupports *aOuter, REFNSIID aIID, void **aResult);
private:
uint32_t m_id; // used by creator of the structure
uint32_t m_depth; // depth in the hierarchy
nsString m_displayName;// name of this mailbox
nsCOMPtr <nsIFile> m_pFile; // source file (if applicable)
uint32_t m_size;
bool m_import; // import it or not?
};
#endif