Statistics
| Revision:

root / src / printing.h @ 3032

History | View | Annotate | Download (1.5 kB)

1 1337 hiro
/*
2 1337 hiro
 * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3 1337 hiro
 * Copyright (C) 1999-2006 Hiroyuki Yamamoto
4 1337 hiro
 *
5 1337 hiro
 * This program is free software; you can redistribute it and/or modify
6 1337 hiro
 * it under the terms of the GNU General Public License as published by
7 1337 hiro
 * the Free Software Foundation; either version 2 of the License, or
8 1337 hiro
 * (at your option) any later version.
9 1337 hiro
 *
10 1337 hiro
 * This program is distributed in the hope that it will be useful,
11 1337 hiro
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 1337 hiro
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 1337 hiro
 * GNU General Public License for more details.
14 1337 hiro
 *
15 1337 hiro
 * You should have received a copy of the GNU General Public License
16 1337 hiro
 * along with this program; if not, write to the Free Software
17 1337 hiro
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 1337 hiro
 */
19 1337 hiro
20 1337 hiro
#ifndef __PRINTING_H__
21 1337 hiro
#define __PRINTING_H__
22 1337 hiro
23 1337 hiro
#include <gtk/gtkversion.h>
24 1337 hiro
25 1337 hiro
#include <glib.h>
26 1337 hiro
27 1386 hiro
#include "procmsg.h"
28 1386 hiro
#include "procmime.h"
29 1337 hiro
30 1386 hiro
#if GTK_CHECK_VERSION(2, 10, 0)
31 1386 hiro
gint printing_print_messages_gtk                (GSList                *mlist,
32 1413 hiro
                                                 MimeInfo        *partinfo,
33 1386 hiro
                                                 gboolean         all_headers);
34 1420 hiro
35 1420 hiro
void printing_page_setup_gtk                        (void);
36 1337 hiro
#endif
37 1337 hiro
38 1386 hiro
gint printing_print_messages_with_command        (GSList                *mlist,
39 1386 hiro
                                                 gboolean         all_headers,
40 1386 hiro
                                                 const gchar        *cmdline);
41 1386 hiro
42 1386 hiro
gint printing_print_messages                        (GSList                *mlist,
43 1386 hiro
                                                 gboolean         all_headers);
44 1386 hiro
gint printing_print_message                        (MsgInfo        *msginfo,
45 1386 hiro
                                                 gboolean         all_headers);
46 1386 hiro
gint printing_print_message_part                (MsgInfo        *msginfo,
47 1386 hiro
                                                 MimeInfo        *partinfo);
48 1386 hiro
49 1337 hiro
#endif /* __PRINTING_H__ */