X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fpsppire-output-window.h;h=74d3bb97be3cf9884933a5d0985600b949fdc8c3;hb=adf4bc614f52fd20d34190dc710af5db9a897c40;hp=621a9e24f90ef07a0182dca4e1b3b3ed4bfdf9f4;hpb=9e0e4996fad6563f0a1ce628b80db5c23ef8279e;p=pspp diff --git a/src/ui/gui/psppire-output-window.h b/src/ui/gui/psppire-output-window.h index 621a9e24f9..74d3bb97be 100644 --- a/src/ui/gui/psppire-output-window.h +++ b/src/ui/gui/psppire-output-window.h @@ -1,5 +1,5 @@ /* PSPPIRE - a graphical user interface for PSPP. - Copyright (C) 2008 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 @@ -21,17 +21,10 @@ #include #include -#include -#include -#include "psppire-window.h" #include - -extern int viewer_length; -extern int viewer_width ; - - -#define OUTPUT_FILE_NAME "psppire.txt" - +#include "psppire-window.h" +#include "psppire.h" +#include "libpspp/string-map.h" G_BEGIN_DECLS @@ -55,9 +48,27 @@ struct _PsppireOutputWindow PsppireWindow parent; /* */ - GtkTextBuffer *buffer; /* The buffer which contains the text */ - GtkWidget *textview ; - FILE *fp; /* The file it's viewing */ + struct psppire_output_driver *driver; + GtkLayout *output; + int max_width; + int y; + + struct string_map render_opts; + GtkTreeView *overview; + 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; + + gboolean dispose_has_run; }; struct _PsppireOutputWindowClass @@ -69,9 +80,7 @@ struct _PsppireOutputWindowClass GType psppire_output_window_get_type (void); GtkWidget* psppire_output_window_new (void); - -void psppire_output_window_reload (void); - +void psppire_output_window_setup (void); G_END_DECLS