ui/uiengine/medialistwrapper/src/glxmlwrapper.cpp
changeset 42 5e1df1b52eb3
parent 40 112f0ac2d1f0
child 44 aa2fa096cbfb
--- 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);
+}