gstreamer_test_apps/QtGSTPlayer/views.cpp
changeset 9 2a0f36a70380
child 11 1373546e05c6
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/gstreamer_test_apps/QtGSTPlayer/views.cpp	Mon May 03 12:47:24 2010 +0300
@@ -0,0 +1,31 @@
+#include <hbmainwindow.h>
+#include <hbview.h>
+//#include <hbformview.h>
+
+#include "views.h"
+
+// Helper methods for retrieving the views used in this application
+namespace Views {
+
+    // Store the mainwindow ptr here because we cannot call HbWidget::mainWindow() from these static functions.
+    HbMainWindow *win;
+    
+/*!
+  Returns the pointer to folder view.
+*/
+    HbView *folderView()
+    {
+    	// 0 since folderView was added first to the main window
+        return win->viewAt(0);
+    }
+
+/*!
+  Returns the pointer to settings view.
+*/
+  /*  HbFormView *settingsView()
+    {
+	    // 1 since settingsView was the second view added
+        return static_cast<HbFormView *>(win->viewAt(1));
+    }
+    */
+}