--- a/ui/uiengine/medialistwrapper/src/glxmlwrapper.cpp Mon May 03 16:56:16 2010 +0530
+++ b/ui/uiengine/medialistwrapper/src/glxmlwrapper.cpp Mon May 17 13:35:26 2010 +0530
@@ -119,6 +119,21 @@
return (mMLWrapperPrivate->RetrieveItemFrameCount(index));
}
+QString GlxMLWrapper::retrieveViewTitle()
+{
+ return (mMLWrapperPrivate->RetrieveViewTitle());
+}
+
+void GlxMLWrapper::handlepopulated()
+{
+ emit populated();
+}
+
+bool GlxMLWrapper::IsPopulated()
+{
+ return mMLWrapperPrivate->IsPopulated();
+}
+
QVariant GlxMLWrapper::RetrieveBitmap(int index)
{
QVariant var;
@@ -238,4 +253,12 @@
Q_UNUSED(aError);
}
+// ---------------------------------------------------------------------------
+// handleTitleAvailable.
+// ---------------------------------------------------------------------------
+//
+void GlxMLWrapper::handleTitleAvailable(QString aTitle)
+{
+ emit updateAlbumTitle(aTitle);
+}