src/hbcore/inputfw/hbinputregioncollector.cpp
changeset 34 ed14f46c0e55
parent 6 c3690ec91ef8
--- a/src/hbcore/inputfw/hbinputregioncollector.cpp	Mon Oct 04 17:49:30 2010 +0300
+++ b/src/hbcore/inputfw/hbinputregioncollector.cpp	Mon Oct 18 18:23:13 2010 +0300
@@ -34,7 +34,7 @@
 #include "hbdeviceprofile.h"
 
 /*!
-\proto
+@stable
 \class HbInputRegionCollector
 \brief Installs a filter on a HbWidget and observes for a change in position, size and visibility
 of the attached widget. As soon as it detects a change in size, position or visibility it calculates
@@ -47,32 +47,6 @@
 
 /// @cond
 
-class HbWidgetFilterList
-{
-public:
-    HbWidgetFilterList(HbWidget *w)
-        : mWidget(w), mIsVisible(false) {
-    }
-    bool operator ==(const HbWidgetFilterList &other) const {
-        return mWidget == other.mWidget;
-    }
-    QPointer <HbWidget> mWidget;
-    // visibility is needed as the time when we get show event inside eventFilter
-    // widget is not visible.
-    bool mIsVisible;
-};
-
-class HbInputRegionCollectorPrivate
-{
-public:
-    HbInputRegionCollectorPrivate()
-        : mEnabled(false), mModalDialogs(0) {}
-    QList < HbWidgetFilterList > mInputWidgets;
-    bool mEnabled;
-    int mModalDialogs;
-};
-
-
 /*!
 Creates a static instance of HbInputRegionCollector.
 */