info banner
[badge] / badgewindow.cpp
index a030ede..884cc48 100644 (file)
@@ -6,14 +6,18 @@
 #include "badgedata.h"
 #include "dialogsearch.h"
 #include <QMessageBox>
+#include <QtMaemo5/QMaemo5InformationBox>
 
 BadgeWindow::BadgeWindow(QWidget *parent)
     : QMainWindow(parent), ui(new Ui::BadgeWindow)
 {
     ui->setupUi(this);
+    setAttribute(Qt::WA_Maemo5StackedWindow);
     ui->menuBar->addAction(ui->actionSearch);
     ui->menuBar->addAction(ui->actionInfo);
+#ifndef Q_WS_MAEMO_5
     ui->menuBar->addAction(ui->actionClose);
+#endif
     connect(ui->actionSearch, SIGNAL(triggered()), this, SLOT(search()));
     connect(ui->actionClose, SIGNAL(triggered()), this, SLOT(close()));
     connect(ui->actionInfo, SIGNAL(triggered()), this, SLOT(info()));
@@ -62,7 +66,7 @@ void BadgeWindow::search()
 void BadgeWindow::info()
 {
     QMessageBox::aboutQt(this);
-    QMessageBox::about(this, tr("Badge"), tr("(c) 2009 Nicola De Filippo - nicola@nicoladefilippo.it\n"
+    QMaemo5InformationBox::information(this, tr("(c) 2009 Nicola De Filippo - nicola@nicoladefilippo.it\n"
                          "This program is licensed to you under terms of the GNU General Public\n"
                         "License Version 2 as published by Free Software Foundation. This gives\n"
                         "you legal permission to copy, distribute and/or modify this software under\n"