ui/uiengine/medialistwrapper/src/glxmlwrapper.cpp
changeset 33 1ee2af37811f
parent 29 2c833fc9e98f
child 44 aa2fa096cbfb
--- a/ui/uiengine/medialistwrapper/src/glxmlwrapper.cpp	Fri May 14 15:52:22 2010 +0300
+++ b/ui/uiengine/medialistwrapper/src/glxmlwrapper.cpp	Thu May 27 12:51:42 2010 +0300
@@ -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);
+}