summaryrefslogtreecommitdiff
path: root/gtk/gtkunixprint.h
diff options
context:
space:
mode:
authorMichael Natterer <mitch@imendio.org>2008-05-29 09:34:53 +0000
committerMichael Natterer <mitch@src.gnome.org>2008-05-29 09:34:53 +0000
commitc8e67f3cc6cca3cd7b5bce1ea981c04f9d234227 (patch)
tree134635ffca1437f74ef51fb4e8cb1f4d6a8e4313 /gtk/gtkunixprint.h
parent7c45a441d1a1c45e78f7a4a994fdda004870df7c (diff)
downloadgtk+-c8e67f3cc6cca3cd7b5bce1ea981c04f9d234227.tar.gz
gtk/Makefile.am add a single-include header for the unix print stuff.
2008-05-29 Michael Natterer <mitch@imendio.org> * gtk/Makefile.am * gtk/gtkunixprint.h: add a single-include header for the unix print stuff. * gtk/gtkpagesetupunixdialog.h * gtk/gtkprinter.h * gtk/gtkprintjob.h * gtk/gtkprintunixdialog.h: add single-include guards that #error out if GTK_DISABLE_SINGLE_INCLUDES is defined and any of these files is included individually. * gtk/gtkprintbackend.h * gtk/gtkprinter-private.h * modules/printbackends/cups/gtkprintbackendcups.c * modules/printbackends/cups/gtkprintercups.h * modules/printbackends/lpr/gtkprintbackendlpr.c * tests/buildertest.c * tests/defaultvaluetest.c * docs/tools/widgets.c: include <gtk/gtkunixprint.h> instead of individual files. svn path=/trunk/; revision=20230
Diffstat (limited to 'gtk/gtkunixprint.h')
-rw-r--r--gtk/gtkunixprint.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/gtk/gtkunixprint.h b/gtk/gtkunixprint.h
new file mode 100644
index 0000000000..69ca7d58b2
--- /dev/null
+++ b/gtk/gtkunixprint.h
@@ -0,0 +1,31 @@
+/* GtkUnixPrint
+ *
+ * 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_UNIX_PRINT_H__
+#define __GTK_UNIX_PRINT_H__
+
+#define __GTK_UNIX_PRINT_H_INSIDE__
+
+#include <gtk/gtkpagesetupunixdialog.h>
+#include <gtk/gtkprinter.h>
+#include <gtk/gtkprintjob.h>
+#include <gtk/gtkprintunixdialog.h>
+
+#undef __GTK_UNIX_PRINT_H_INSIDE__
+
+#endif /* __GTK_UNIX_PRINT_H__ */