homescreenapp/stateplugins/hsmenuworkerstateplugin/src/hsappschecklist.cpp
changeset 97 66b5fe3c07fd
parent 81 7dd137878ff8
child 98 e6f74eb7f69f
--- a/homescreenapp/stateplugins/hsmenuworkerstateplugin/src/hsappschecklist.cpp	Mon Sep 27 11:52:00 2010 +0300
+++ b/homescreenapp/stateplugins/hsmenuworkerstateplugin/src/hsappschecklist.cpp	Wed Oct 06 16:06:24 2010 +0300
@@ -15,11 +15,13 @@
  *
  */
 
-#include <hbaction.h>
-#include <hbinstance.h>
-#include <hbdialog.h>
-#include <hblistview.h>
-#include <hbdocumentloader.h>
+#include <HbAction>
+#include <HbInstance>
+#include <HbDialog>
+#include <HbIndexFeedback>
+#include <HbListView>
+#include <HbScrollBar>
+#include <HbDocumentLoader>
 #include <hsmenuservice.h>
 #include <hsmenuitemmodel.h>
 
@@ -166,7 +168,12 @@
             LIST_VIEW_WIDGET));
         mModel->setParent(mAppsSelectDialog);
         mListView->setModel(mModel);
-
+        mListView->verticalScrollBar()->setInteractive(true);
+        HbIndexFeedback *indexFeedback = new HbIndexFeedback(mListView);
+        indexFeedback->setIndexFeedbackPolicy(
+                HbIndexFeedback::IndexFeedbackSingleCharacter);
+        indexFeedback->setItemView(mListView);
+        
         connect(mListView,SIGNAL(activated(const QModelIndex&) ),this
                 ,SLOT(selectedItemsChanged()));
         connect(mModel,SIGNAL(rowsRemoved(const QModelIndex&, int,int)),