Updated Traditional Chinese translation(Hong Kong). Updated Traditional
[evolution.git] / mail / em-format-quote.h
blobbb10cd32cc9b4c98c30ed73f261c97089f7fde08
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3 * Authors: Jeffrey Stedfast <fejj@ximian.com>
5 * Copyright 2003 Ximian, Inc. (www.ximian.com)
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA.
24 #ifndef _EM_FORMAT_QUOTE_H
25 #define _EM_FORMAT_QUOTE_H
27 #include "mail/em-format.h"
29 typedef struct _EMFormatQuote EMFormatQuote;
30 typedef struct _EMFormatQuoteClass EMFormatQuoteClass;
32 #define EM_FORMAT_QUOTE_CITE (1<<0)
33 #define EM_FORMAT_QUOTE_HEADERS (1<<1)
35 struct _EMFormatQuote {
36 EMFormat format;
38 struct _EMFormatQuotePrivate *priv;
40 char *credits;
41 struct _CamelStream *stream;
42 guint32 flags;
44 guint32 text_html_flags;
45 guint32 citation_colour;
48 struct _EMFormatQuoteClass {
49 EMFormatClass format_class;
52 GType em_format_quote_get_type (void);
54 EMFormatQuote *em_format_quote_new (const char *credits, struct _CamelStream *stream, guint32 flags);
56 #endif /* !_EM_FORMAT_QUOTE_H */