summaryrefslogtreecommitdiffstats
path: root/comm/mailnews/mime/src/mimemalt.h
blob: 622704d8f45d922b98cc5549c295c1ad1a5e200f (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 _MIMEMALT_H_
#define _MIMEMALT_H_

#include "mimemult.h"
#include "mimepbuf.h"

/* The MimeMultipartAlternative class implements the multipart/alternative
   MIME container, which displays only one (the `best') of a set of enclosed
   documents.
 */

typedef struct MimeMultipartAlternativeClass MimeMultipartAlternativeClass;
typedef struct MimeMultipartAlternative MimeMultipartAlternative;

struct MimeMultipartAlternativeClass {
  MimeMultipartClass multipart;
};

extern "C" MimeMultipartAlternativeClass mimeMultipartAlternativeClass;

enum priority_t {
  PRIORITY_UNDISPLAYABLE,
  PRIORITY_LOW,
  PRIORITY_TEXT_UNKNOWN,
  PRIORITY_TEXT_PLAIN,
  PRIORITY_NORMAL,
  PRIORITY_HIGH,
  PRIORITY_HIGHEST
};

struct MimeMultipartAlternative {
  MimeMultipart multipart; /* superclass variables */

  MimeHeaders** buffered_hdrs;       /* The headers of pending parts */
  MimePartBufferData** part_buffers; /* The data of pending parts
                                        (see mimepbuf.h) */
  int32_t pending_parts;
  int32_t max_parts;
  priority_t buffered_priority; /* Priority of head of pending parts */
};

#define MimeMultipartAlternativeClassInitializer(ITYPE, CSUPER) \
  { MimeMultipartClassInitializer(ITYPE, CSUPER) }

#endif /* _MIMEMALT_H_ */