22 #ifndef FIFE_GUI_IMAGELOADER_H
23 #define FIFE_GUI_IMAGELOADER_H
28 #include <guichan/imageloader.hpp>
29 #include <guichan/image.hpp>
35 #include "gui_image.h"
42 class GuiImageLoader :
public gcn::ImageLoader {
45 virtual ~GuiImageLoader();
46 virtual gcn::Image* load(
const std::string& filename,
bool convertToDisplayFormat =
true);
48 AtlasBook* m_atlasbook;
49 std::vector<ImagePtr> m_atlases;
credit to phoku for his NodeDisplay example which the visitor code is adapted from ( he coded the qua...