diff -r 4785f57bf3d4 -r 03646e8da489 homescreenapp/stateplugins/hsapplibrarystateplugin/src/hsmenuviewbuilder.cpp --- a/homescreenapp/stateplugins/hsapplibrarystateplugin/src/hsmenuviewbuilder.cpp Thu May 27 12:46:08 2010 +0300 +++ b/homescreenapp/stateplugins/hsapplibrarystateplugin/src/hsmenuviewbuilder.cpp Fri Jun 11 13:30:16 2010 +0300 @@ -23,6 +23,7 @@ #include #include #include +#include #include #include #include @@ -83,7 +84,6 @@ if (view != NULL && mViewContext != HsInstalledAppsContext) { view->setToolBar(mToolBar); } - return view; } @@ -95,9 +95,11 @@ */ HbListView *HsMenuViewBuilder::currentListView() const { - const QString LIST_VIEW_NAME = mViewContextToStringMap[mViewContext] - + mOperationalContextToStringMap[mOperationalContext] - + "ListView"; + QString LIST_VIEW_NAME = mViewContextToStringMap[mViewContext]; + if (mOperationalContext == HsSearchContext) { + LIST_VIEW_NAME.append(mOperationalContextToStringMap[mOperationalContext]); + } + LIST_VIEW_NAME.append("ListView"); return qobject_cast( mDocumentLoader.findWidget(LIST_VIEW_NAME)); @@ -131,6 +133,17 @@ } /*! + \return pointer to a button + The pointer is valid until the HsMenuViewBuilder instance is destroyed. + Memory ownership is not changed. + */ +HbPushButton *HsMenuViewBuilder::collectionButton() const +{ + return qobject_cast(mDocumentLoader.findWidget( + BUTTON_NAME)); +} + +/*! \return pointer to All Applications Action. Guaranteed to be not NULL. The pointer is valid until the HsMenuViewBuilder instance is destroyed. Memory ownership is not changed. @@ -230,13 +243,13 @@ */ HsMenuViewBuilder::HsMenuViewBuilder(): DOCUMENT_FILE_NAME(":/xml/applibrary.docml"), - COMMON_SECTION_NAME("commonDefinitions"), ALL_APPS_ACTION_NAME("allAppsAction"), ALL_COLLECTIONS_ACTION_NAME("allCollectionsAction"), SEARCH_ACTION_NAME("searchAction"), OVI_STORE_ACTION_NAME("oviStoreAction"), OPERATOR_ACTION_NAME("operatorAction"), SEARCH_PANEL_NAME("searchPanel"), + BUTTON_NAME("collectionButton"), TOOL_BAR_NAME("toolBar"), mToolBar(new HbToolBar), mToolBarExtension(new HbToolBarExtension), @@ -246,7 +259,7 @@ init(); // parse common section and the one specified by view options - const bool result = parseSection(COMMON_SECTION_NAME); + const bool result = parseSection(); Q_ASSERT_X(result, "HsMenuViewBuilder::HsMenuViewBuilder()", @@ -284,12 +297,10 @@ HSMENUTEST_FUNC_ENTRY("HsMenuViewBuilder::parseSection"); bool loadStatusOk = false; - const QObjectList loadedObjects = mDocumentLoader.load(DOCUMENT_FILE_NAME, sectionName, - &loadStatusOk); - + &loadStatusOk); mLoadedObjects |= loadedObjects.toSet(); Q_ASSERT_X(loadStatusOk, @@ -342,6 +353,9 @@ mViewContextToStringMap[HsCollectionContext] = "collection"; mOperationalContextToStringMap[HsItemViewContext] = ""; mOperationalContextToStringMap[HsSearchContext] = "Search"; + mOperationalContextToStringMap[HsButtonContext] = "Button"; + mOperationalContextToStringMap[HsEmptyLabelContext] = "EmptyLabel"; + } /*! @@ -360,7 +374,6 @@ void HsMenuViewBuilder::setOperationalContext( HsOperationalContext operationalContext) { - mOperationalContext = operationalContext; }