]> git.donarmstrong.com Git - xournal.git/blobdiff - src/xo-print.h
Fix "1.#J" bug; release 0.4.6.
[xournal.git] / src / xo-print.h
index bdfeee7e8d51e46aefcc78ddf7fd1d2f2940a713..95a96f7e826b36d62e72ceb83a4cfad5d9dc9feb 100644 (file)
@@ -1,3 +1,18 @@
+/*
+ *  This program is free software; you can redistribute it and/or
+ *  modify it under the terms of the GNU General Public
+ *  License as published by the Free Software Foundation; either
+ *  version 2 of the License, or (at your option) any later version.
+ *
+ *  This software 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
+ *  General Public License for more details.
+ *
+ *  You should have received a copy of the GNU General Public License
+ *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+
 typedef struct XrefTable {
   int *data;
   int last;
@@ -29,7 +44,7 @@ typedef struct PdfObj {
 typedef struct PdfFont {
   int n_obj;
   gboolean used_in_this_page;
-  unsigned char *filename;
+  char *filename;
   int font_id;
   gboolean is_truetype;
   int glyph_page;
@@ -67,4 +82,6 @@ gboolean pdf_parse_info(GString *pdfbuf, struct PdfInfo *pdfinfo, struct XrefTab
 
 gboolean print_to_pdf(char *filename);
 
-void print_job_render(GnomePrintJob *gpj, int fromPage, int toPage);
+#if GTK_CHECK_VERSION(2, 10, 0)
+void print_job_render_page(GtkPrintOperation *print, GtkPrintContext *context, gint pageno, gpointer user_data);
+#endif