2009-08-17 12:41:51 +02:00
|
|
|
/***************************************************************************
|
|
|
|
|
|
|
|
gdrawingarea.h
|
|
|
|
|
2011-12-31 03:39:20 +01:00
|
|
|
(c) 2000-2012 Benoît Minisini <gambas@users.sourceforge.net>
|
2009-08-17 12:41:51 +02:00
|
|
|
|
|
|
|
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
|
2011-06-03 02:51:09 +02:00
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
2011-12-31 03:39:20 +01:00
|
|
|
MA 02110-1301, USA.
|
2009-08-17 12:41:51 +02:00
|
|
|
|
|
|
|
***************************************************************************/
|
2011-12-31 03:39:20 +01:00
|
|
|
|
2007-12-30 17:41:49 +01:00
|
|
|
#ifndef __GDRAWINGAREA_H
|
|
|
|
#define __GDRAWINGAREA_H
|
|
|
|
|
|
|
|
class gDrawingArea : public gContainer
|
|
|
|
{
|
|
|
|
public:
|
2012-05-23 01:32:38 +02:00
|
|
|
gDrawingArea(gContainer *parent);
|
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; }
|
2010-12-22 19:31:44 +01:00
|
|
|
bool hasNoBackground() const { return _no_background; }
|
2012-08-10 01:39:29 +02:00
|
|
|
bool useTablet() const { return _use_tablet; }
|
2007-12-30 17:41:49 +01:00
|
|
|
|
|
|
|
void setBorder(int vl) { setFrameBorder(vl); }
|
|
|
|
void setCached(bool vl);
|
2010-12-22 19:31:44 +01:00
|
|
|
void setNoBackground(bool vl);
|
2012-08-10 01:39:29 +02:00
|
|
|
void setUseTablet(bool vl);
|
2011-02-27 20:55:29 +01:00
|
|
|
|
|
|
|
bool inDrawEvent() const { return _in_draw_event; }
|
2007-12-30 17:41:49 +01:00
|
|
|
|
|
|
|
//"Methods"
|
|
|
|
void clear();
|
|
|
|
virtual void resize(int w, int h);
|
|
|
|
virtual void setEnabled(bool vl);
|
2011-12-27 02:09:08 +01:00
|
|
|
virtual void setRealBackground(gColor color);
|
2007-12-30 17:41:49 +01:00
|
|
|
|
|
|
|
//"Events"
|
|
|
|
void (*onExpose)(gDrawingArea *sender,int x,int y,int w,int h);
|
|
|
|
|
|
|
|
//"Private"
|
2011-01-24 15:37:11 +01:00
|
|
|
void init();
|
2012-05-23 01:32:38 +02:00
|
|
|
void create();
|
2007-12-30 17:41:49 +01:00
|
|
|
void updateCache();
|
|
|
|
void resizeCache();
|
|
|
|
void refreshCache();
|
|
|
|
void updateEventMask();
|
|
|
|
void setCache();
|
2012-08-10 01:39:29 +02:00
|
|
|
void updateUseTablet();
|
|
|
|
|
2007-12-30 17:41:49 +01:00
|
|
|
GdkPixmap *buffer;
|
2012-05-23 01:32:38 +02:00
|
|
|
GtkWidget *box;
|
2007-12-30 17:41:49 +01:00
|
|
|
uint _event_mask;
|
|
|
|
uint _old_bg_id;
|
|
|
|
unsigned _cached : 1;
|
|
|
|
unsigned _resize_cache : 1;
|
2011-02-27 20:55:29 +01:00
|
|
|
unsigned _in_draw_event : 1;
|
|
|
|
unsigned _no_background : 1;
|
2012-08-10 01:39:29 +02:00
|
|
|
unsigned _use_tablet : 1;
|
2007-12-30 17:41:49 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|