1 /* 2 * Copyright 2008 Vincent Sanders <vince@simtec.co.uk> 3 * 4 * This file is part of NetSurf, http://www.netsurf-browser.org/ 5 * 6 * NetSurf is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License as published by 8 * the Free Software Foundation; version 2 of the License. 9 * 10 * NetSurf is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU General Public License for more details. 14 * 15 * You should have received a copy of the GNU General Public License 16 * along with this program. If not, see <http://www.gnu.org/licenses/>. 17 */ 18 19 #ifndef FB_IMAGE_DATA 20 #define FB_IMAGE_DATA 21 22 #include "framebuffer/fbtk.h" 23 24 extern struct fbtk_bitmap left_arrow; 25 extern struct fbtk_bitmap right_arrow; 26 extern struct fbtk_bitmap reload; 27 extern struct fbtk_bitmap stop_image; 28 extern struct fbtk_bitmap history_image; 29 30 extern struct fbtk_bitmap left_arrow_g; 31 extern struct fbtk_bitmap right_arrow_g; 32 extern struct fbtk_bitmap reload_g; 33 extern struct fbtk_bitmap stop_image_g; 34 extern struct fbtk_bitmap history_image_g; 35 36 extern struct fbtk_bitmap scrolll; 37 extern struct fbtk_bitmap scrollr; 38 extern struct fbtk_bitmap scrollu; 39 extern struct fbtk_bitmap scrolld; 40 41 extern struct fbtk_bitmap osk_image; 42 43 extern struct fbtk_bitmap pointer_image; 44 extern struct fbtk_bitmap hand_image; 45 extern struct fbtk_bitmap caret_image; 46 extern struct fbtk_bitmap menu_image; 47 extern struct fbtk_bitmap move_image; 48 extern struct fbtk_bitmap progress_image; 49 50 extern struct fbtk_bitmap throbber0; 51 extern struct fbtk_bitmap throbber1; 52 extern struct fbtk_bitmap throbber2; 53 extern struct fbtk_bitmap throbber3; 54 extern struct fbtk_bitmap throbber4; 55 extern struct fbtk_bitmap throbber5; 56 extern struct fbtk_bitmap throbber6; 57 extern struct fbtk_bitmap throbber7; 58 extern struct fbtk_bitmap throbber8; 59 60 #endif /* FB_IMAGE_DATA */ 61