/usr/include/ggobi/print.h is in ggobi 2.1.11-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 | /* print.h */
/*
* ggobi
* Copyright (C) AT&T, Duncan Temple Lang, Dianne Cook 1999-2005
*
* ggobi is free software; you may use, redistribute, and/or modify it
* under the terms of the Eclipse Public License, which is distributed
* with the source code and displayed on the ggobi web site,
* www.ggobi.org. For more information, contact the authors:
*
* Deborah F. Swayne dfs@research.att.com
* Di Cook dicook@iastate.edu
* Duncan Temple Lang duncan@wald.ucdavis.edu
* Andreas Buja andreas.buja@wharton.upenn.edu
*/
#ifndef GGOBI_PRINT_H
#define GGOBI_PRINT_H
/*
This file defines structures that store the
settings that control how printing is done.
*/
#include "ggobi.h"
#include "types.h"
typedef struct _OutputDescription {
DataMode format;
char *fileName;
gboolean toPrinter;
} OutputDescription;
struct _PrintOptions {
int width;
int height;
OutputDescription *file;
/* Add more fields here to store other settings. */
/*
Here's what we had in xgobi:
Postscript printer:
Really the postscript printer command, eg lpr -Pserif
Background color: (a string)
Foreground color: (a string)
Color for white glyphs: (a string)
The purpose of this was to let a plot with a dark background be
printed with a light background, and then to allow white glyphs
to be reset as dark glyphs. I don't know how to do this now.
Color names don't really make sense any more, since ggobi doesn't
use color names, and they aren't portable to Windows, are they?
Should people specify r,g,b? Or should we bring up a color wheel
to let them set the color?
Pointsize:
Then we had two buttons: write to file, or send to printer
*/
GdkColor background;
GdkColor foreground;
};
/*
This is a typedef for a class of routines that can be registered
for performing the actual printing.
For example, we might register a C routine in R which would call
a function to do the printing. In the stand-alone ggobi, we would
have a version that does the printing via SVG.
*/
struct _PrintInfo;
typedef gboolean (*PrintDialogHandler)(PrintOptions *options, struct _PrintInfo *data, void *userData);
struct _GGobiPrintHandler;
typedef struct _GGobiPrintHandler GGobiPrintHandler;
typedef PrintOptions *(*PrintCallbackHandler)(PrintOptions *options, displayd *dpy, ggobid *gg, GGobiPrintHandler *);
struct _GGobiPrintHandler {
PrintCallbackHandler callback;
PrintDialogHandler dialog;
void *userData;
};
extern GGobiPrintHandler DefaultPrintHandler;
typedef struct _PrintInfo {
PrintOptions *options;
displayd *dpy;
ggobid *ggobi;
PrintDialogHandler handler;
void *userData;
GtkWidget *dialog;
} PrintInfo;
/*
This presents a dialog which allows the user to edit the setting options.
The
The PrintHandler allows the caller to specify a routine that will be invoked
when the user clicks on the Ok button of the dialog.
*/
PrintOptions *showPrintDialog(PrintOptions *options, displayd *dpy, ggobid *gg, GGobiPrintHandler*);
GtkWidget *
createPrintDialog(displayd *dpy);
void setStandardPrintHandlers();
PrintOptions *getDefaultPrintOptions(PrintOptions *opts);
gboolean PrintAsSVG(PrintOptions *options, PrintInfo *info, void *userData);
#endif
|