source: trunk/third/libgnomeprintui/libgnomeprintui/gnome-print-job-preview.h @ 18604

Revision 18604, 2.2 KB checked in by ghudson, 22 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r18603, which included commits to RCS files with non-trunk default branches.
Line 
1/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2
3#ifndef __GNOME_PRINT_MASTER_PREVIEW_H__
4#define __GNOME_PRINT_MASTER_PREVIEW_H__
5
6/*
7 *  Copyright (C) 2000-2001 Ximian Inc.
8 *
9 *  Authors: Michael Zucchi <notzed@ximian.com>
10 *           Miguel de Icaza (miguel@gnu.org)
11 *
12 *  A system print interface.
13 *
14 *  This program is free software; you can redistribute it and/or
15 *  modify it under the terms of the GNU Library General Public License
16 *  as published by the Free Software Foundation; either version 2 of
17 *  the License, or (at your option) any later version.
18 *
19 *  This program is distributed in the hope that it will be useful,
20 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
21 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22 *  GNU Library General Public License for more details.
23 *
24 *  You should have received a copy of the GNU Library General Public
25 *  License along with this program; if not, write to the Free Software
26 *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
27 */
28
29#include <glib.h>
30
31G_BEGIN_DECLS
32
33#define GNOME_TYPE_PRINT_JOB_PREVIEW         (gnome_print_job_preview_get_type ())
34#define GNOME_PRINT_JOB_PREVIEW(o)           (G_TYPE_CHECK_INSTANCE_CAST ((o), GNOME_TYPE_PRINT_JOB_PREVIEW, GnomePrintJobPreview))
35#define GNOME_PRINT_JOB_PREVIEW_CLASS(k)     (G_TYPE_CHECK_CLASS_CAST ((k),    GNOME_TYPE_PRINT_JOB_PREVIEW, GnomePrintJobPreviewClass))
36#define GNOME_IS_PRINT_JOB_PREVIEW(o)        (G_TYPE_CHECK_INSTANCE_TYPE ((o), GNOME_TYPE_PRINT_JOB_PREVIEW))
37#define GNOME_IS_PRINT_JOB_PREVIEW_CLASS(k)  (G_TYPE_CHECK_CLASS_TYPE ((k),    GNOME_TYPE_PRINT_JOB_PREVIEW))
38#define GNOME_PRINT_JOB_PREVIEW_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o),  GNOME_TYPE_PRINT_JOB_PREVIEW, GnomePrintJobPreviewClass))
39
40typedef struct _GnomePrintJobPreview      GnomePrintJobPreview;
41typedef struct _GnomePrintJobPreviewClass GnomePrintJobPreviewClass;
42
43#include <gtk/gtkwindow.h>
44#include <libgnomeprint/gnome-print-job.h>
45#include <libgnomeprintui/gnome-print-preview.h>
46
47GtkType     gnome_print_job_preview_get_type (void);
48GtkWidget * gnome_print_job_preview_new (GnomePrintJob *gpm, const guchar *title);
49
50G_END_DECLS
51
52#endif /* __GNOME_PRINT_MASTER_PREVIEW_H__ */
53
Note: See TracBrowser for help on using the repository browser.