Main Page   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members

FXPNGIcon.h
1 /********************************************************************************
2 * *
3 * P N G I m a g e O b j e c t *
4 * *
5 *********************************************************************************
6 * Copyright (C) 1999,2024 by Jeroen van der Zijp. All Rights Reserved. *
7 *********************************************************************************
8 * This library is free software; you can redistribute it and/or modify *
9 * it under the terms of the GNU Lesser General Public License as published by *
10 * the Free Software Foundation; either version 3 of the License, or *
11 * (at your option) any later version. *
12 * *
13 * This library is distributed in the hope that it will be useful, *
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
16 * GNU Lesser General Public License for more details. *
17 * *
18 * You should have received a copy of the GNU Lesser General Public License *
19 * along with this program. If not, see <http://www.gnu.org/licenses/> *
20 ********************************************************************************/
21 #ifndef FXPNGICON_H
22 #define FXPNGICON_H
23 
24 #ifndef FXICON_H
25 #include "FXIcon.h"
26 #endif
27 
28 namespace FX {
29 
30 
32 class FXAPI FXPNGIcon : public FXIcon {
33  FXDECLARE(FXPNGIcon)
34 protected:
35  FXuint flags;
36 protected:
37  FXPNGIcon(){}
38 private:
39  FXPNGIcon(const FXPNGIcon&);
40  FXPNGIcon &operator=(const FXPNGIcon&);
41 public:
42  static const FXchar fileExt[];
43  static const FXchar mimeType[];
44 public:
45 
47  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);
48 
50  static const FXbool supported;
51 
53  void setFlags(FXint opts){ options=opts; }
54 
56  FXint getFlags() const { return options; }
57 
59  virtual FXbool savePixels(FXStream& store) const;
60 
62  virtual FXbool loadPixels(FXStream& store);
63 
65  virtual ~FXPNGIcon();
66  };
67 
68 }
69 
70 #endif
static const FXbool supported
True if format is supported.
Definition: FXPNGIcon.h:50
The Application object is the central point of a FOX user-interface.
Definition: FXApp.h:134
A stream is a way to serialize data and objects into a byte stream.
Definition: FXStream.h:81
Portable Network Graphics (PNG) Icon class.
Definition: FXPNGIcon.h:32
Definition: FX4Splitter.h:28
An Icon is an image with two additional server-side resources: a shape bitmap, which is used to mask ...
Definition: FXIcon.h:42
FXint getFlags() const
Get image save flags.
Definition: FXPNGIcon.h:56
void setFlags(FXint opts)
Set image save flags.
Definition: FXPNGIcon.h:53

Copyright © 1997-2022 Jeroen van der Zijp