2009-08-17 12:41:51 +02:00
|
|
|
/***************************************************************************
|
|
|
|
|
|
|
|
gdrawingarea.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.
|
|
|
|
|
|
|
|
***************************************************************************/
|
2007-12-30 17:41:49 +01:00
|
|
|
#ifndef __GDRAWINGAREA_H
|
|
|
|
#define __GDRAWINGAREA_H
|
|
|
|
|
|
|
|
class gDrawingArea : public gContainer
|
|
|
|
{
|
|
|
|
public:
|
2011-01-24 15:37:11 +01:00
|
|
|
gDrawingArea(gContainer *parent, bool scrollarea = false);
|
2007-12-30 17:41:49 +01:00
|
|
|
~gDrawingArea();
|
|
|
|
|
2010-03-07 18:14:54 +01:00
|
|
|
int getBorder() const { return getFrameBorder(); }
|
|
|
|
bool cached() const { return _cached; }
|
|
|
|
bool canFocus() const;
|
2010-12-22 19:31:44 +01:00
|
|
|
bool hasNoBackground() const { return _no_background; }
|
2007-12-30 17:41:49 +01:00
|
|
|
|
|
|
|
void setBorder(int vl) { setFrameBorder(vl); }
|
|
|
|
void setCached(bool vl);
|
|
|
|
void setCanFocus(bool vl);
|
2010-12-22 19:31:44 +01:00
|
|
|
void setNoBackground(bool vl);
|
2007-12-30 17:41:49 +01:00
|
|
|
|
|
|
|
//"Methods"
|
|
|
|
void clear();
|
|
|
|
virtual void resize(int w, int h);
|
|
|
|
virtual void setEnabled(bool vl);
|
|
|
|
|
|
|
|
//"Events"
|
|
|
|
void (*onExpose)(gDrawingArea *sender,int x,int y,int w,int h);
|
|
|
|
|
|
|
|
//"Private"
|
2011-01-24 15:37:11 +01:00
|
|
|
void init();
|
2007-12-30 17:41:49 +01:00
|
|
|
void updateCache();
|
|
|
|
void resizeCache();
|
|
|
|
void refreshCache();
|
|
|
|
void updateEventMask();
|
|
|
|
void setCache();
|
|
|
|
GdkPixmap *buffer;
|
|
|
|
uint _event_mask;
|
|
|
|
uint _old_bg_id;
|
|
|
|
unsigned _cached : 1;
|
|
|
|
unsigned _resize_cache : 1;
|
2010-12-22 19:31:44 +01:00
|
|
|
unsigned _no_background;
|
2007-12-30 17:41:49 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|