From 7e85d15cb61229e9ba1b4a0f1f6c4ab19d436ac7 Mon Sep 17 00:00:00 2001 From: Daniel Silverstone Date: Sat, 12 Mar 2011 15:08:07 +0000 Subject: Add a deaf monkey frontend. TODO: Make it listen svn path=/trunk/netsurf/; revision=11968 --- monkey/plot.c | 97 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 97 insertions(+) create mode 100644 monkey/plot.c (limited to 'monkey/plot.c') diff --git a/monkey/plot.c b/monkey/plot.c new file mode 100644 index 000000000..539f41fbe --- /dev/null +++ b/monkey/plot.c @@ -0,0 +1,97 @@ +/* + * Copyright 2011 Daniel Silverstone + * + * 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 . + */ + +#include "desktop/plotters.h" + +static bool +monkey_plot_disc(int x, int y, int radius, const plot_style_t *style) +{ + return true; +} + +static bool +monkey_plot_arc(int x, int y, int radius, int angle1, int angle2, const plot_style_t *style) +{ + return true; +} + +static bool +monkey_plot_polygon(const int *p, unsigned int n, const plot_style_t *style) +{ + return true; +} + + +static bool +monkey_plot_text(int x, int y, const char *text, size_t length, + const plot_font_style_t *fstyle) +{ + return true; +} + +static bool +monkey_plot_bitmap(int x, int y, + int width, int height, + struct bitmap *bitmap, colour bg, + bitmap_flags_t flags) +{ + return true; +} + +static bool +monkey_plot_rectangle(int x0, int y0, int x1, int y1, const plot_style_t *style) +{ + return true; +} + +static bool +monkey_plot_line(int x0, int y0, int x1, int y1, const plot_style_t *style) +{ + return true; +} + + +static bool +monkey_plot_path(const float *p, + unsigned int n, + colour fill, + float width, + colour c, + const float transform[6]) +{ + return true; +} + +static bool +monkey_plot_clip(const struct rect *clip) +{ + return true; +} + +struct plotter_table plot = { + .clip = monkey_plot_clip, + .arc = monkey_plot_arc, + .disc = monkey_plot_disc, + .line = monkey_plot_line, + .rectangle = monkey_plot_rectangle, + .polygon = monkey_plot_polygon, + .path = monkey_plot_path, + .bitmap = monkey_plot_bitmap, + .text = monkey_plot_text, + .option_knockout = true, +}; -- cgit v1.2.3