b776ca3ea3
* BUG: If the DrawingArea Draw event handler raises an error, then the interpreter should not crash anymore. * BUG: Mouse events are now cancelable, like in gb.qt4, so that proxies cancelable prevent their propagation. git-svn-id: svn://localhost/gambas/trunk@4504 867c0c6c-44f3-4631-809d-bfa615b0a4ec
191 lines
4.4 KiB
C++
191 lines
4.4 KiB
C++
/***************************************************************************
|
|
|
|
CDrawingArea.cpp
|
|
|
|
(c) 2004-2006 - Daniel Campos Fernández <dcamposf@gmail.com>
|
|
|
|
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., 51 Franklin Street, Fifth Floor, Boston,
|
|
MA 02110-1301, USA.
|
|
|
|
***************************************************************************/
|
|
|
|
#define __CDRAWINGAREA_CPP
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "main.h"
|
|
#include "gambas.h"
|
|
#include "widgets.h"
|
|
#include "CDraw.h"
|
|
#include "cpaint_impl.h"
|
|
#include "CDrawingArea.h"
|
|
#include "CWidget.h"
|
|
#include "CContainer.h"
|
|
|
|
DECLARE_EVENT(EVENT_draw);
|
|
|
|
/***************************************************************************
|
|
|
|
DrawingArea
|
|
|
|
***************************************************************************/
|
|
|
|
static void cleanup_drawing(intptr_t _object)
|
|
{
|
|
if (THIS->painted)
|
|
PAINT_end();
|
|
else
|
|
DRAW_end();
|
|
}
|
|
|
|
static void Darea_Expose(gDrawingArea *sender,int x,int y,int w,int h)
|
|
{
|
|
CWIDGET *_object = GetObject(sender);
|
|
GB_RAISE_HANDLER handler;
|
|
|
|
//fprintf(stderr, "expose: %d %d %d %d\n", x, y, w, h);
|
|
|
|
if (GB.CanRaise(THIS, EVENT_draw))
|
|
{
|
|
handler.callback = cleanup_drawing;
|
|
handler.data = (intptr_t)THIS;
|
|
|
|
GB.RaiseBegin(&handler);
|
|
|
|
if (THIS->painted)
|
|
{
|
|
PAINT_begin(THIS);
|
|
PAINT_clip(x, y, w, h);
|
|
|
|
GB.Raise(THIS, EVENT_draw, 0);
|
|
|
|
PAINT_end();
|
|
}
|
|
else
|
|
{
|
|
DRAW_begin(THIS);
|
|
DRAW_get_current()->setClip(x, y, w, h);
|
|
|
|
GB.Raise(THIS, EVENT_draw, 0);
|
|
|
|
DRAW_end();
|
|
}
|
|
|
|
GB.RaiseEnd(&handler);
|
|
}
|
|
}
|
|
|
|
|
|
BEGIN_METHOD(CDRAWINGAREA_new, GB_OBJECT parent)
|
|
|
|
InitControl(new gDrawingArea(CONTAINER(VARG(parent))), (CWIDGET*)THIS);
|
|
WIDGET->onExpose = Darea_Expose;
|
|
|
|
END_METHOD
|
|
|
|
BEGIN_PROPERTY(CDRAWINGAREA_border)
|
|
|
|
if (READ_PROPERTY) { GB.ReturnInteger(WIDGET->getBorder()); return; }
|
|
WIDGET->setBorder(VPROP(GB_INTEGER));
|
|
|
|
END_PROPERTY
|
|
|
|
|
|
BEGIN_PROPERTY(CDRAWINGAREA_cached)
|
|
|
|
if (READ_PROPERTY) { GB.ReturnBoolean(WIDGET->cached()); return; }
|
|
WIDGET->setCached(VPROP(GB_BOOLEAN));
|
|
|
|
END_PROPERTY
|
|
|
|
BEGIN_PROPERTY(CDRAWINGAREA_focus)
|
|
|
|
if (READ_PROPERTY) { GB.ReturnBoolean(WIDGET->canFocus()); return; }
|
|
WIDGET->setCanFocus(VPROP(GB_BOOLEAN));
|
|
|
|
END_PROPERTY
|
|
|
|
BEGIN_METHOD_VOID(CDRAWINGAREA_clear)
|
|
|
|
WIDGET->clear();
|
|
|
|
END_METHOD
|
|
|
|
BEGIN_PROPERTY(CDRAWINGAREA_painted)
|
|
|
|
if (READ_PROPERTY)
|
|
GB.ReturnBoolean(THIS->painted);
|
|
else
|
|
THIS->painted = VPROP(GB_BOOLEAN);
|
|
|
|
END_PROPERTY
|
|
|
|
BEGIN_PROPERTY(DrawingArea_NoBackground)
|
|
|
|
if (READ_PROPERTY)
|
|
GB.ReturnBoolean(WIDGET->hasNoBackground());
|
|
else
|
|
WIDGET->setNoBackground(VPROP(GB_BOOLEAN));
|
|
|
|
END_PROPERTY
|
|
|
|
BEGIN_METHOD(DrawingArea_Refresh, GB_INTEGER x; GB_INTEGER y; GB_INTEGER w; GB_INTEGER h)
|
|
|
|
int x, y, w, h;
|
|
|
|
x = VARGOPT(x, 0);
|
|
y = VARGOPT(y, 0);
|
|
w = VARGOPT(w, WIDGET->width());
|
|
h = VARGOPT(h, WIDGET->height());
|
|
|
|
WIDGET->refresh(x,y,w,h);
|
|
|
|
END_METHOD
|
|
|
|
GB_DESC CDrawingAreaDesc[] =
|
|
{
|
|
GB_DECLARE("DrawingArea", sizeof(CDRAWINGAREA)), GB_INHERITS("Container"),
|
|
|
|
GB_METHOD("_new", 0, CDRAWINGAREA_new, "(Parent)Container;"),
|
|
|
|
GB_PROPERTY("Arrangement", "i", CCONTAINER_arrangement),
|
|
GB_PROPERTY("AutoResize", "b", CCONTAINER_auto_resize),
|
|
GB_PROPERTY("Padding", "i", CCONTAINER_padding),
|
|
GB_PROPERTY("Spacing", "b", CCONTAINER_spacing),
|
|
GB_PROPERTY("Margin", "b", CCONTAINER_margin),
|
|
GB_PROPERTY("Indent", "b", CCONTAINER_indent),
|
|
GB_PROPERTY("Invert", "b", Container_Invert),
|
|
|
|
GB_PROPERTY("Cached", "b", CDRAWINGAREA_cached),
|
|
GB_PROPERTY("Border", "i", CDRAWINGAREA_border),
|
|
GB_PROPERTY("Focus","b",CDRAWINGAREA_focus),
|
|
GB_PROPERTY("Painted", "b", CDRAWINGAREA_painted),
|
|
GB_PROPERTY("NoBackground", "b", DrawingArea_NoBackground),
|
|
|
|
GB_METHOD("Clear", 0, CDRAWINGAREA_clear, 0),
|
|
GB_METHOD("Refresh", NULL, DrawingArea_Refresh, "[(X)i(Y)i(Width)i(Height)i]"),
|
|
|
|
GB_EVENT("Draw", 0, 0, &EVENT_draw),
|
|
|
|
GB_INTERFACE("Draw", &DRAW_Interface),
|
|
GB_INTERFACE("Paint", &PAINT_Interface),
|
|
|
|
DRAWINGAREA_DESCRIPTION,
|
|
|
|
GB_END_DECLARE
|
|
};
|
|
|
|
|