cleanup printer API usage of plotter headers

This commit is contained in:
Vincent Sanders 2016-05-04 15:43:43 +01:00
parent 4a4a442e6c
commit e41ad032fa
4 changed files with 9 additions and 5 deletions

View File

@ -49,6 +49,7 @@
#include "utils/nsoption.h" #include "utils/nsoption.h"
#include "utils/messages.h" #include "utils/messages.h"
#include "utils/utils.h" #include "utils/utils.h"
#include "desktop/plotters.h"
#include "desktop/printer.h" #include "desktop/printer.h"
#include "desktop/gui_layout.h" #include "desktop/gui_layout.h"
#include "desktop/mouse.h" #include "desktop/mouse.h"

View File

@ -35,6 +35,7 @@
#include "css/utils.h" #include "css/utils.h"
#include "render/box.h" #include "render/box.h"
#include "desktop/plotters.h"
#include "desktop/print.h" #include "desktop/print.h"
#include "desktop/printer.h" #include "desktop/printer.h"

View File

@ -16,18 +16,19 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
/** \file /**
* \file
* Printer interface. * Printer interface.
* *
* Interface to generic plotters, initialization, handling pages and * Printer interface to generic plotters, initialization, handling
* cleaning up. * pages and cleaning up.
*/ */
#ifndef NETSURF_DESKTOP_PRINTER_H #ifndef NETSURF_DESKTOP_PRINTER_H
#define NETSURF_DESKTOP_PRINTER_H #define NETSURF_DESKTOP_PRINTER_H
#include "desktop/plotters.h" struct plotter_table;
#include "desktop/print.h" struct print_settings;
/** Printer interface */ /** Printer interface */
struct printer{ struct printer{

View File

@ -36,6 +36,7 @@
#include "content/content.h" #include "content/content.h"
#include "content/hlcache.h" #include "content/hlcache.h"
#include "utils/nsoption.h" #include "utils/nsoption.h"
#include "desktop/plotters.h"
#include "desktop/print.h" #include "desktop/print.h"
#include "desktop/printer.h" #include "desktop/printer.h"