Set the output driver parameters dynamically from the output window style.
[pspp-builds.git] / src / ui / gui / psppire-output-window.h
index bc0da8531b750c80180d6b42dd8f45d4a92d6c27..4fc019991c8cdb264b764620f20918d1aa060e74 100644 (file)
@@ -1,5 +1,5 @@
 /* PSPPIRE - a graphical user interface for PSPP.
-   Copyright (C) 2008, 2009  Free Software Foundation
+   Copyright (C) 2008, 2009, 2010, 2011  Free Software Foundation
 
    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
 
 #include <glib.h>
 #include <glib-object.h>
-#include <gtk/gtkaction.h>
-#include <gtk/gtktextbuffer.h>
+#include <gtk/gtk.h>
 #include "psppire-window.h"
 #include "psppire.h"
-#include <gtk/gtk.h>
-
-extern int viewer_length;
-extern int viewer_width ;
+#include "libpspp/string-map.h"
 
 
 G_BEGIN_DECLS
@@ -57,12 +53,20 @@ struct _PsppireOutputWindow
   int max_width;
   int y;
 
+  struct string_map render_opts;
   GtkTreeView *overview;
-  int last_table_num;
-  GtkTreeIter last_top_level;
+  GtkTreeIter cur_command;
+  bool in_command;
 
   struct output_item **items;
   size_t n_items, allocated_items;
+
+  /* Variables pertaining to printing */
+  GtkPrintSettings *print_settings;
+  struct xr_driver *print_xrd;
+  int print_item;
+  int print_n_pages;
+  gboolean paginated;
 };
 
 struct _PsppireOutputWindowClass