Benoît Minisini f65184802d [CONFIGURATION]
* NEW: Update copyright and license string in all source files.


git-svn-id: svn://localhost/gambas/trunk@2241 867c0c6c-44f3-4631-809d-bfa615b0a4ec
2009-08-17 10:41:51 +00:00

164 lines
3.8 KiB
C++

/***************************************************************************
gpicture.h
(c) 2000-2009 Benoît Minisini <gambas@users.sourceforge.net>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
***************************************************************************/
#ifndef __GPICTURE_H
#define __GPICTURE_H
#include "widgets.h"
#include "gshare.h"
#include "gcolor.h"
#include "gtag.h"
class alphaCache;
class gPicture : public gShare
{
public:
enum gPictureType
{
VOID,
MEMORY,
SERVER
};
gPicture();
gPicture(gPictureType type, int w, int h, bool trans);
~gPicture();
gPicture *copy();
bool isVoid() { return _type == VOID; }
static void assign(gPicture **dst, gPicture *src = 0) { gShare::assign((gShare **)dst, src); }
gPictureType type() const { return _type; }
int width() const { return _width; }
int height() const { return _height; }
int depth();
bool isTransparent() const { return _transparent; }
unsigned char *data();
void setTransparent(bool vl);
void clear();
void resize(int width,int height);
int save(const char *path, int quality = -1);
void fill(gColor col);
gPicture *copy(int x, int y, int w, int h);
gPicture *flip(bool mirror = false);
gPicture *mirror() { return flip(true); }
gPicture *rotate(double ang);
gPicture *stretch(int w, int h, bool smooth);
gColor getPixel(int x, int y);
void putPixel(int x, int y, gColor col);
void draw(gPicture *src, int x, int y, int w = -1, int h = -1, int sx = 0, int sy = 0, int sw = -1, int sh = -1);
void makeGray();
void makeTransparent(gColor color);
static gPicture *fromNamedIcon(const char *name, int len = -1);
static gPicture *fromMemory(char *addr, unsigned int len);
static gPicture *fromData(const char *data, int width, int height);
//"Private"
GdkPixmap *pic;
GdkBitmap *mask;
GdkPixbuf *img;
gPictureType _type;
bool _transparent;
int _width;
int _height;
gPicture(GdkPixbuf *image, bool trans = true);
gPicture(GdkPixmap *pixmap);
void initialize();
GdkPixbuf *getPixbuf();
GdkPixmap *getPixmap();
GdkBitmap *getMask();
static gPicture* fromPixbuf(GdkPixbuf *buf) { return new gPicture(buf); }
// "Private"
void invalidate();
void createMask(bool white);
};
class gPictureCache
{
public:
static void put(const char *key, gPicture *img);
static gPicture *get(const char *key);
static void flush();
static void init();
static void exit();
private:
static GHashTable *cache;
};
#if 0
class gPicture
{
public:
gPicture(int w,int h,bool trans);
~gPicture();
int width();
int height();
int depth();
bool transparent();
void setTransparent(bool vl);
void resize(int width,int height);
int save(char *path);
void fromMemory(char *addr,unsigned int len);
static gPicture* fromNamedIcon(char* name);
void Fill(int col);
gPicture* getImage();
gPicture* copy(int x,int y,int w,int h);
void ref();
void unref();
//"Private"
GdkDrawable *pic;
alphaCache *cache;
int _transparent;
GdkPixbuf* getPixbuf();
static gPicture* fromPixbuf(GdkPixbuf *buf);
int refcount;
};
class gPictureCache
{
public:
static void save(char *key,gPicture *img);
static gPicture* load(char *key);
static void flush();
};
#endif
#endif