css
[badge] / badgewindow.cpp
index 459e655..395d1d0 100644 (file)
@@ -6,14 +6,16 @@
 #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_HILDON
+#ifndef Q_WS_MAEMO_5
     ui->menuBar->addAction(ui->actionClose);
 #endif
     connect(ui->actionSearch, SIGNAL(triggered()), this, SLOT(search()));
@@ -33,7 +35,15 @@ void BadgeWindow::selectedDay(QDate date)
 
     TimeTable tt;
     tt.day = date;
-    data.getTimetable(tt);
+    if (data.getTimetable(tt) == false) {
+        tt.entrance = QTime::currentTime();
+        tt.exit = QTime::currentTime();
+        tt.firstPause = QTime::currentTime();
+        tt.endFirstPause = QTime::currentTime();
+        tt.secondPause = QTime::currentTime();
+        tt.endSecondPause = QTime::currentTime();
+    }
+
     tt = day.getTimes(tt);
     if (tt.wrong() != TimeTable::WRONG) {
         BadgeData data;
@@ -64,7 +74,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"