ginebra2/emulator/browser.h
changeset 10 232fbd5a2dcb
parent 6 1c3b8676e58c
--- a/ginebra2/emulator/browser.h	Tue Jul 06 14:03:49 2010 +0300
+++ b/ginebra2/emulator/browser.h	Wed Aug 18 09:37:05 2010 +0300
@@ -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