browsercore/appfw/Common/FlowInterface.cpp
author hgs
Fri, 15 Oct 2010 17:30:59 -0400
changeset 16 3c88a81ff781
permissions -rw-r--r--
201041



#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;
}
}