00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 #ifndef FXXPMIMAGE_H
00025 #define FXXPMIMAGE_H
00026
00027 #ifndef FXIMAGE_H
00028 #include "FXImage.h"
00029 #endif
00030
00031 namespace FX {
00032
00033
00035 class FXAPI FXXPMImage : public FXImage {
00036 FXDECLARE(FXXPMImage)
00037 protected:
00038 FXXPMImage(){}
00039 private:
00040 FXXPMImage(const FXXPMImage&);
00041 FXXPMImage &operator=(const FXXPMImage&);
00042 public:
00043 static const FXchar *fileExt;
00044 static const FXchar *mimeType;
00045 public:
00046
00048 FXXPMImage(FXApp* a,const FXchar **pix=NULL,FXuint opts=0,FXint w=1,FXint h=1);
00049
00051 virtual bool savePixels(FXStream& store) const;
00052
00054 virtual bool loadPixels(FXStream& store);
00055
00057 virtual ~FXXPMImage();
00058 };
00059
00060
00061 #ifndef FXLOADXPM
00062 #define FXLOADXPM
00063
00067 extern FXAPI bool fxcheckXPM(FXStream& store);
00068
00069
00075 extern FXAPI bool fxloadXPM(const FXchar **pix,FXColor*& data,FXint& width,FXint& height);
00076
00077
00083 extern FXAPI bool fxloadXPM(FXStream& store,FXColor*& data,FXint& width,FXint& height);
00084
00085
00089 extern FXAPI bool fxsaveXPM(FXStream& store,const FXColor *data,FXint width,FXint height,bool fast=true);
00090
00091 #endif
00092
00093 }
00094
00095 #endif