blob: 818a5179dd91f6f1de2aac21b730ea1d85cbd686 (
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
46
47
48
49
50
|
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* 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 _nsMimeHtmlEmitter_h_
#define _nsMimeHtmlEmitter_h_
#include "mozilla/Attributes.h"
#include "prio.h"
#include "nsMimeBaseEmitter.h"
class nsMimeHtmlDisplayEmitter : public nsMimeBaseEmitter {
public:
nsMimeHtmlDisplayEmitter();
nsresult Init();
virtual ~nsMimeHtmlDisplayEmitter(void);
// Header handling routines.
NS_IMETHOD EndHeader(const nsACString& name) override;
// Attachment handling routines
NS_IMETHOD StartAttachment(const nsACString& name, const char* contentType,
const char* url,
bool aIsExternalAttachment) override;
NS_IMETHOD AddAttachmentField(const char* field, const char* value) override;
NS_IMETHOD EndAttachment() override;
NS_IMETHOD EndAllAttachments() override;
// Body handling routines
NS_IMETHOD WriteBody(const nsACString& buf, uint32_t* amountWritten) override;
NS_IMETHOD EndBody() override;
NS_IMETHOD WriteHTMLHeaders(const nsACString& name) override;
virtual nsresult WriteHeaderFieldHTMLPrefix(const nsACString& name) override;
virtual nsresult WriteHeaderFieldHTML(const char* field,
const char* value) override;
virtual nsresult WriteHeaderFieldHTMLPostfix() override;
protected:
bool mFirst; // Attachment flag...
bool mSkipAttachment; // attachments we shouldn't show...
nsresult StartAttachmentInBody(const nsACString& name,
const char* contentType, const char* url);
nsresult BroadcastHeaders(int32_t aHeaderMode);
};
#endif /* _nsMimeHtmlEmitter_h_ */
|