--- a/src/hbwidgets/widgets/hbgroupboxcontentwidget_p.h Mon Apr 19 14:02:13 2010 +0300
+++ b/src/hbwidgets/widgets/hbgroupboxcontentwidget_p.h Mon May 03 12:48:33 2010 +0300
@@ -33,6 +33,7 @@
class HbGestureSceneFilter;
class HbGesture;
+class QGestureEvent;
class HB_AUTOTEST_EXPORT HbGroupBoxContentWidget : public HbWidget
{
@@ -56,6 +57,7 @@
signals:
void clicked();
+ void longPress(QPointF point);
protected:
void initStyleOption( HbStyleOption *option ) const;
@@ -63,6 +65,9 @@
void mousePressEvent( QGraphicsSceneMouseEvent *event );
void mouseReleaseEvent( QGraphicsSceneMouseEvent *event );
void polish( HbStyleParameters& params );
+#ifdef HB_GESTURE_FW
+ void gestureEvent(QGestureEvent *event);
+#endif
public:
HbWidget *mContent;
@@ -70,8 +75,6 @@
GroupBoxType groupBoxType;
bool contentPressed;
- HbGestureSceneFilter *gestureFilter;
- HbGesture *gestureLongpressed;
HbGroupBox *groupBox;
};