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

FXEXEIcon.h
1 /********************************************************************************
2 * *
3 * E X E I c o n O b j e c t *
4 * *
5 *********************************************************************************
6 * Copyright (C) 2014,2022 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 FXEXEICON_H
22 #define FXEXEICON_H
23 
24 #ifndef FXICON_H
25 #include "FXIcon.h"
26 #endif
27 
28 namespace FX {
29 
30 
32 class FXAPI FXEXEIcon : public FXIcon {
33  FXDECLARE(FXEXEIcon)
34 protected:
35  FXint rtype; // Resource type
36  FXint rid; // Resource id
37 protected:
38  FXEXEIcon(){}
39 private:
40  FXEXEIcon(const FXEXEIcon&);
41  FXEXEIcon &operator=(const FXEXEIcon&);
42 public:
43  static const FXchar fileExt[];
44  static const FXchar mimeType[];
45 public:
46 
48  FXEXEIcon(FXApp* a,const FXuchar *pix=nullptr,FXColor clr=FXRGB(192,192,192),FXuint opts=0,FXint w=1,FXint h=1,FXint ri=-1,FXint rt=3);
49 
51  void setResType(FXint rt){ rtype=rt; }
52 
54  FXint getResType() const { return rtype; }
55 
57  void setResId(FXint ri){ rid=ri; }
58 
60  FXint getResId() const { return rid; }
61 
63  virtual FXbool savePixels(FXStream& store) const;
64 
66  virtual FXbool loadPixels(FXStream& store);
67 
69  virtual ~FXEXEIcon();
70  };
71 
72 
73 #ifndef FXLOADEXE
74 #define FXLOADEXE
75 
79 extern FXAPI FXbool fxcheckEXE(FXStream& store);
80 
81 
85 extern FXAPI FXbool fxloadEXE(FXStream& store,FXColor*& data,FXint& width,FXint& height,FXint type,FXint id);
86 
87 #endif
88 
89 }
90 
91 #endif
Icon from resource in Microsoft Windows executable.
Definition: FXEXEIcon.h:32
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
void setResId(FXint ri)
Set resource id to load.
Definition: FXEXEIcon.h:57
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
void setResType(FXint rt)
Set resource group (type) to load from.
Definition: FXEXEIcon.h:51
FXint getResId() const
Get resource id.
Definition: FXEXEIcon.h:60
FXint getResType() const
Get resource group (type)
Definition: FXEXEIcon.h:54

Copyright © 1997-2022 Jeroen van der Zijp