/******************************************************************************** * * * P N G I m a g e O b j e c t * * * ********************************************************************************* * Copyright (C) 1999,2024 by Jeroen van der Zijp. All Rights Reserved. * ********************************************************************************* * This library is free software; you can redistribute it and/or modify * * it under the terms of the GNU Lesser General Public License as published by * * the Free Software Foundation; either version 3 of the License, or * * (at your option) any later version. * * * * This library is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU Lesser General Public License for more details. * * * * You should have received a copy of the GNU Lesser General Public License * * along with this program. If not, see * ********************************************************************************/ #ifndef FXPNGICON_H #define FXPNGICON_H #ifndef FXICON_H #include "FXIcon.h" #endif namespace FX { /// Portable Network Graphics (PNG) Icon class class FXAPI FXPNGIcon : public FXIcon { FXDECLARE(FXPNGIcon) protected: FXuint flags; protected: FXPNGIcon(){} private: FXPNGIcon(const FXPNGIcon&); FXPNGIcon &operator=(const FXPNGIcon&); public: static const FXchar fileExt[]; static const FXchar mimeType[]; public: /// Construct an icon from memory stream formatted in PNG format FXPNGIcon(FXApp *a,const FXuchar *pix=nullptr,FXColor clr=FXRGB(192,192,192),FXuint opts=0,FXint w=1,FXint h=1,FXuint fl=PNG_IMAGE_ANALYZE); /// True if format is supported static const FXbool supported; /// Set image save flags void setFlags(FXint opts){ options=opts; } /// Get image save flags FXint getFlags() const { return options; } /// Save pixels into stream in PNG format virtual FXbool savePixels(FXStream& store) const; /// Load pixels from stream in PNG format virtual FXbool loadPixels(FXStream& store); /// Destroy virtual ~FXPNGIcon(); }; } #endif