ginebra2/emulator/browser.h
changeset 9 b39122337a00
parent 3 0954f5dd2cd0
child 16 3c88a81ff781
--- a/ginebra2/emulator/browser.h	Mon Jul 12 15:46:53 2010 -0400
+++ b/ginebra2/emulator/browser.h	Fri Aug 06 17:23:08 2010 -0400
@@ -38,11 +38,6 @@
   void showSplashScreen();
   void destroySplashScreen();
   void setApplicationNameVersion();
-  /*
-private:
-  QDir getHomeDir();
-  void removeFaviconDir();
-*/
   void queueOpenUrl(QString url);
 
  signals:
@@ -52,6 +47,15 @@
   void onChromeComplete();
   void openUrl(QString);
 
+#ifdef Q_WS_MAEMO_5
+ private slots:
+  void onBookmarksAction();
+  void onHistoryAction();
+#endif
+
+ private:
+  void platformSpecificInit();
+
  private:
   QString m_install;
   QString m_chromeUrl;
@@ -60,8 +64,13 @@
   GVA::ChromeWidget * m_chrome;
   GVA::ChromeView * m_view;
   QGraphicsScene *m_scene;
+  QString m_initialUrl;
+#ifdef Q_WS_MAEMO_5
+  QMainWindow *m_mainWindow;
+  QSplashScreen *m_splashScreenM5;
+#else
   QLabel *m_splashScreen;  // Owned
-  QString m_initialUrl;
+#endif
 };
 
 #endif