searchui/stateproviders/searchstateprovider/src/searchsettingsstate.cpp
changeset 2 208a4ba3894c
parent 0 ccd0fd43f247
child 9 4a2987baf8f7
--- a/searchui/stateproviders/searchstateprovider/src/searchsettingsstate.cpp	Mon Apr 19 14:40:05 2010 +0300
+++ b/searchui/stateproviders/searchstateprovider/src/searchsettingsstate.cpp	Mon May 03 12:32:15 2010 +0300
@@ -31,8 +31,6 @@
 #include <qdir.h>
 #include"settingswidget.h"
 
-const char *WIZARD_VIEW = "tocView";
-
 // ---------------------------------------------------------------------------
 // SearchSettingsState::SearchSettingsState
 // ---------------------------------------------------------------------------
@@ -43,32 +41,31 @@
     minitialCount = true;
     mWidget = new SettingsWidget();
 
-    connect(mWidget, SIGNAL(settingsEvent(bool)), this, SLOT(handleBackEvent(bool)));
+    connect(mWidget, SIGNAL(settingsEvent(bool)), this,
+            SLOT(handleBackEvent(bool)));
 
     connect(mWidget, SIGNAL(selectedItemCategory(int, bool)), this,
             SLOT(getItemCategory(int, bool)));
 
     }
 // ---------------------------------------------------------------------------
-// SearchSettingsState::_selectedcategory
-// ---------------------------------------------------------------------------
-//
-void SearchSettingsState::getItemCategory(int str, bool avalue)
-    {
-    emit publishSelectedCategory(str, avalue);
-    }
-
-// ---------------------------------------------------------------------------
 // SearchSettingsState::~SearchSettingsState
 // ---------------------------------------------------------------------------
 //
 SearchSettingsState::~SearchSettingsState()
     {
     delete mDocumentLoader;
-    //  delete mWidget;
+    delete mWidget;
 
     }
-
+// ---------------------------------------------------------------------------
+// SearchSettingsState::getItemCategory
+// ---------------------------------------------------------------------------
+//
+void SearchSettingsState::getItemCategory(int str, bool avalue)
+    {
+    emit publishSelectedCategory(str, avalue);
+    }
 // ---------------------------------------------------------------------------
 // SearchSettingsState::onEntry
 // ---------------------------------------------------------------------------
@@ -79,7 +76,8 @@
     QState::onEntry(event);
     if (minitialCount)
         {
-        mWidget->loadSettingsFrominiFile();
+        mWidget->loadBaseSettings();
+        mWidget->loadDeviceSettings();
         isInternetOn();
         minitialCount = false;
         emit backEventTriggered();
@@ -90,7 +88,6 @@
         mWidget->launchSettingWidget();
         }
     }
-
 // ---------------------------------------------------------------------------
 // SearchSettingsState::onExit
 // ---------------------------------------------------------------------------
@@ -100,15 +97,18 @@
     QState::onExit(event);
 
     }
-
+// ---------------------------------------------------------------------------
+// SearchSettingsState::handleBackEvent
+// ---------------------------------------------------------------------------
+//
 void SearchSettingsState::handleBackEvent(bool aStatus)
     {
     emit backEventTriggered();
     if (mWidget)
         {
         isInternetOn();
-       emit clickstatus(aStatus);
-        }   
+        emit clickstatus(aStatus);
+        }
     }
 // ---------------------------------------------------------------------------
 // SearchSettingsState::isInternetOn
@@ -125,4 +125,3 @@
         emit customizeGoButton(false);
         }
     }
-