diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2006-06-20 18:42:46 +0000 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2006-06-20 18:42:46 +0000 |
commit | d14e9a14ad745c12a985fbeb82bc0114fad5689f (patch) | |
tree | c07f12c151fb4e0ddf52fbc6d5014515f1251d17 /modules/printbackends/file/gtkprintbackendfile.h | |
parent | b73597ff1669ee7b847dc2b8331bc9298622b5ae (diff) | |
download | gtk+-d14e9a14ad745c12a985fbeb82bc0114fad5689f.tar.gz |
configure.in gtk/Makefile.am Rename "pdf" backend to "file" backend. Step
2006-06-20 Christian Persch <chpe@cvs.gnome.org>
* configure.in
* gtk/Makefile.am
* modules/printbackends/Makefile.am
A modules/printbackends/file/.cvsignore
A modules/printbackends/file/Makefile.am
A modules/printbackends/file/gtkprintbackendfile.c
A modules/printbackends/file/gtkprintbackendfile.h
R modules/printbackends/pdf/*:
Rename "pdf" backend to "file" backend. Step 2 from bug #339592.
Diffstat (limited to 'modules/printbackends/file/gtkprintbackendfile.h')
-rw-r--r-- | modules/printbackends/file/gtkprintbackendfile.h | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/modules/printbackends/file/gtkprintbackendfile.h b/modules/printbackends/file/gtkprintbackendfile.h new file mode 100644 index 0000000000..94b30c3d4f --- /dev/null +++ b/modules/printbackends/file/gtkprintbackendfile.h @@ -0,0 +1,41 @@ +/* GTK - The GIMP Toolkit + * gtkprintbackendpdf.h: Default implementation of GtkPrintBackend + * for printing to a file + * Copyright (C) 2003, Red Hat, Inc. + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the + * Free Software Foundation, Inc., 59 Temple Place - Suite 330, + * Boston, MA 02111-1307, USA. + */ + +#ifndef __GTK_PRINT_BACKEND_FILE_H__ +#define __GTK_PRINT_BACKEND_FILE_H__ + +#include <glib-object.h> +#include "gtkprintbackend.h" + +G_BEGIN_DECLS + +#define GTK_TYPE_PRINT_BACKEND_FILE (gtk_print_backend_file_get_type ()) +#define GTK_PRINT_BACKEND_FILE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_PRINT_BACKEND_FILE, GtkPrintBackendFile)) +#define GTK_IS_PRINT_BACKEND_FILE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_PRINT_BACKEND_FILE)) + +typedef struct _GtkPrintBackendFile GtkPrintBackendFile; + +GtkPrintBackend *gtk_print_backend_file_new (void); +GType gtk_print_backend_file_get_type (void) G_GNUC_CONST; + +G_END_DECLS + +#endif /* __GTK_PRINT_BACKEND_FILE_H__ */ |