2005-12-20 01:50:23 +03:00
|
|
|
/*
|
2006-11-27 18:35:18 +03:00
|
|
|
* This file is part of NetSurf, http://netsurf-browser.org/
|
2005-12-20 01:50:23 +03:00
|
|
|
* Licensed under the GNU General Public License,
|
|
|
|
* http://www.opensource.org/licenses/gpl-license
|
|
|
|
* Copyright 2005 James Bursa <bursa@users.sourceforge.net>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <gtk/gtk.h>
|
2006-08-18 00:03:28 +04:00
|
|
|
#include "netsurf/desktop/plotters.h"
|
2005-12-20 01:50:23 +03:00
|
|
|
|
|
|
|
extern GtkWidget *current_widget;
|
|
|
|
extern GdkDrawable *current_drawable;
|
|
|
|
extern GdkGC *current_gc;
|
2006-03-19 23:53:46 +03:00
|
|
|
#ifdef CAIRO_VERSION
|
|
|
|
extern cairo_t *current_cr;
|
|
|
|
#endif
|
2005-12-20 01:50:23 +03:00
|
|
|
|
2006-03-26 03:31:42 +04:00
|
|
|
void nsgtk_plot_set_scale(float s);
|
|
|
|
float nsgtk_plot_get_scale(void);
|
2006-03-26 03:53:34 +04:00
|
|
|
void nsgtk_set_colour(colour c);
|
2006-08-18 00:03:28 +04:00
|
|
|
void nsgtk_reflow_all_windows(void);
|