diff -r 6aeb7a756187 -r 3c88a81ff781 browsercore/appfw/Common/FlowInterface.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/browsercore/appfw/Common/FlowInterface.cpp Fri Oct 15 17:30:59 2010 -0400 @@ -0,0 +1,23 @@ + + +#include "FlowInterface.h" +#include "qstmgestureevent.h" + + +namespace WRT { +GraphicsFlowInterface::GraphicsFlowInterface(QGraphicsItem* parent) : QGraphicsWidget(parent) +{ + //grabGesture(QStm_Gesture::assignedType()); +} + + +bool GraphicsFlowInterface::event(QEvent* event) +{ + bool ret = false; + //ret = QStm_GestureEventFilter::instance()->event(event); + if (!ret) { + ret = QGraphicsWidget::event(event); + } + return ret; +} +}