summaryrefslogtreecommitdiff
path: root/amiga/gui.h
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2008-08-30 16:57:35 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2008-08-30 16:57:35 +0000
commit277262bf46571df9f542b21543829b10344e719d (patch)
tree0e39c19562f5b604006402ea629e87653ddccdbd /amiga/gui.h
parent35befab994bff3736579fa0dcd096918f8516d05 (diff)
downloadnetsurf-277262bf46571df9f542b21543829b10344e719d.tar.gz
netsurf-277262bf46571df9f542b21543829b10344e719d.tar.bz2
Added support for scaling bitmaps, filled polygons, filled circles and clipping.
Fixes major display issues with eg. www.bbc.co.uk amongst others. svn path=/trunk/netsurf/; revision=5221
Diffstat (limited to 'amiga/gui.h')
-rwxr-xr-xamiga/gui.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/amiga/gui.h b/amiga/gui.h
index a138cda6d..0bb1a352b 100755
--- a/amiga/gui.h
+++ b/amiga/gui.h
@@ -55,7 +55,7 @@ struct gui_download_window {
Object *objects[OID_LAST];
struct Gadget *gadgets[GID_LAST];
struct nsObject *node;
- bool pad;
+ ULONG pad[2];
BPTR fh;
uint32 size;
uint32 downloaded;
@@ -67,9 +67,13 @@ struct gui_window {
struct Gadget *gadgets[GID_LAST];
struct nsObject *node;
bool redraw_required;
+ struct List *tab_bw_list;
struct browser_window *bw;
struct BitMap *bm;
struct RastPort rp;
+ struct Layer_Info *layerinfo;
+ APTR areabuf;
+ APTR tmprasbuf;
struct Hook scrollerhook;
struct Hook popuphook;
struct form_control *control;
@@ -80,9 +84,6 @@ struct gui_window {
int c_h;
};
-//struct gui_window *curwin;
struct RastPort *currp;
struct TextFont *origrpfont;
-struct Layer *layer;
-struct Layer_Info *layerinfo;
#endif