2010-03-18 00:22:10 +03:00
|
|
|
//
|
2010-03-18 13:56:27 +03:00
|
|
|
// "$Id$"
|
2010-03-18 00:22:10 +03:00
|
|
|
//
|
2010-03-18 13:56:27 +03:00
|
|
|
// Printing support for the Fast Light Tool Kit (FLTK).
|
2010-03-18 00:22:10 +03:00
|
|
|
//
|
2016-02-05 19:34:42 +03:00
|
|
|
// Copyright 2010-2016 by Bill Spitzak and others.
|
2010-03-18 00:22:10 +03:00
|
|
|
//
|
2011-07-19 08:49:30 +04:00
|
|
|
// This library is free software. Distribution and use rights are outlined in
|
|
|
|
// the file "COPYING" which should have been included with this file. If this
|
|
|
|
// file is missing or damaged, see the license at:
|
2010-03-18 00:22:10 +03:00
|
|
|
//
|
2011-07-19 08:49:30 +04:00
|
|
|
// http://www.fltk.org/COPYING.php
|
2010-03-18 00:22:10 +03:00
|
|
|
//
|
|
|
|
// Please report all bugs and problems on the following page:
|
|
|
|
//
|
|
|
|
// http://www.fltk.org/str.php
|
|
|
|
//
|
2011-07-19 08:49:30 +04:00
|
|
|
|
2010-03-25 16:59:00 +03:00
|
|
|
/** \file Fl_Printer.H
|
2011-01-06 11:46:54 +03:00
|
|
|
\brief declaration of classes Fl_Printer, Fl_System_Printer and Fl_PostScript_Printer.
|
2010-03-25 16:59:00 +03:00
|
|
|
*/
|
2010-03-18 00:22:10 +03:00
|
|
|
|
2010-03-14 21:07:24 +03:00
|
|
|
#ifndef Fl_Printer_H
|
|
|
|
#define Fl_Printer_H
|
|
|
|
|
2010-12-28 21:14:59 +03:00
|
|
|
#include <FL/x.H>
|
2010-05-27 21:20:18 +04:00
|
|
|
#include <FL/Fl_Paged_Device.H>
|
2010-03-14 21:07:24 +03:00
|
|
|
#include <FL/fl_draw.H>
|
|
|
|
#include <FL/Fl_Pixmap.H>
|
|
|
|
#include <FL/Fl_RGB_Image.H>
|
|
|
|
#include <FL/Fl_Bitmap.H>
|
|
|
|
#include <stdio.h>
|
2016-01-04 01:54:29 +03:00
|
|
|
#ifdef WIN32
|
2011-01-01 22:05:30 +03:00
|
|
|
#include <commdlg.h>
|
2016-02-13 15:57:00 +03:00
|
|
|
#elif defined(__APPLE__) // PORTME: Fl_Surface_Driver ? - platform printer driver
|
2016-01-04 01:54:29 +03:00
|
|
|
// not needed
|
|
|
|
#elif defined(FL_PORTING)
|
|
|
|
# pragma message "FL_PORTING: include files needed for printing support"
|
|
|
|
#else // X11
|
|
|
|
#include <FL/Fl_PostScript.H>
|
2010-05-27 21:20:18 +04:00
|
|
|
#endif
|
2010-03-14 21:07:24 +03:00
|
|
|
|
2016-02-13 15:57:00 +03:00
|
|
|
#if defined(__APPLE__) || defined(WIN32) || defined(FL_DOXYGEN) // PORTME: Fl_Surface_Driver ? - platform printer driver
|
2011-01-06 09:06:57 +03:00
|
|
|
/**
|
|
|
|
Print support under MSWindows and Mac OS.
|
2011-01-05 00:42:02 +03:00
|
|
|
|
2011-01-06 09:06:57 +03:00
|
|
|
Class Fl_System_Printer is implemented only on the MSWindows and Mac OS platforms.
|
|
|
|
It has no public constructor.
|
2010-05-27 21:20:18 +04:00
|
|
|
Use Fl_Printer instead that is cross-platform and has the same API.
|
2010-03-20 11:31:19 +03:00
|
|
|
*/
|
2010-05-27 21:20:18 +04:00
|
|
|
class Fl_System_Printer : public Fl_Paged_Device {
|
2011-01-06 09:06:57 +03:00
|
|
|
friend class Fl_Printer;
|
2010-03-14 21:07:24 +03:00
|
|
|
private:
|
2016-02-13 15:57:00 +03:00
|
|
|
#ifdef __APPLE__ // PORTME: Fl_Surface_Driver ? - platform printer driver
|
2010-03-14 21:07:24 +03:00
|
|
|
float scale_x;
|
|
|
|
float scale_y;
|
|
|
|
float angle; // rotation angle in radians
|
2011-09-14 19:17:32 +04:00
|
|
|
PMPrintSession printSession;
|
|
|
|
PMPageFormat pageFormat;
|
|
|
|
PMPrintSettings printSettings;
|
2010-03-20 11:31:19 +03:00
|
|
|
#elif defined(WIN32)
|
2010-03-14 21:07:24 +03:00
|
|
|
int abortPrint;
|
|
|
|
PRINTDLG pd;
|
|
|
|
HDC hPr;
|
|
|
|
int prerr;
|
|
|
|
int left_margin;
|
|
|
|
int top_margin;
|
|
|
|
void absolute_printable_rect(int *x, int *y, int *w, int *h);
|
2010-03-20 11:31:19 +03:00
|
|
|
#endif
|
2011-01-06 09:06:57 +03:00
|
|
|
protected:
|
|
|
|
/** \brief The constructor */
|
|
|
|
Fl_System_Printer(void);
|
2010-03-14 21:07:24 +03:00
|
|
|
public:
|
|
|
|
int start_job(int pagecount, int *frompage = NULL, int *topage = NULL);
|
|
|
|
int start_page (void);
|
|
|
|
int printable_rect(int *w, int *h);
|
|
|
|
void margins(int *left, int *top, int *right, int *bottom);
|
2011-01-31 18:53:23 +03:00
|
|
|
void origin(int *x, int *y);
|
2010-03-14 21:07:24 +03:00
|
|
|
void origin(int x, int y);
|
2011-02-04 12:17:45 +03:00
|
|
|
void scale (float scale_x, float scale_y = 0.);
|
2010-03-14 21:07:24 +03:00
|
|
|
void rotate(float angle);
|
|
|
|
void translate(int x, int y);
|
|
|
|
void untranslate(void);
|
|
|
|
int end_page (void);
|
|
|
|
void end_job (void);
|
2016-02-13 15:57:00 +03:00
|
|
|
#ifdef __APPLE__ // PORTME: Fl_Surface_Driver ? - platform printer driver
|
2016-02-26 15:51:47 +03:00
|
|
|
void draw_decorated_window(Fl_Window *win, int x_offset, int y_offset);
|
2014-10-26 18:23:03 +03:00
|
|
|
void print_window_part(Fl_Window *win, int x, int y, int w, int h, int delta_x, int delta_y);
|
|
|
|
#endif
|
2011-01-06 09:06:57 +03:00
|
|
|
/** \brief The destructor */
|
2010-05-27 21:20:18 +04:00
|
|
|
~Fl_System_Printer(void);
|
|
|
|
}; // class Fl_System_Printer
|
2016-02-26 20:17:20 +03:00
|
|
|
#endif
|
2010-04-18 10:57:37 +04:00
|
|
|
|
2016-02-26 20:17:20 +03:00
|
|
|
#if defined(FL_PORTING)
|
2016-01-04 01:54:29 +03:00
|
|
|
|
|
|
|
# pragma message "FL_PORTING: define your own Fl_xxx_Printer class"
|
2016-01-05 02:09:32 +03:00
|
|
|
class Fl_XXX_Printer : public Fl_Paged_Device {
|
|
|
|
friend class Fl_Printer;
|
|
|
|
protected:
|
|
|
|
Fl_XXX_Printer(void) { }
|
|
|
|
};
|
2016-01-04 01:54:29 +03:00
|
|
|
|
2016-02-26 20:17:20 +03:00
|
|
|
#endif
|
|
|
|
|
2016-02-27 20:27:21 +03:00
|
|
|
#if defined(FL_DOXYGEN) || !(defined(__APPLE__) || defined(WIN32) || defined(FL_PORTING))
|
2016-01-04 01:54:29 +03:00
|
|
|
|
2011-01-06 09:06:57 +03:00
|
|
|
/**
|
2011-01-05 00:42:02 +03:00
|
|
|
Print support under Unix/Linux.
|
|
|
|
|
2010-10-12 13:25:37 +04:00
|
|
|
Class Fl_PostScript_Printer is implemented only on the Unix/Linux platform.
|
2011-01-06 09:06:57 +03:00
|
|
|
It has no public constructor.
|
2010-05-27 21:20:18 +04:00
|
|
|
Use Fl_Printer instead that is cross-platform and has the same API.
|
|
|
|
*/
|
|
|
|
class Fl_PostScript_Printer : public Fl_PostScript_File_Device {
|
2011-01-06 09:06:57 +03:00
|
|
|
friend class Fl_Printer;
|
|
|
|
protected:
|
2011-02-23 17:36:18 +03:00
|
|
|
/** The constructor */
|
|
|
|
Fl_PostScript_Printer(void) {};
|
2010-05-27 21:20:18 +04:00
|
|
|
public:
|
2010-04-11 22:42:35 +04:00
|
|
|
int start_job(int pages, int *firstpage = NULL, int *lastpage = NULL);
|
2010-05-27 21:20:18 +04:00
|
|
|
};
|
2010-04-11 22:42:35 +04:00
|
|
|
|
2010-05-27 21:20:18 +04:00
|
|
|
#endif
|
2010-04-11 22:42:35 +04:00
|
|
|
|
2010-05-27 21:20:18 +04:00
|
|
|
/**
|
2011-01-05 00:42:02 +03:00
|
|
|
* \brief OS-independent print support.
|
2010-05-27 21:20:18 +04:00
|
|
|
*
|
2015-02-26 18:38:54 +03:00
|
|
|
Fl_Printer allows to use all drawing, color, text, image, and clip FLTK functions, and to have them operate
|
2010-05-27 21:20:18 +04:00
|
|
|
on printed page(s). There are two main, non exclusive, ways to use it.
|
|
|
|
<ul><li>Print any widget (standard, custom, Fl_Window, Fl_Gl_Window) as it appears
|
2011-06-20 11:53:06 +04:00
|
|
|
on screen, with optional translation, scaling and rotation. This is done by calling print_widget(),
|
|
|
|
print_window() or print_window_part().
|
2010-10-12 13:25:37 +04:00
|
|
|
<li>Use a series of FLTK graphics commands (e.g., font, text, lines, colors, clip, image) to
|
2010-05-27 21:20:18 +04:00
|
|
|
compose a page appropriately shaped for printing.
|
|
|
|
</ul>
|
|
|
|
In both cases, begin by start_job(), start_page(), printable_rect() and origin() calls
|
|
|
|
and finish by end_page() and end_job() calls.
|
2015-02-26 18:38:54 +03:00
|
|
|
<p>Example of use: print a widget centered in a page
|
|
|
|
\code
|
|
|
|
#include <FL/Fl_Printer.H>
|
|
|
|
#include <FL/fl_draw.H>
|
|
|
|
int width, height;
|
|
|
|
Fl_Widget *widget = ... // a widget we want printed
|
|
|
|
Fl_Printer *printer = new Fl_Printer();
|
|
|
|
if (printer->start_job(1) == 0) {
|
|
|
|
printer->start_page();
|
|
|
|
printer->printable_rect(&width, &height);
|
|
|
|
fl_color(FL_BLACK);
|
|
|
|
fl_line_style(FL_SOLID, 2);
|
|
|
|
fl_rect(0, 0, width, height);
|
|
|
|
fl_font(FL_COURIER, 12);
|
|
|
|
time_t now; time(&now); fl_draw(ctime(&now), 0, fl_height());
|
|
|
|
printer->origin(width/2, height/2);
|
|
|
|
printer->print_widget(widget, -widget->w()/2, -widget->h()/2);
|
|
|
|
printer->end_page();
|
|
|
|
printer->end_job();
|
|
|
|
}
|
|
|
|
delete printer;
|
|
|
|
\endcode
|
|
|
|
<b>Platform specifics</b>
|
2010-05-27 21:20:18 +04:00
|
|
|
<ul>
|
|
|
|
<li>Unix/Linux platforms:
|
2015-01-19 17:16:18 +03:00
|
|
|
Unless it has been previously changed, the default paper size is A4.
|
|
|
|
To change that, press the "Properties" button of the "Print" dialog window
|
|
|
|
opened by an Fl_Printer::start_job() call. This opens a "Printer Properties" window where it's
|
|
|
|
possible to select the adequate paper size. Finally press the "Save" button therein to assign
|
|
|
|
the chosen paper size to the chosen printer for this and all further print operations.
|
|
|
|
<br>Class Fl_RGB_Image prints but loses its transparency if it has one.
|
2010-10-12 13:25:37 +04:00
|
|
|
See class Fl_PostScript_Graphics_Driver for a description of how UTF-8 strings appear in print.
|
2010-05-27 21:20:18 +04:00
|
|
|
Use the static public attributes of this class to set the print dialog to other languages
|
|
|
|
than English. For example, the "Printer:" dialog item Fl_Printer::dialog_printer can be set to French with:
|
|
|
|
\code
|
|
|
|
Fl_Printer::dialog_printer = "Imprimante:";
|
|
|
|
\endcode
|
2010-07-01 18:41:00 +04:00
|
|
|
before creation of the Fl_Printer object.
|
2010-05-27 21:20:18 +04:00
|
|
|
Use Fl_PostScript_File_Device::file_chooser_title to customize the title of the file chooser dialog that opens
|
|
|
|
when using the "Print To File" option of the print dialog.
|
|
|
|
<li>MSWindows platform: Transparent Fl_RGB_Image 's don't print with exact transparency on most printers.
|
|
|
|
Fl_RGB_Image 's don't rotate() well.
|
|
|
|
A workaround is to use the print_window_part() call.
|
|
|
|
<li>Mac OS X platform: all graphics requests print as on display.
|
|
|
|
</ul>
|
|
|
|
*/
|
2011-05-20 20:39:06 +04:00
|
|
|
class FL_EXPORT Fl_Printer : public Fl_Paged_Device {
|
2010-05-27 21:20:18 +04:00
|
|
|
public:
|
2011-01-05 00:42:02 +03:00
|
|
|
/** \brief The constructor */
|
2010-05-27 21:20:18 +04:00
|
|
|
Fl_Printer(void);
|
|
|
|
int start_job(int pagecount, int *frompage = NULL, int *topage = NULL);
|
|
|
|
int start_page(void);
|
|
|
|
int printable_rect(int *w, int *h);
|
|
|
|
void margins(int *left, int *top, int *right, int *bottom);
|
2011-01-31 18:53:23 +03:00
|
|
|
void origin(int *x, int *y);
|
2010-05-27 21:20:18 +04:00
|
|
|
void origin(int x, int y);
|
2011-02-04 12:17:45 +03:00
|
|
|
void scale(float scale_x, float scale_y = 0.);
|
2010-05-27 21:20:18 +04:00
|
|
|
void rotate(float angle);
|
|
|
|
void translate(int x, int y);
|
|
|
|
void untranslate(void);
|
|
|
|
int end_page (void);
|
|
|
|
void end_job (void);
|
2011-01-31 18:53:23 +03:00
|
|
|
void print_widget(Fl_Widget* widget, int delta_x=0, int delta_y=0);
|
|
|
|
void print_window_part(Fl_Window *win, int x, int y, int w, int h, int delta_x=0, int delta_y=0);
|
2016-02-26 15:51:47 +03:00
|
|
|
void draw_decorated_window(Fl_Window *win, int x_offset, int y_offset);
|
2011-04-06 16:11:26 +04:00
|
|
|
void set_current(void);
|
2010-05-27 21:20:18 +04:00
|
|
|
|
|
|
|
/** \name These attributes are effective under the Xlib platform only.
|
2010-03-28 18:03:40 +04:00
|
|
|
\{
|
|
|
|
*/
|
|
|
|
static const char *dialog_title;
|
|
|
|
static const char *dialog_printer;
|
|
|
|
static const char *dialog_range;
|
|
|
|
static const char *dialog_copies;
|
|
|
|
static const char *dialog_all;
|
|
|
|
static const char *dialog_pages;
|
|
|
|
static const char *dialog_from;
|
|
|
|
static const char *dialog_to;
|
|
|
|
static const char *dialog_properties;
|
|
|
|
static const char *dialog_copyNo;
|
|
|
|
static const char *dialog_print_button;
|
|
|
|
static const char *dialog_cancel_button;
|
2010-03-29 16:15:22 +04:00
|
|
|
static const char *dialog_print_to_file;
|
2010-03-28 18:03:40 +04:00
|
|
|
static const char *property_title;
|
|
|
|
static const char *property_pagesize;
|
|
|
|
static const char *property_mode;
|
|
|
|
static const char *property_use;
|
|
|
|
static const char *property_save;
|
|
|
|
static const char *property_cancel;
|
2010-05-27 21:20:18 +04:00
|
|
|
/** \} */
|
2016-02-05 19:34:42 +03:00
|
|
|
/** \brief The destructor */
|
|
|
|
~Fl_Printer(void);
|
|
|
|
|
2011-01-05 00:42:02 +03:00
|
|
|
private:
|
2016-02-13 15:57:00 +03:00
|
|
|
#if defined(WIN32) || defined(__APPLE__) // PORTME: Fl_Surface_Driver ? - system printer driver
|
2011-01-05 00:42:02 +03:00
|
|
|
Fl_System_Printer *printer;
|
2016-01-04 01:54:29 +03:00
|
|
|
#elif defined(FL_PORTING)
|
|
|
|
# pragma message "FL_PORTING: instantiate your own Fl_xxx_Printer here"
|
2016-01-05 02:09:32 +03:00
|
|
|
Fl_XXX_Printer *printer;
|
2011-01-05 00:42:02 +03:00
|
|
|
#else
|
|
|
|
Fl_PostScript_Printer *printer;
|
2010-05-27 21:20:18 +04:00
|
|
|
#endif
|
2011-01-05 00:42:02 +03:00
|
|
|
};
|
2010-03-14 21:07:24 +03:00
|
|
|
|
|
|
|
#endif // Fl_Printer_H
|
|
|
|
|
2010-03-18 00:22:10 +03:00
|
|
|
//
|
2010-03-18 13:56:27 +03:00
|
|
|
// End of "$Id$"
|
2010-03-18 00:22:10 +03:00
|
|
|
//
|