summaryrefslogtreecommitdiffstats
path: root/mailnews/addrbook/src/nsAddbookProtocolHandler.h
blob: 1eb07a4ffbe2e28e5deb3aa948472c132bd2efec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/* -*- 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 nsAddbookProtocolHandler_h___
#define nsAddbookProtocolHandler_h___

#include "nscore.h"
#include "nsCOMPtr.h"
#include "nsAddbookProtocolHandler.h"
#include "nsIProtocolHandler.h"
#include "nsIAddbookUrl.h"
#include "nsIAddrDatabase.h"

class nsAddbookProtocolHandler : public nsIProtocolHandler
{
public:
	nsAddbookProtocolHandler();

  NS_DECL_ISUPPORTS

  //////////////////////////////////////////////////////////////////////////
  // We support the nsIProtocolHandler interface.
  //////////////////////////////////////////////////////////////////////////
  NS_DECL_NSIPROTOCOLHANDLER

private:
	virtual ~nsAddbookProtocolHandler();
  nsresult    GenerateXMLOutputChannel(nsString &aOutput,
                                         nsIAddbookUrl *addbookUrl,
                                         nsIURI *aURI, 
                                         nsILoadInfo *aLoadInfo,
                                         nsIChannel **_retval);

  nsresult    GeneratePrintOutput(nsIAddbookUrl *addbookUrl, 
                                   nsString &aOutput);

  nsresult    BuildDirectoryXML(nsIAbDirectory *aDirectory, 
                                   nsString &aOutput);

  int32_t     mAddbookOperation;
};

#endif /* nsAddbookProtocolHandler_h___ */