2004-12-25 14:25:21 +03:00
|
|
|
/*
|
|
|
|
* Copyright 2004 James Bursa <bursa@users.sourceforge.net>
|
2007-08-08 20:16:03 +04:00
|
|
|
*
|
|
|
|
* This file is part of NetSurf, http://www.netsurf-browser.org/
|
|
|
|
*
|
|
|
|
* NetSurf is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; version 2 of the License.
|
|
|
|
*
|
|
|
|
* NetSurf is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2004-12-25 14:25:21 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
/** \file
|
|
|
|
* Target independent plotting (RISC OS screen implementation).
|
|
|
|
*/
|
|
|
|
|
2008-07-27 02:29:15 +04:00
|
|
|
#include <stdbool.h>
|
2006-03-21 20:22:41 +03:00
|
|
|
#include <math.h>
|
2004-12-25 14:25:21 +03:00
|
|
|
#include "oslib/colourtrans.h"
|
|
|
|
#include "oslib/draw.h"
|
|
|
|
#include "oslib/os.h"
|
2007-05-31 02:39:54 +04:00
|
|
|
#include "desktop/plotters.h"
|
|
|
|
#include "render/font.h"
|
|
|
|
#include "riscos/bitmap.h"
|
|
|
|
#include "riscos/image.h"
|
|
|
|
#include "riscos/gui.h"
|
2008-03-10 03:51:51 +03:00
|
|
|
#include "riscos/oslib_pre7.h"
|
2007-05-31 02:39:54 +04:00
|
|
|
#include "utils/log.h"
|
2004-12-25 14:25:21 +03:00
|
|
|
|
|
|
|
|
|
|
|
static bool ro_plot_clg(colour c);
|
|
|
|
static bool ro_plot_rectangle(int x0, int y0, int width, int height,
|
|
|
|
int line_width, colour c, bool dotted, bool dashed);
|
|
|
|
static bool ro_plot_line(int x0, int y0, int x1, int y1, int width,
|
|
|
|
colour c, bool dotted, bool dashed);
|
2007-08-07 08:00:17 +04:00
|
|
|
static bool ro_plot_draw_path(const draw_path * const path, int width,
|
2004-12-25 14:25:21 +03:00
|
|
|
colour c, bool dotted, bool dashed);
|
|
|
|
static bool ro_plot_polygon(int *p, unsigned int n, colour fill);
|
2007-08-07 08:00:17 +04:00
|
|
|
static bool ro_plot_path(float *p, unsigned int n, colour fill, float width,
|
|
|
|
colour c, float *transform);
|
2004-12-25 14:25:21 +03:00
|
|
|
static bool ro_plot_fill(int x0, int y0, int x1, int y1, colour c);
|
|
|
|
static bool ro_plot_clip(int clip_x0, int clip_y0,
|
|
|
|
int clip_x1, int clip_y1);
|
2008-04-07 15:15:09 +04:00
|
|
|
static bool ro_plot_text(int x, int y, const struct css_style *style,
|
2004-12-25 14:25:21 +03:00
|
|
|
const char *text, size_t length, colour bg, colour c);
|
2006-03-19 22:03:07 +03:00
|
|
|
static bool ro_plot_disc(int x, int y, int radius, colour colour, bool filled);
|
2006-03-21 20:22:41 +03:00
|
|
|
static bool ro_plot_arc(int x, int y, int radius, int angle1, int angle2,
|
|
|
|
colour c);
|
2004-12-25 14:25:21 +03:00
|
|
|
static bool ro_plot_bitmap(int x, int y, int width, int height,
|
First merge of Adam Blokus' GSoC work from his branch 'branches/adamblokus/netsurf'.
Merged revisions 4212-4552,4554-4709,4711-4724 via svnmerge from
svn://svn.netsurf-browser.org/branches/adamblokus/netsurf
........
r4212 | adamblokus | 2008-05-26 19:42:31 +0200 (Mon, 26 May 2008) | 4 lines
Pdf plotting skeleton pinned on Print Preview in GTK.
Just creates a file and draws lines.
........
r4213 | adamblokus | 2008-05-27 00:11:03 +0200 (Tue, 27 May 2008) | 4 lines
Pdf plotter - added drawing some graphic primitives.
Still with limited functionality, but a snapshot of the
currently viewed page can be made and resembles the original.
........
r4214 | adamblokus | 2008-05-27 11:43:31 +0200 (Tue, 27 May 2008) | 2 lines
Corrected encoding name
........
r4215 | adamblokus | 2008-05-27 12:47:26 +0200 (Tue, 27 May 2008) | 3 lines
Colours and polygons added.
........
r4217 | adamblokus | 2008-05-27 21:39:35 +0200 (Tue, 27 May 2008) | 6 lines
Added rectangles, filled boxes and clipping.
Taken into consideration joty's comments.
Added a todo list for this part.
Added some debug stuff and checking boundaries.
........
r4218 | adamblokus | 2008-05-28 12:37:30 +0200 (Wed, 28 May 2008) | 2 lines
Added path ploting (not sure if valid argument order for bezier) and dashed/dotted line styles
........
r4221 | adamblokus | 2008-05-28 22:11:05 +0200 (Wed, 28 May 2008) | 3 lines
Some more options in graphic primitives and normalizing some parameters.
........
r4235 | adamblokus | 2008-05-31 22:54:56 +0200 (Sat, 31 May 2008) | 4 lines
Plotting changed as jmb suggested (is the least invasive one from the possible)
Added dummy bitmap plotting - way of plotting an image is determined by its type.
........
r4251 | adamblokus | 2008-06-03 17:12:15 +0200 (Tue, 03 Jun 2008) | 3 lines
Added plotting jpg and png images - quite a lot to improve in this code, but it seems to work ;)
........
r4263 | adamblokus | 2008-06-05 14:20:32 +0200 (Thu, 05 Jun 2008) | 3 lines
Added hadling images other than png and jpeg - with transparency.
........
r4267 | adamblokus | 2008-06-06 15:36:34 +0200 (Fri, 06 Jun 2008) | 5 lines
Added handling NULL-returns from all mallocs.
Added plot_bitmap_tile handling.
Changed code style a little.
........
r4327 | adamblokus | 2008-06-12 17:46:34 +0200 (Thu, 12 Jun 2008) | 5 lines
Added a first prototype of the paged-output organization.
Still not sure about naming, file locations etc.
Works with the same pdf plotting as before.
........
r4328 | adamblokus | 2008-06-13 13:52:15 +0200 (Fri, 13 Jun 2008) | 4 lines
Added primitive width adjustment and outputing the whole
website in multiple pages.
........
r4336 | joty | 2008-06-15 15:06:57 +0200 (Sun, 15 Jun 2008) | 1 line
Fix RISC OS build failure (change r4235 wasn't complete).
........
r4337 | joty | 2008-06-15 18:15:32 +0200 (Sun, 15 Jun 2008) | 16 lines
This enables "Export PDF" in RISC OS build:
- Docs/Doxyfile(PREDEFINED): Added WITH_PDF_EXPORT
- Makefile.sources(S_PDF): Add to RISC OS target as well.
- utils/config.h: Define WITH_PDF_EXPORT which controls if we want to have
PDF export functionality or not.
- riscos/save_pdf.c,riscos/save_pdf.h(save_as_pdf): Use PDF print API made
by Adam Blokus to write a PDF file under RISC OS.
- riscos/save.c: Call save_as_pdf added.
- riscos/menus.c: Add 'Export->PDF' menu entry.
- riscos/menus.h(menu_action): Added BROWSER_EXPORT_PDF.
- desktop/gui.h(gui_save_type): Added GUI_SAVE_PDF.
- desktop/print.c(print_run): Added return value.
- Makefile(CCACHE): Moved closed to the place where CC is set for the first time.
(LDFLAGS): Centralised adding all non-pkgconfig libraries and added Haru + PNG libs.
........
r4343 | adamblokus | 2008-06-16 01:08:52 +0200 (Mon, 16 Jun 2008) | 3 lines
Added margins and page size adjustment.
........
r4412 | adamblokus | 2008-06-21 20:22:07 +0200 (Sat, 21 Jun 2008) | 4 lines
Added 'fuzzy' margins on page bottom.
Disabled direct png embedding, because it is too unstable in Haru now.
........
r4421 | adamblokus | 2008-06-22 18:52:28 +0200 (Sun, 22 Jun 2008) | 2 lines
Added "Save as.." dialog and Export->PDF menu entry. Print preview still works with default path.
........
r4437 | adamblokus | 2008-06-25 02:44:46 +0200 (Wed, 25 Jun 2008) | 4 lines
Added skeleton of applying loose layout.
Minor code cleaning-up.
........
r4492 | adamblokus | 2008-07-02 09:02:42 +0200 (Wed, 02 Jul 2008) | 5 lines
Implemented the elementar ideas of the loose layout.
Added scaling in the printing routine.
Added some basic demonstrations.
........
r4493 | adamblokus | 2008-07-02 09:05:55 +0200 (Wed, 02 Jul 2008) | 3 lines
Cleaned up the loosing code - commited to much of leftover rubbish code.
........
r4507 | adamblokus | 2008-07-04 14:25:48 +0200 (Fri, 04 Jul 2008) | 4 lines
Added duplicating box tree and current content - window flickering during printing solved.
Minor error checking after new HPDF_Image_AddSMask call.
........
r4515 | adamblokus | 2008-07-06 22:28:16 +0200 (Sun, 06 Jul 2008) | 2 lines
Changes in loosen layout (image resizing).
........
r4517 | adamblokus | 2008-07-06 22:38:23 +0200 (Sun, 06 Jul 2008) | 2 lines
Added pdf font handling and rendering functions with the use of Haru functions.
........
r4555 | adamblokus | 2008-07-10 00:59:05 +0200 (Thu, 10 Jul 2008) | 2 lines
Added a very basic and still buggy GTK print implementation.
........
r4565 | adamblokus | 2008-07-10 14:50:16 +0200 (Thu, 10 Jul 2008) | 2 lines
Added gtk printing one more time - I have forgotten to add the main file.
........
r4566 | adamblokus | 2008-07-10 14:57:02 +0200 (Thu, 10 Jul 2008) | 2 lines
removed error with comment
........
r4569 | adamblokus | 2008-07-10 15:52:55 +0200 (Thu, 10 Jul 2008) | 5 lines
Major style improvements - added a lot of doxygen comments,
followed tlsa's style guide.
Added some more error checking, too.
........
r4575 | adamblokus | 2008-07-10 18:48:26 +0200 (Thu, 10 Jul 2008) | 2 lines
Cleaned up the code.
........
r4687 | adamblokus | 2008-07-17 14:17:19 +0200 (Thu, 17 Jul 2008) | 2 lines
Changed everything according to jmb's review plus some minor bug fixes to gtk_print.
........
r4688 | adamblokus | 2008-07-17 17:16:34 +0200 (Thu, 17 Jul 2008) | 2 lines
Solved the netsurf.glade clash from r4421.
........
r4693 | adamblokus | 2008-07-18 18:11:51 +0200 (Fri, 18 Jul 2008) | 2 lines
Fixed bug with wrong number of pages in gtk printing.
........
r4695 | adamblokus | 2008-07-18 19:59:24 +0200 (Fri, 18 Jul 2008) | 3 lines
- fixed uncommented line from the previous commit
- fixed bug with scale bigger than 1.0 (incorretly clipped page)
........
r4696 | adamblokus | 2008-07-18 23:28:00 +0200 (Fri, 18 Jul 2008) | 2 lines
Fixed bug in gtk_print_font_paint (and nsfont_paint).
........
r4697 | adamblokus | 2008-07-18 23:35:38 +0200 (Fri, 18 Jul 2008) | 2 lines
Bug fix in nsfont_paint.
........
r4711 | adamblokus | 2008-07-19 22:44:15 +0200 (Sat, 19 Jul 2008) | 2 lines
Added gtk_selection files.
........
r4712 | adamblokus | 2008-07-20 11:15:06 +0200 (Sun, 20 Jul 2008) | 2 lines
Addam missing glade files.
........
r4713 | joty | 2008-07-20 17:13:10 +0200 (Sun, 20 Jul 2008) | 1 line
Follow change r4517 for RISC OS and BeOS platforms : Added pdf font handling and rendering functions with the use of Haru functions.
........
r4714 | joty | 2008-07-20 18:19:50 +0200 (Sun, 20 Jul 2008) | 1 line
Declare haru_nsfont iso define an instance for each C source including the font_haru.h header. This fixes breakage of PDF export on RISC OS.
........
r4724 | adamblokus | 2008-07-23 03:30:08 +0200 (Wed, 23 Jul 2008) | 6 lines
Applied changes according to joty's review.
Added checking the dimensions of a plotted image to pdf plotter.
Commented out jpg embedding (it seems to cause some problems
I'll bring it back when I figure out what's wrong) .
Added back some files removed by mistake.
........
svn path=/trunk/netsurf/; revision=4741
2008-07-26 20:01:59 +04:00
|
|
|
struct bitmap *bitmap, colour bg, struct content *content);
|
2004-12-25 14:25:21 +03:00
|
|
|
static bool ro_plot_bitmap_tile(int x, int y, int width, int height,
|
|
|
|
struct bitmap *bitmap, colour bg,
|
First merge of Adam Blokus' GSoC work from his branch 'branches/adamblokus/netsurf'.
Merged revisions 4212-4552,4554-4709,4711-4724 via svnmerge from
svn://svn.netsurf-browser.org/branches/adamblokus/netsurf
........
r4212 | adamblokus | 2008-05-26 19:42:31 +0200 (Mon, 26 May 2008) | 4 lines
Pdf plotting skeleton pinned on Print Preview in GTK.
Just creates a file and draws lines.
........
r4213 | adamblokus | 2008-05-27 00:11:03 +0200 (Tue, 27 May 2008) | 4 lines
Pdf plotter - added drawing some graphic primitives.
Still with limited functionality, but a snapshot of the
currently viewed page can be made and resembles the original.
........
r4214 | adamblokus | 2008-05-27 11:43:31 +0200 (Tue, 27 May 2008) | 2 lines
Corrected encoding name
........
r4215 | adamblokus | 2008-05-27 12:47:26 +0200 (Tue, 27 May 2008) | 3 lines
Colours and polygons added.
........
r4217 | adamblokus | 2008-05-27 21:39:35 +0200 (Tue, 27 May 2008) | 6 lines
Added rectangles, filled boxes and clipping.
Taken into consideration joty's comments.
Added a todo list for this part.
Added some debug stuff and checking boundaries.
........
r4218 | adamblokus | 2008-05-28 12:37:30 +0200 (Wed, 28 May 2008) | 2 lines
Added path ploting (not sure if valid argument order for bezier) and dashed/dotted line styles
........
r4221 | adamblokus | 2008-05-28 22:11:05 +0200 (Wed, 28 May 2008) | 3 lines
Some more options in graphic primitives and normalizing some parameters.
........
r4235 | adamblokus | 2008-05-31 22:54:56 +0200 (Sat, 31 May 2008) | 4 lines
Plotting changed as jmb suggested (is the least invasive one from the possible)
Added dummy bitmap plotting - way of plotting an image is determined by its type.
........
r4251 | adamblokus | 2008-06-03 17:12:15 +0200 (Tue, 03 Jun 2008) | 3 lines
Added plotting jpg and png images - quite a lot to improve in this code, but it seems to work ;)
........
r4263 | adamblokus | 2008-06-05 14:20:32 +0200 (Thu, 05 Jun 2008) | 3 lines
Added hadling images other than png and jpeg - with transparency.
........
r4267 | adamblokus | 2008-06-06 15:36:34 +0200 (Fri, 06 Jun 2008) | 5 lines
Added handling NULL-returns from all mallocs.
Added plot_bitmap_tile handling.
Changed code style a little.
........
r4327 | adamblokus | 2008-06-12 17:46:34 +0200 (Thu, 12 Jun 2008) | 5 lines
Added a first prototype of the paged-output organization.
Still not sure about naming, file locations etc.
Works with the same pdf plotting as before.
........
r4328 | adamblokus | 2008-06-13 13:52:15 +0200 (Fri, 13 Jun 2008) | 4 lines
Added primitive width adjustment and outputing the whole
website in multiple pages.
........
r4336 | joty | 2008-06-15 15:06:57 +0200 (Sun, 15 Jun 2008) | 1 line
Fix RISC OS build failure (change r4235 wasn't complete).
........
r4337 | joty | 2008-06-15 18:15:32 +0200 (Sun, 15 Jun 2008) | 16 lines
This enables "Export PDF" in RISC OS build:
- Docs/Doxyfile(PREDEFINED): Added WITH_PDF_EXPORT
- Makefile.sources(S_PDF): Add to RISC OS target as well.
- utils/config.h: Define WITH_PDF_EXPORT which controls if we want to have
PDF export functionality or not.
- riscos/save_pdf.c,riscos/save_pdf.h(save_as_pdf): Use PDF print API made
by Adam Blokus to write a PDF file under RISC OS.
- riscos/save.c: Call save_as_pdf added.
- riscos/menus.c: Add 'Export->PDF' menu entry.
- riscos/menus.h(menu_action): Added BROWSER_EXPORT_PDF.
- desktop/gui.h(gui_save_type): Added GUI_SAVE_PDF.
- desktop/print.c(print_run): Added return value.
- Makefile(CCACHE): Moved closed to the place where CC is set for the first time.
(LDFLAGS): Centralised adding all non-pkgconfig libraries and added Haru + PNG libs.
........
r4343 | adamblokus | 2008-06-16 01:08:52 +0200 (Mon, 16 Jun 2008) | 3 lines
Added margins and page size adjustment.
........
r4412 | adamblokus | 2008-06-21 20:22:07 +0200 (Sat, 21 Jun 2008) | 4 lines
Added 'fuzzy' margins on page bottom.
Disabled direct png embedding, because it is too unstable in Haru now.
........
r4421 | adamblokus | 2008-06-22 18:52:28 +0200 (Sun, 22 Jun 2008) | 2 lines
Added "Save as.." dialog and Export->PDF menu entry. Print preview still works with default path.
........
r4437 | adamblokus | 2008-06-25 02:44:46 +0200 (Wed, 25 Jun 2008) | 4 lines
Added skeleton of applying loose layout.
Minor code cleaning-up.
........
r4492 | adamblokus | 2008-07-02 09:02:42 +0200 (Wed, 02 Jul 2008) | 5 lines
Implemented the elementar ideas of the loose layout.
Added scaling in the printing routine.
Added some basic demonstrations.
........
r4493 | adamblokus | 2008-07-02 09:05:55 +0200 (Wed, 02 Jul 2008) | 3 lines
Cleaned up the loosing code - commited to much of leftover rubbish code.
........
r4507 | adamblokus | 2008-07-04 14:25:48 +0200 (Fri, 04 Jul 2008) | 4 lines
Added duplicating box tree and current content - window flickering during printing solved.
Minor error checking after new HPDF_Image_AddSMask call.
........
r4515 | adamblokus | 2008-07-06 22:28:16 +0200 (Sun, 06 Jul 2008) | 2 lines
Changes in loosen layout (image resizing).
........
r4517 | adamblokus | 2008-07-06 22:38:23 +0200 (Sun, 06 Jul 2008) | 2 lines
Added pdf font handling and rendering functions with the use of Haru functions.
........
r4555 | adamblokus | 2008-07-10 00:59:05 +0200 (Thu, 10 Jul 2008) | 2 lines
Added a very basic and still buggy GTK print implementation.
........
r4565 | adamblokus | 2008-07-10 14:50:16 +0200 (Thu, 10 Jul 2008) | 2 lines
Added gtk printing one more time - I have forgotten to add the main file.
........
r4566 | adamblokus | 2008-07-10 14:57:02 +0200 (Thu, 10 Jul 2008) | 2 lines
removed error with comment
........
r4569 | adamblokus | 2008-07-10 15:52:55 +0200 (Thu, 10 Jul 2008) | 5 lines
Major style improvements - added a lot of doxygen comments,
followed tlsa's style guide.
Added some more error checking, too.
........
r4575 | adamblokus | 2008-07-10 18:48:26 +0200 (Thu, 10 Jul 2008) | 2 lines
Cleaned up the code.
........
r4687 | adamblokus | 2008-07-17 14:17:19 +0200 (Thu, 17 Jul 2008) | 2 lines
Changed everything according to jmb's review plus some minor bug fixes to gtk_print.
........
r4688 | adamblokus | 2008-07-17 17:16:34 +0200 (Thu, 17 Jul 2008) | 2 lines
Solved the netsurf.glade clash from r4421.
........
r4693 | adamblokus | 2008-07-18 18:11:51 +0200 (Fri, 18 Jul 2008) | 2 lines
Fixed bug with wrong number of pages in gtk printing.
........
r4695 | adamblokus | 2008-07-18 19:59:24 +0200 (Fri, 18 Jul 2008) | 3 lines
- fixed uncommented line from the previous commit
- fixed bug with scale bigger than 1.0 (incorretly clipped page)
........
r4696 | adamblokus | 2008-07-18 23:28:00 +0200 (Fri, 18 Jul 2008) | 2 lines
Fixed bug in gtk_print_font_paint (and nsfont_paint).
........
r4697 | adamblokus | 2008-07-18 23:35:38 +0200 (Fri, 18 Jul 2008) | 2 lines
Bug fix in nsfont_paint.
........
r4711 | adamblokus | 2008-07-19 22:44:15 +0200 (Sat, 19 Jul 2008) | 2 lines
Added gtk_selection files.
........
r4712 | adamblokus | 2008-07-20 11:15:06 +0200 (Sun, 20 Jul 2008) | 2 lines
Addam missing glade files.
........
r4713 | joty | 2008-07-20 17:13:10 +0200 (Sun, 20 Jul 2008) | 1 line
Follow change r4517 for RISC OS and BeOS platforms : Added pdf font handling and rendering functions with the use of Haru functions.
........
r4714 | joty | 2008-07-20 18:19:50 +0200 (Sun, 20 Jul 2008) | 1 line
Declare haru_nsfont iso define an instance for each C source including the font_haru.h header. This fixes breakage of PDF export on RISC OS.
........
r4724 | adamblokus | 2008-07-23 03:30:08 +0200 (Wed, 23 Jul 2008) | 6 lines
Applied changes according to joty's review.
Added checking the dimensions of a plotted image to pdf plotter.
Commented out jpg embedding (it seems to cause some problems
I'll bring it back when I figure out what's wrong) .
Added back some files removed by mistake.
........
svn path=/trunk/netsurf/; revision=4741
2008-07-26 20:01:59 +04:00
|
|
|
bool repeat_x, bool repeat_y, struct content *content);
|
2004-12-25 14:25:21 +03:00
|
|
|
|
|
|
|
|
|
|
|
struct plotter_table plot;
|
|
|
|
|
|
|
|
const struct plotter_table ro_plotters = {
|
|
|
|
ro_plot_clg,
|
|
|
|
ro_plot_rectangle,
|
|
|
|
ro_plot_line,
|
|
|
|
ro_plot_polygon,
|
|
|
|
ro_plot_fill,
|
|
|
|
ro_plot_clip,
|
|
|
|
ro_plot_text,
|
|
|
|
ro_plot_disc,
|
2006-03-21 20:22:41 +03:00
|
|
|
ro_plot_arc,
|
2004-12-25 14:25:21 +03:00
|
|
|
ro_plot_bitmap,
|
|
|
|
ro_plot_bitmap_tile,
|
2006-07-10 13:52:31 +04:00
|
|
|
NULL,
|
2006-08-19 23:31:07 +04:00
|
|
|
NULL,
|
2007-08-07 08:00:17 +04:00
|
|
|
NULL,
|
|
|
|
ro_plot_path,
|
2008-07-30 23:17:27 +04:00
|
|
|
true
|
2004-12-25 14:25:21 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
int ro_plot_origin_x = 0;
|
|
|
|
int ro_plot_origin_y = 0;
|
2005-02-20 16:19:19 +03:00
|
|
|
float ro_plot_scale = 1.0;
|
2004-12-25 14:25:21 +03:00
|
|
|
|
2006-07-16 20:52:28 +04:00
|
|
|
/** One version of the A9home OS is incapable of drawing patterned lines */
|
|
|
|
bool ro_plot_patterned_lines = true;
|
|
|
|
|
2004-12-25 14:25:21 +03:00
|
|
|
|
|
|
|
bool ro_plot_clg(colour c)
|
|
|
|
{
|
|
|
|
os_error *error;
|
|
|
|
error = xcolourtrans_set_gcol(c << 8,
|
2008-03-10 03:51:51 +03:00
|
|
|
colourtrans_SET_BG_GCOL | colourtrans_USE_ECFS_GCOL,
|
2004-12-25 14:25:21 +03:00
|
|
|
os_ACTION_OVERWRITE, 0, 0);
|
|
|
|
if (error) {
|
|
|
|
LOG(("xcolourtrans_set_gcol: 0x%x: %s",
|
|
|
|
error->errnum, error->errmess));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
error = xos_clg();
|
|
|
|
if (error) {
|
|
|
|
LOG(("xos_clg: 0x%x: %s", error->errnum, error->errmess));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool ro_plot_rectangle(int x0, int y0, int width, int height,
|
|
|
|
int line_width, colour c, bool dotted, bool dashed)
|
|
|
|
{
|
|
|
|
const int path[] = { draw_MOVE_TO,
|
|
|
|
(ro_plot_origin_x + x0 * 2) * 256,
|
|
|
|
(ro_plot_origin_y - y0 * 2 - 1) * 256,
|
|
|
|
draw_LINE_TO,
|
|
|
|
(ro_plot_origin_x + (x0 + width) * 2) * 256,
|
|
|
|
(ro_plot_origin_y - y0 * 2 - 1) * 256,
|
|
|
|
draw_LINE_TO,
|
|
|
|
(ro_plot_origin_x + (x0 + width) * 2) * 256,
|
|
|
|
(ro_plot_origin_y - (y0 + height) * 2 - 1) * 256,
|
|
|
|
draw_LINE_TO,
|
|
|
|
(ro_plot_origin_x + x0 * 2) * 256,
|
|
|
|
(ro_plot_origin_y - (y0 + height) * 2 - 1) * 256,
|
|
|
|
draw_CLOSE_LINE,
|
|
|
|
(ro_plot_origin_x + x0 * 2) * 256,
|
|
|
|
(ro_plot_origin_y - y0 * 2 - 1) * 256,
|
|
|
|
draw_END_PATH };
|
|
|
|
|
2007-08-07 08:00:17 +04:00
|
|
|
return ro_plot_draw_path((const draw_path *) path, line_width, c,
|
2004-12-25 14:25:21 +03:00
|
|
|
dotted, dashed);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool ro_plot_line(int x0, int y0, int x1, int y1, int width,
|
|
|
|
colour c, bool dotted, bool dashed)
|
|
|
|
{
|
|
|
|
const int path[] = { draw_MOVE_TO,
|
|
|
|
(ro_plot_origin_x + x0 * 2) * 256,
|
|
|
|
(ro_plot_origin_y - y0 * 2 - 1) * 256,
|
|
|
|
draw_LINE_TO,
|
|
|
|
(ro_plot_origin_x + x1 * 2) * 256,
|
|
|
|
(ro_plot_origin_y - y1 * 2 - 1) * 256,
|
|
|
|
draw_END_PATH };
|
|
|
|
|
2007-08-07 08:00:17 +04:00
|
|
|
return ro_plot_draw_path((const draw_path *) path, width, c, dotted, dashed);
|
2004-12-25 14:25:21 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-08-07 08:00:17 +04:00
|
|
|
bool ro_plot_draw_path(const draw_path * const path, int width,
|
2004-12-25 14:25:21 +03:00
|
|
|
colour c, bool dotted, bool dashed)
|
|
|
|
{
|
|
|
|
static const draw_line_style line_style = { draw_JOIN_MITRED,
|
|
|
|
draw_CAP_BUTT, draw_CAP_BUTT, 0, 0x7fffffff,
|
|
|
|
0, 0, 0, 0 };
|
|
|
|
draw_dash_pattern dash = { 0, 1, { 512 } };
|
|
|
|
const draw_dash_pattern *dash_pattern = 0;
|
|
|
|
os_error *error;
|
|
|
|
|
|
|
|
if (width < 1)
|
|
|
|
width = 1;
|
|
|
|
|
2006-07-16 20:52:28 +04:00
|
|
|
if (ro_plot_patterned_lines) {
|
|
|
|
if (dotted) {
|
|
|
|
dash.elements[0] = 512 * width;
|
|
|
|
dash_pattern = ‐
|
|
|
|
} else if (dashed) {
|
|
|
|
dash.elements[0] = 1536 * width;
|
|
|
|
dash_pattern = ‐
|
|
|
|
}
|
2004-12-25 14:25:21 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
error = xcolourtrans_set_gcol(c << 8, 0, os_ACTION_OVERWRITE, 0, 0);
|
|
|
|
if (error) {
|
|
|
|
LOG(("xcolourtrans_set_gcol: 0x%x: %s",
|
|
|
|
error->errnum, error->errmess));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
error = xdraw_stroke(path, 0, 0, 0, width * 2 * 256,
|
|
|
|
&line_style, dash_pattern);
|
|
|
|
if (error) {
|
|
|
|
LOG(("xdraw_stroke: 0x%x: %s",
|
|
|
|
error->errnum, error->errmess));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool ro_plot_polygon(int *p, unsigned int n, colour fill)
|
|
|
|
{
|
|
|
|
int path[n * 3 + 2];
|
|
|
|
unsigned int i;
|
|
|
|
os_error *error;
|
|
|
|
|
|
|
|
for (i = 0; i != n; i++) {
|
|
|
|
path[i * 3 + 0] = draw_LINE_TO;
|
|
|
|
path[i * 3 + 1] = (ro_plot_origin_x + p[i * 2 + 0] * 2) * 256;
|
|
|
|
path[i * 3 + 2] = (ro_plot_origin_y - p[i * 2 + 1] * 2) * 256;
|
|
|
|
}
|
|
|
|
path[0] = draw_MOVE_TO;
|
|
|
|
path[n * 3] = draw_END_PATH;
|
|
|
|
path[n * 3 + 1] = 0;
|
|
|
|
|
|
|
|
error = xcolourtrans_set_gcol(fill << 8, 0, os_ACTION_OVERWRITE, 0, 0);
|
|
|
|
if (error) {
|
|
|
|
LOG(("xcolourtrans_set_gcol: 0x%x: %s",
|
2007-08-07 08:00:17 +04:00
|
|
|
error->errnum, error->errmess));
|
2004-12-25 14:25:21 +03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
error = xdraw_fill((draw_path *) path, 0, 0, 0);
|
|
|
|
if (error) {
|
|
|
|
LOG(("xdraw_fill: 0x%x: %s",
|
2007-08-07 08:00:17 +04:00
|
|
|
error->errnum, error->errmess));
|
2004-12-25 14:25:21 +03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-08-07 08:00:17 +04:00
|
|
|
bool ro_plot_path(float *p, unsigned int n, colour fill, float width,
|
|
|
|
colour c, float *transform)
|
|
|
|
{
|
|
|
|
static const draw_line_style line_style = { draw_JOIN_MITRED,
|
|
|
|
draw_CAP_BUTT, draw_CAP_BUTT, 0, 0x7fffffff,
|
|
|
|
0, 0, 0, 0 };
|
2007-12-11 07:06:49 +03:00
|
|
|
int *path = 0;
|
2007-08-07 08:00:17 +04:00
|
|
|
unsigned int i;
|
|
|
|
os_trfm trfm;
|
|
|
|
os_error *error;
|
|
|
|
|
|
|
|
if (n == 0)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
if (p[0] != PLOTTER_PATH_MOVE) {
|
|
|
|
LOG(("path doesn't start with a move"));
|
2007-12-11 07:06:49 +03:00
|
|
|
goto error;
|
2007-08-07 08:00:17 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
path = malloc(sizeof *path * (n + 10));
|
|
|
|
if (!path) {
|
|
|
|
LOG(("out of memory"));
|
2007-12-11 07:06:49 +03:00
|
|
|
goto error;
|
2007-08-07 08:00:17 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < n; ) {
|
|
|
|
if (p[i] == PLOTTER_PATH_MOVE) {
|
|
|
|
path[i] = draw_MOVE_TO;
|
|
|
|
path[i + 1] = p[i + 1] * 2 * 256;
|
|
|
|
path[i + 2] = -p[i + 2] * 2 * 256;
|
|
|
|
i += 3;
|
|
|
|
} else if (p[i] == PLOTTER_PATH_CLOSE) {
|
|
|
|
path[i] = draw_CLOSE_LINE;
|
|
|
|
i++;
|
|
|
|
} else if (p[i] == PLOTTER_PATH_LINE) {
|
|
|
|
path[i] = draw_LINE_TO;
|
|
|
|
path[i + 1] = p[i + 1] * 2 * 256;
|
|
|
|
path[i + 2] = -p[i + 2] * 2 * 256;
|
|
|
|
i += 3;
|
|
|
|
} else if (p[i] == PLOTTER_PATH_BEZIER) {
|
|
|
|
path[i] = draw_BEZIER_TO;
|
|
|
|
path[i + 1] = p[i + 1] * 2 * 256;
|
|
|
|
path[i + 2] = -p[i + 2] * 2 * 256;
|
|
|
|
path[i + 3] = p[i + 3] * 2 * 256;
|
|
|
|
path[i + 4] = -p[i + 4] * 2 * 256;
|
|
|
|
path[i + 5] = p[i + 5] * 2 * 256;
|
|
|
|
path[i + 6] = -p[i + 6] * 2 * 256;
|
|
|
|
i += 7;
|
|
|
|
} else {
|
|
|
|
LOG(("bad path command %f", p[i]));
|
2007-12-11 07:06:49 +03:00
|
|
|
goto error;
|
2007-08-07 08:00:17 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
path[i] = draw_END_PATH;
|
|
|
|
path[i + 1] = 0;
|
|
|
|
|
|
|
|
trfm.entries[0][0] = transform[0] * 0x10000;
|
|
|
|
trfm.entries[0][1] = transform[1] * 0x10000;
|
|
|
|
trfm.entries[1][0] = transform[2] * 0x10000;
|
|
|
|
trfm.entries[1][1] = transform[3] * 0x10000;
|
|
|
|
trfm.entries[2][0] = (ro_plot_origin_x + transform[4] * 2) * 256;
|
|
|
|
trfm.entries[2][1] = (ro_plot_origin_y - transform[5] * 2) * 256;
|
|
|
|
|
|
|
|
if (fill != TRANSPARENT) {
|
|
|
|
error = xcolourtrans_set_gcol(fill << 8, 0,
|
|
|
|
os_ACTION_OVERWRITE, 0, 0);
|
|
|
|
if (error) {
|
|
|
|
LOG(("xcolourtrans_set_gcol: 0x%x: %s",
|
|
|
|
error->errnum, error->errmess));
|
2007-12-11 07:06:49 +03:00
|
|
|
goto error;
|
2007-08-07 08:00:17 +04:00
|
|
|
}
|
|
|
|
|
2007-12-11 05:48:04 +03:00
|
|
|
error = xdraw_fill((draw_path *) path, 0, &trfm, 0);
|
2007-08-07 08:00:17 +04:00
|
|
|
if (error) {
|
|
|
|
LOG(("xdraw_stroke: 0x%x: %s",
|
|
|
|
error->errnum, error->errmess));
|
2007-12-11 07:06:49 +03:00
|
|
|
goto error;
|
2007-08-07 08:00:17 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (c != TRANSPARENT) {
|
|
|
|
error = xcolourtrans_set_gcol(c << 8, 0,
|
|
|
|
os_ACTION_OVERWRITE, 0, 0);
|
|
|
|
if (error) {
|
|
|
|
LOG(("xcolourtrans_set_gcol: 0x%x: %s",
|
|
|
|
error->errnum, error->errmess));
|
2007-12-11 07:06:49 +03:00
|
|
|
goto error;
|
2007-08-07 08:00:17 +04:00
|
|
|
}
|
|
|
|
|
2007-12-11 05:48:04 +03:00
|
|
|
error = xdraw_stroke((draw_path *) path, 0, &trfm, 0,
|
|
|
|
width * 2 * 256, &line_style, 0);
|
2007-08-07 08:00:17 +04:00
|
|
|
if (error) {
|
|
|
|
LOG(("xdraw_stroke: 0x%x: %s",
|
|
|
|
error->errnum, error->errmess));
|
2007-12-11 07:06:49 +03:00
|
|
|
goto error;
|
2007-08-07 08:00:17 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
2007-12-11 07:06:49 +03:00
|
|
|
|
|
|
|
error:
|
|
|
|
free(path);
|
|
|
|
return false;
|
2007-08-07 08:00:17 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-12-25 14:25:21 +03:00
|
|
|
bool ro_plot_fill(int x0, int y0, int x1, int y1, colour c)
|
|
|
|
{
|
|
|
|
os_error *error;
|
|
|
|
|
2008-03-10 03:51:51 +03:00
|
|
|
error = xcolourtrans_set_gcol(c << 8, colourtrans_USE_ECFS_GCOL,
|
2004-12-25 14:25:21 +03:00
|
|
|
os_ACTION_OVERWRITE, 0, 0);
|
|
|
|
if (error) {
|
|
|
|
LOG(("xcolourtrans_set_gcol: 0x%x: %s",
|
|
|
|
error->errnum, error->errmess));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
error = xos_plot(os_MOVE_TO,
|
|
|
|
ro_plot_origin_x + x0 * 2,
|
|
|
|
ro_plot_origin_y - y0 * 2 - 1);
|
|
|
|
if (error) {
|
|
|
|
LOG(("xos_plot: 0x%x: %s", error->errnum, error->errmess));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
error = xos_plot(os_PLOT_RECTANGLE | os_PLOT_TO,
|
|
|
|
ro_plot_origin_x + x1 * 2 - 1,
|
|
|
|
ro_plot_origin_y - y1 * 2);
|
|
|
|
if (error) {
|
|
|
|
LOG(("xos_plot: 0x%x: %s", error->errnum, error->errmess));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool ro_plot_clip(int clip_x0, int clip_y0,
|
|
|
|
int clip_x1, int clip_y1)
|
|
|
|
{
|
|
|
|
os_error *error;
|
2005-07-16 09:54:45 +04:00
|
|
|
char buf[12];
|
2004-12-25 14:25:21 +03:00
|
|
|
|
|
|
|
clip_x0 = ro_plot_origin_x + clip_x0 * 2;
|
|
|
|
clip_y0 = ro_plot_origin_y - clip_y0 * 2 - 1;
|
|
|
|
clip_x1 = ro_plot_origin_x + clip_x1 * 2 - 1;
|
|
|
|
clip_y1 = ro_plot_origin_y - clip_y1 * 2;
|
|
|
|
|
|
|
|
if (clip_x1 < clip_x0 || clip_y0 < clip_y1) {
|
|
|
|
LOG(("bad clip rectangle %i %i %i %i",
|
|
|
|
clip_x0, clip_y0, clip_x1, clip_y1));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2005-07-16 09:54:45 +04:00
|
|
|
buf[0] = os_VDU_SET_GRAPHICS_WINDOW;
|
|
|
|
buf[1] = clip_x0;
|
|
|
|
buf[2] = clip_x0 >> 8;
|
|
|
|
buf[3] = clip_y1;
|
|
|
|
buf[4] = clip_y1 >> 8;
|
|
|
|
buf[5] = clip_x1;
|
|
|
|
buf[6] = clip_x1 >> 8;
|
|
|
|
buf[7] = clip_y0;
|
|
|
|
buf[8] = clip_y0 >> 8;
|
|
|
|
|
|
|
|
error = xos_writen(buf, 9);
|
2004-12-25 14:25:21 +03:00
|
|
|
if (error) {
|
2005-07-16 09:54:45 +04:00
|
|
|
LOG(("xos_writen: 0x%x: %s", error->errnum, error->errmess));
|
2004-12-25 14:25:21 +03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-04-07 15:15:09 +04:00
|
|
|
bool ro_plot_text(int x, int y, const struct css_style *style,
|
2004-12-25 14:25:21 +03:00
|
|
|
const char *text, size_t length, colour bg, colour c)
|
|
|
|
{
|
|
|
|
os_error *error;
|
|
|
|
|
2005-02-20 16:19:19 +03:00
|
|
|
error = xcolourtrans_set_font_colours(font_CURRENT,
|
2004-12-25 14:25:21 +03:00
|
|
|
bg << 8, c << 8, 14, 0, 0, 0);
|
|
|
|
if (error) {
|
|
|
|
LOG(("xcolourtrans_set_font_colours: 0x%x: %s",
|
|
|
|
error->errnum, error->errmess));
|
|
|
|
return false;
|
|
|
|
}
|
2006-11-27 18:35:18 +03:00
|
|
|
|
2005-02-20 16:19:19 +03:00
|
|
|
return nsfont_paint(style, text, length,
|
2005-04-12 23:11:35 +04:00
|
|
|
ro_plot_origin_x + x * 2,
|
|
|
|
ro_plot_origin_y - y * 2,
|
2005-02-20 16:19:19 +03:00
|
|
|
ro_plot_scale);
|
2004-12-25 14:25:21 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-03-19 22:03:07 +03:00
|
|
|
bool ro_plot_disc(int x, int y, int radius, colour colour, bool filled)
|
2004-12-25 14:25:21 +03:00
|
|
|
{
|
|
|
|
os_error *error;
|
|
|
|
|
|
|
|
error = xcolourtrans_set_gcol(colour << 8, 0,
|
|
|
|
os_ACTION_OVERWRITE, 0, 0);
|
|
|
|
if (error) {
|
|
|
|
LOG(("xcolourtrans_set_gcol: 0x%x: %s",
|
|
|
|
error->errnum, error->errmess));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
error = xos_plot(os_MOVE_TO,
|
|
|
|
ro_plot_origin_x + x * 2,
|
|
|
|
ro_plot_origin_y - y * 2);
|
|
|
|
if (error) {
|
|
|
|
LOG(("xos_plot: 0x%x: %s", error->errnum, error->errmess));
|
|
|
|
return false;
|
|
|
|
}
|
2006-03-19 22:03:07 +03:00
|
|
|
if (filled) {
|
|
|
|
error = xos_plot(os_PLOT_CIRCLE | os_PLOT_BY, radius * 2, 0);
|
|
|
|
} else {
|
|
|
|
error = xos_plot(os_PLOT_CIRCLE_OUTLINE | os_PLOT_BY,
|
|
|
|
radius * 2, 0);
|
|
|
|
}
|
2004-12-25 14:25:21 +03:00
|
|
|
if (error) {
|
|
|
|
LOG(("xos_plot: 0x%x: %s", error->errnum, error->errmess));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2006-03-21 20:22:41 +03:00
|
|
|
bool ro_plot_arc(int x, int y, int radius, int angle1, int angle2, colour c)
|
|
|
|
{
|
|
|
|
os_error *error;
|
|
|
|
int sx, sy, ex, ey;
|
|
|
|
double t;
|
|
|
|
|
|
|
|
x = ro_plot_origin_x + x * 2;
|
|
|
|
y = ro_plot_origin_y - y * 2;
|
|
|
|
radius <<= 1;
|
2006-11-27 18:35:18 +03:00
|
|
|
|
2006-03-21 20:22:41 +03:00
|
|
|
error = xcolourtrans_set_gcol(c << 8, 0,
|
|
|
|
os_ACTION_OVERWRITE, 0, 0);
|
|
|
|
|
|
|
|
if (error) {
|
|
|
|
LOG(("xcolourtrans_set_gcol: 0x%x: %s",
|
|
|
|
error->errnum, error->errmess));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
t = ((double)angle1 * M_PI) / 180.0;
|
|
|
|
sx = (x + (int)(radius * cos(t)));
|
|
|
|
sy = (y + (int)(radius * sin(t)));
|
|
|
|
|
|
|
|
t = ((double)angle2 * M_PI) / 180.0;
|
|
|
|
ex = (x + (int)(radius * cos(t)));
|
|
|
|
ey = (y + (int)(radius * sin(t)));
|
|
|
|
|
|
|
|
error = xos_plot(os_MOVE_TO, x, y); /* move to centre */
|
|
|
|
if (error) {
|
|
|
|
LOG(("xos_plot: 0x%x: %s", error->errnum, error->errmess));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
error = xos_plot(os_MOVE_TO, sx, sy); /* move to start */
|
|
|
|
if (error) {
|
|
|
|
LOG(("xos_plot: 0x%x: %s", error->errnum, error->errmess));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
error = xos_plot(os_PLOT_ARC | os_PLOT_TO, ex, ey); /* arc to end */
|
|
|
|
if (error) {
|
|
|
|
LOG(("xos_plot: 0x%x: %s", error->errnum, error->errmess));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2004-12-25 14:25:21 +03:00
|
|
|
|
|
|
|
bool ro_plot_bitmap(int x, int y, int width, int height,
|
First merge of Adam Blokus' GSoC work from his branch 'branches/adamblokus/netsurf'.
Merged revisions 4212-4552,4554-4709,4711-4724 via svnmerge from
svn://svn.netsurf-browser.org/branches/adamblokus/netsurf
........
r4212 | adamblokus | 2008-05-26 19:42:31 +0200 (Mon, 26 May 2008) | 4 lines
Pdf plotting skeleton pinned on Print Preview in GTK.
Just creates a file and draws lines.
........
r4213 | adamblokus | 2008-05-27 00:11:03 +0200 (Tue, 27 May 2008) | 4 lines
Pdf plotter - added drawing some graphic primitives.
Still with limited functionality, but a snapshot of the
currently viewed page can be made and resembles the original.
........
r4214 | adamblokus | 2008-05-27 11:43:31 +0200 (Tue, 27 May 2008) | 2 lines
Corrected encoding name
........
r4215 | adamblokus | 2008-05-27 12:47:26 +0200 (Tue, 27 May 2008) | 3 lines
Colours and polygons added.
........
r4217 | adamblokus | 2008-05-27 21:39:35 +0200 (Tue, 27 May 2008) | 6 lines
Added rectangles, filled boxes and clipping.
Taken into consideration joty's comments.
Added a todo list for this part.
Added some debug stuff and checking boundaries.
........
r4218 | adamblokus | 2008-05-28 12:37:30 +0200 (Wed, 28 May 2008) | 2 lines
Added path ploting (not sure if valid argument order for bezier) and dashed/dotted line styles
........
r4221 | adamblokus | 2008-05-28 22:11:05 +0200 (Wed, 28 May 2008) | 3 lines
Some more options in graphic primitives and normalizing some parameters.
........
r4235 | adamblokus | 2008-05-31 22:54:56 +0200 (Sat, 31 May 2008) | 4 lines
Plotting changed as jmb suggested (is the least invasive one from the possible)
Added dummy bitmap plotting - way of plotting an image is determined by its type.
........
r4251 | adamblokus | 2008-06-03 17:12:15 +0200 (Tue, 03 Jun 2008) | 3 lines
Added plotting jpg and png images - quite a lot to improve in this code, but it seems to work ;)
........
r4263 | adamblokus | 2008-06-05 14:20:32 +0200 (Thu, 05 Jun 2008) | 3 lines
Added hadling images other than png and jpeg - with transparency.
........
r4267 | adamblokus | 2008-06-06 15:36:34 +0200 (Fri, 06 Jun 2008) | 5 lines
Added handling NULL-returns from all mallocs.
Added plot_bitmap_tile handling.
Changed code style a little.
........
r4327 | adamblokus | 2008-06-12 17:46:34 +0200 (Thu, 12 Jun 2008) | 5 lines
Added a first prototype of the paged-output organization.
Still not sure about naming, file locations etc.
Works with the same pdf plotting as before.
........
r4328 | adamblokus | 2008-06-13 13:52:15 +0200 (Fri, 13 Jun 2008) | 4 lines
Added primitive width adjustment and outputing the whole
website in multiple pages.
........
r4336 | joty | 2008-06-15 15:06:57 +0200 (Sun, 15 Jun 2008) | 1 line
Fix RISC OS build failure (change r4235 wasn't complete).
........
r4337 | joty | 2008-06-15 18:15:32 +0200 (Sun, 15 Jun 2008) | 16 lines
This enables "Export PDF" in RISC OS build:
- Docs/Doxyfile(PREDEFINED): Added WITH_PDF_EXPORT
- Makefile.sources(S_PDF): Add to RISC OS target as well.
- utils/config.h: Define WITH_PDF_EXPORT which controls if we want to have
PDF export functionality or not.
- riscos/save_pdf.c,riscos/save_pdf.h(save_as_pdf): Use PDF print API made
by Adam Blokus to write a PDF file under RISC OS.
- riscos/save.c: Call save_as_pdf added.
- riscos/menus.c: Add 'Export->PDF' menu entry.
- riscos/menus.h(menu_action): Added BROWSER_EXPORT_PDF.
- desktop/gui.h(gui_save_type): Added GUI_SAVE_PDF.
- desktop/print.c(print_run): Added return value.
- Makefile(CCACHE): Moved closed to the place where CC is set for the first time.
(LDFLAGS): Centralised adding all non-pkgconfig libraries and added Haru + PNG libs.
........
r4343 | adamblokus | 2008-06-16 01:08:52 +0200 (Mon, 16 Jun 2008) | 3 lines
Added margins and page size adjustment.
........
r4412 | adamblokus | 2008-06-21 20:22:07 +0200 (Sat, 21 Jun 2008) | 4 lines
Added 'fuzzy' margins on page bottom.
Disabled direct png embedding, because it is too unstable in Haru now.
........
r4421 | adamblokus | 2008-06-22 18:52:28 +0200 (Sun, 22 Jun 2008) | 2 lines
Added "Save as.." dialog and Export->PDF menu entry. Print preview still works with default path.
........
r4437 | adamblokus | 2008-06-25 02:44:46 +0200 (Wed, 25 Jun 2008) | 4 lines
Added skeleton of applying loose layout.
Minor code cleaning-up.
........
r4492 | adamblokus | 2008-07-02 09:02:42 +0200 (Wed, 02 Jul 2008) | 5 lines
Implemented the elementar ideas of the loose layout.
Added scaling in the printing routine.
Added some basic demonstrations.
........
r4493 | adamblokus | 2008-07-02 09:05:55 +0200 (Wed, 02 Jul 2008) | 3 lines
Cleaned up the loosing code - commited to much of leftover rubbish code.
........
r4507 | adamblokus | 2008-07-04 14:25:48 +0200 (Fri, 04 Jul 2008) | 4 lines
Added duplicating box tree and current content - window flickering during printing solved.
Minor error checking after new HPDF_Image_AddSMask call.
........
r4515 | adamblokus | 2008-07-06 22:28:16 +0200 (Sun, 06 Jul 2008) | 2 lines
Changes in loosen layout (image resizing).
........
r4517 | adamblokus | 2008-07-06 22:38:23 +0200 (Sun, 06 Jul 2008) | 2 lines
Added pdf font handling and rendering functions with the use of Haru functions.
........
r4555 | adamblokus | 2008-07-10 00:59:05 +0200 (Thu, 10 Jul 2008) | 2 lines
Added a very basic and still buggy GTK print implementation.
........
r4565 | adamblokus | 2008-07-10 14:50:16 +0200 (Thu, 10 Jul 2008) | 2 lines
Added gtk printing one more time - I have forgotten to add the main file.
........
r4566 | adamblokus | 2008-07-10 14:57:02 +0200 (Thu, 10 Jul 2008) | 2 lines
removed error with comment
........
r4569 | adamblokus | 2008-07-10 15:52:55 +0200 (Thu, 10 Jul 2008) | 5 lines
Major style improvements - added a lot of doxygen comments,
followed tlsa's style guide.
Added some more error checking, too.
........
r4575 | adamblokus | 2008-07-10 18:48:26 +0200 (Thu, 10 Jul 2008) | 2 lines
Cleaned up the code.
........
r4687 | adamblokus | 2008-07-17 14:17:19 +0200 (Thu, 17 Jul 2008) | 2 lines
Changed everything according to jmb's review plus some minor bug fixes to gtk_print.
........
r4688 | adamblokus | 2008-07-17 17:16:34 +0200 (Thu, 17 Jul 2008) | 2 lines
Solved the netsurf.glade clash from r4421.
........
r4693 | adamblokus | 2008-07-18 18:11:51 +0200 (Fri, 18 Jul 2008) | 2 lines
Fixed bug with wrong number of pages in gtk printing.
........
r4695 | adamblokus | 2008-07-18 19:59:24 +0200 (Fri, 18 Jul 2008) | 3 lines
- fixed uncommented line from the previous commit
- fixed bug with scale bigger than 1.0 (incorretly clipped page)
........
r4696 | adamblokus | 2008-07-18 23:28:00 +0200 (Fri, 18 Jul 2008) | 2 lines
Fixed bug in gtk_print_font_paint (and nsfont_paint).
........
r4697 | adamblokus | 2008-07-18 23:35:38 +0200 (Fri, 18 Jul 2008) | 2 lines
Bug fix in nsfont_paint.
........
r4711 | adamblokus | 2008-07-19 22:44:15 +0200 (Sat, 19 Jul 2008) | 2 lines
Added gtk_selection files.
........
r4712 | adamblokus | 2008-07-20 11:15:06 +0200 (Sun, 20 Jul 2008) | 2 lines
Addam missing glade files.
........
r4713 | joty | 2008-07-20 17:13:10 +0200 (Sun, 20 Jul 2008) | 1 line
Follow change r4517 for RISC OS and BeOS platforms : Added pdf font handling and rendering functions with the use of Haru functions.
........
r4714 | joty | 2008-07-20 18:19:50 +0200 (Sun, 20 Jul 2008) | 1 line
Declare haru_nsfont iso define an instance for each C source including the font_haru.h header. This fixes breakage of PDF export on RISC OS.
........
r4724 | adamblokus | 2008-07-23 03:30:08 +0200 (Wed, 23 Jul 2008) | 6 lines
Applied changes according to joty's review.
Added checking the dimensions of a plotted image to pdf plotter.
Commented out jpg embedding (it seems to cause some problems
I'll bring it back when I figure out what's wrong) .
Added back some files removed by mistake.
........
svn path=/trunk/netsurf/; revision=4741
2008-07-26 20:01:59 +04:00
|
|
|
struct bitmap *bitmap, colour bg, struct content *content)
|
2004-12-25 14:25:21 +03:00
|
|
|
{
|
2008-06-01 04:15:53 +04:00
|
|
|
char *buffer;
|
|
|
|
|
|
|
|
buffer = bitmap_get_buffer(bitmap);
|
|
|
|
if (!buffer) {
|
|
|
|
LOG(("bitmap_get_buffer failed"));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2006-01-25 03:20:21 +03:00
|
|
|
return image_redraw(bitmap->sprite_area,
|
2004-12-25 14:25:21 +03:00
|
|
|
ro_plot_origin_x + x * 2,
|
|
|
|
ro_plot_origin_y - y * 2,
|
|
|
|
width, height,
|
|
|
|
bitmap->width,
|
|
|
|
bitmap->height,
|
|
|
|
bg,
|
|
|
|
false, false, false,
|
2006-02-22 04:58:19 +03:00
|
|
|
bitmap_get_opaque(bitmap) ? IMAGE_PLOT_TINCT_OPAQUE :
|
2004-12-25 14:25:21 +03:00
|
|
|
IMAGE_PLOT_TINCT_ALPHA);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool ro_plot_bitmap_tile(int x, int y, int width, int height,
|
|
|
|
struct bitmap *bitmap, colour bg,
|
First merge of Adam Blokus' GSoC work from his branch 'branches/adamblokus/netsurf'.
Merged revisions 4212-4552,4554-4709,4711-4724 via svnmerge from
svn://svn.netsurf-browser.org/branches/adamblokus/netsurf
........
r4212 | adamblokus | 2008-05-26 19:42:31 +0200 (Mon, 26 May 2008) | 4 lines
Pdf plotting skeleton pinned on Print Preview in GTK.
Just creates a file and draws lines.
........
r4213 | adamblokus | 2008-05-27 00:11:03 +0200 (Tue, 27 May 2008) | 4 lines
Pdf plotter - added drawing some graphic primitives.
Still with limited functionality, but a snapshot of the
currently viewed page can be made and resembles the original.
........
r4214 | adamblokus | 2008-05-27 11:43:31 +0200 (Tue, 27 May 2008) | 2 lines
Corrected encoding name
........
r4215 | adamblokus | 2008-05-27 12:47:26 +0200 (Tue, 27 May 2008) | 3 lines
Colours and polygons added.
........
r4217 | adamblokus | 2008-05-27 21:39:35 +0200 (Tue, 27 May 2008) | 6 lines
Added rectangles, filled boxes and clipping.
Taken into consideration joty's comments.
Added a todo list for this part.
Added some debug stuff and checking boundaries.
........
r4218 | adamblokus | 2008-05-28 12:37:30 +0200 (Wed, 28 May 2008) | 2 lines
Added path ploting (not sure if valid argument order for bezier) and dashed/dotted line styles
........
r4221 | adamblokus | 2008-05-28 22:11:05 +0200 (Wed, 28 May 2008) | 3 lines
Some more options in graphic primitives and normalizing some parameters.
........
r4235 | adamblokus | 2008-05-31 22:54:56 +0200 (Sat, 31 May 2008) | 4 lines
Plotting changed as jmb suggested (is the least invasive one from the possible)
Added dummy bitmap plotting - way of plotting an image is determined by its type.
........
r4251 | adamblokus | 2008-06-03 17:12:15 +0200 (Tue, 03 Jun 2008) | 3 lines
Added plotting jpg and png images - quite a lot to improve in this code, but it seems to work ;)
........
r4263 | adamblokus | 2008-06-05 14:20:32 +0200 (Thu, 05 Jun 2008) | 3 lines
Added hadling images other than png and jpeg - with transparency.
........
r4267 | adamblokus | 2008-06-06 15:36:34 +0200 (Fri, 06 Jun 2008) | 5 lines
Added handling NULL-returns from all mallocs.
Added plot_bitmap_tile handling.
Changed code style a little.
........
r4327 | adamblokus | 2008-06-12 17:46:34 +0200 (Thu, 12 Jun 2008) | 5 lines
Added a first prototype of the paged-output organization.
Still not sure about naming, file locations etc.
Works with the same pdf plotting as before.
........
r4328 | adamblokus | 2008-06-13 13:52:15 +0200 (Fri, 13 Jun 2008) | 4 lines
Added primitive width adjustment and outputing the whole
website in multiple pages.
........
r4336 | joty | 2008-06-15 15:06:57 +0200 (Sun, 15 Jun 2008) | 1 line
Fix RISC OS build failure (change r4235 wasn't complete).
........
r4337 | joty | 2008-06-15 18:15:32 +0200 (Sun, 15 Jun 2008) | 16 lines
This enables "Export PDF" in RISC OS build:
- Docs/Doxyfile(PREDEFINED): Added WITH_PDF_EXPORT
- Makefile.sources(S_PDF): Add to RISC OS target as well.
- utils/config.h: Define WITH_PDF_EXPORT which controls if we want to have
PDF export functionality or not.
- riscos/save_pdf.c,riscos/save_pdf.h(save_as_pdf): Use PDF print API made
by Adam Blokus to write a PDF file under RISC OS.
- riscos/save.c: Call save_as_pdf added.
- riscos/menus.c: Add 'Export->PDF' menu entry.
- riscos/menus.h(menu_action): Added BROWSER_EXPORT_PDF.
- desktop/gui.h(gui_save_type): Added GUI_SAVE_PDF.
- desktop/print.c(print_run): Added return value.
- Makefile(CCACHE): Moved closed to the place where CC is set for the first time.
(LDFLAGS): Centralised adding all non-pkgconfig libraries and added Haru + PNG libs.
........
r4343 | adamblokus | 2008-06-16 01:08:52 +0200 (Mon, 16 Jun 2008) | 3 lines
Added margins and page size adjustment.
........
r4412 | adamblokus | 2008-06-21 20:22:07 +0200 (Sat, 21 Jun 2008) | 4 lines
Added 'fuzzy' margins on page bottom.
Disabled direct png embedding, because it is too unstable in Haru now.
........
r4421 | adamblokus | 2008-06-22 18:52:28 +0200 (Sun, 22 Jun 2008) | 2 lines
Added "Save as.." dialog and Export->PDF menu entry. Print preview still works with default path.
........
r4437 | adamblokus | 2008-06-25 02:44:46 +0200 (Wed, 25 Jun 2008) | 4 lines
Added skeleton of applying loose layout.
Minor code cleaning-up.
........
r4492 | adamblokus | 2008-07-02 09:02:42 +0200 (Wed, 02 Jul 2008) | 5 lines
Implemented the elementar ideas of the loose layout.
Added scaling in the printing routine.
Added some basic demonstrations.
........
r4493 | adamblokus | 2008-07-02 09:05:55 +0200 (Wed, 02 Jul 2008) | 3 lines
Cleaned up the loosing code - commited to much of leftover rubbish code.
........
r4507 | adamblokus | 2008-07-04 14:25:48 +0200 (Fri, 04 Jul 2008) | 4 lines
Added duplicating box tree and current content - window flickering during printing solved.
Minor error checking after new HPDF_Image_AddSMask call.
........
r4515 | adamblokus | 2008-07-06 22:28:16 +0200 (Sun, 06 Jul 2008) | 2 lines
Changes in loosen layout (image resizing).
........
r4517 | adamblokus | 2008-07-06 22:38:23 +0200 (Sun, 06 Jul 2008) | 2 lines
Added pdf font handling and rendering functions with the use of Haru functions.
........
r4555 | adamblokus | 2008-07-10 00:59:05 +0200 (Thu, 10 Jul 2008) | 2 lines
Added a very basic and still buggy GTK print implementation.
........
r4565 | adamblokus | 2008-07-10 14:50:16 +0200 (Thu, 10 Jul 2008) | 2 lines
Added gtk printing one more time - I have forgotten to add the main file.
........
r4566 | adamblokus | 2008-07-10 14:57:02 +0200 (Thu, 10 Jul 2008) | 2 lines
removed error with comment
........
r4569 | adamblokus | 2008-07-10 15:52:55 +0200 (Thu, 10 Jul 2008) | 5 lines
Major style improvements - added a lot of doxygen comments,
followed tlsa's style guide.
Added some more error checking, too.
........
r4575 | adamblokus | 2008-07-10 18:48:26 +0200 (Thu, 10 Jul 2008) | 2 lines
Cleaned up the code.
........
r4687 | adamblokus | 2008-07-17 14:17:19 +0200 (Thu, 17 Jul 2008) | 2 lines
Changed everything according to jmb's review plus some minor bug fixes to gtk_print.
........
r4688 | adamblokus | 2008-07-17 17:16:34 +0200 (Thu, 17 Jul 2008) | 2 lines
Solved the netsurf.glade clash from r4421.
........
r4693 | adamblokus | 2008-07-18 18:11:51 +0200 (Fri, 18 Jul 2008) | 2 lines
Fixed bug with wrong number of pages in gtk printing.
........
r4695 | adamblokus | 2008-07-18 19:59:24 +0200 (Fri, 18 Jul 2008) | 3 lines
- fixed uncommented line from the previous commit
- fixed bug with scale bigger than 1.0 (incorretly clipped page)
........
r4696 | adamblokus | 2008-07-18 23:28:00 +0200 (Fri, 18 Jul 2008) | 2 lines
Fixed bug in gtk_print_font_paint (and nsfont_paint).
........
r4697 | adamblokus | 2008-07-18 23:35:38 +0200 (Fri, 18 Jul 2008) | 2 lines
Bug fix in nsfont_paint.
........
r4711 | adamblokus | 2008-07-19 22:44:15 +0200 (Sat, 19 Jul 2008) | 2 lines
Added gtk_selection files.
........
r4712 | adamblokus | 2008-07-20 11:15:06 +0200 (Sun, 20 Jul 2008) | 2 lines
Addam missing glade files.
........
r4713 | joty | 2008-07-20 17:13:10 +0200 (Sun, 20 Jul 2008) | 1 line
Follow change r4517 for RISC OS and BeOS platforms : Added pdf font handling and rendering functions with the use of Haru functions.
........
r4714 | joty | 2008-07-20 18:19:50 +0200 (Sun, 20 Jul 2008) | 1 line
Declare haru_nsfont iso define an instance for each C source including the font_haru.h header. This fixes breakage of PDF export on RISC OS.
........
r4724 | adamblokus | 2008-07-23 03:30:08 +0200 (Wed, 23 Jul 2008) | 6 lines
Applied changes according to joty's review.
Added checking the dimensions of a plotted image to pdf plotter.
Commented out jpg embedding (it seems to cause some problems
I'll bring it back when I figure out what's wrong) .
Added back some files removed by mistake.
........
svn path=/trunk/netsurf/; revision=4741
2008-07-26 20:01:59 +04:00
|
|
|
bool repeat_x, bool repeat_y, struct content *content)
|
2004-12-25 14:25:21 +03:00
|
|
|
{
|
2008-06-01 04:15:53 +04:00
|
|
|
char *buffer;
|
|
|
|
|
|
|
|
buffer = bitmap_get_buffer(bitmap);
|
|
|
|
if (!buffer) {
|
|
|
|
LOG(("bitmap_get_buffer failed"));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2006-01-25 03:20:21 +03:00
|
|
|
return image_redraw(bitmap->sprite_area,
|
|
|
|
ro_plot_origin_x + x * 2,
|
2004-12-25 14:25:21 +03:00
|
|
|
ro_plot_origin_y - y * 2,
|
|
|
|
width, height,
|
|
|
|
bitmap->width,
|
|
|
|
bitmap->height,
|
|
|
|
bg,
|
|
|
|
repeat_x, repeat_y, true,
|
2006-02-22 04:58:19 +03:00
|
|
|
bitmap_get_opaque(bitmap) ? IMAGE_PLOT_TINCT_OPAQUE :
|
2004-12-25 14:25:21 +03:00
|
|
|
IMAGE_PLOT_TINCT_ALPHA);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the scale for subsequent text plotting.
|
|
|
|
*/
|
|
|
|
|
|
|
|
void ro_plot_set_scale(float scale)
|
|
|
|
{
|
2005-02-20 16:19:19 +03:00
|
|
|
ro_plot_scale = scale;
|
2004-12-25 14:25:21 +03:00
|
|
|
}
|