logsui/logsapp/tsrc/ut_logsapp/stubs/hbstubs.cpp
changeset 14 f27aebe284bb
parent 11 64a47b97e1e1
child 15 76d2cf7a585e
--- a/logsui/logsapp/tsrc/ut_logsapp/stubs/hbstubs.cpp	Tue Jul 06 14:16:36 2010 +0300
+++ b/logsui/logsapp/tsrc/ut_logsapp/stubs/hbstubs.cpp	Wed Aug 18 09:49:12 2010 +0300
@@ -20,7 +20,7 @@
 #include <hbmainwindow.h>
 #include <hbinstance.h>
 #include "hbstubs_helper.h"
-#include <hbmessagebox.h>
+#include <hbdialog.h>
 #include <hbapplication.h>
 #include <hbcolorscheme.h>
 #include <hbview.h>
@@ -31,6 +31,7 @@
 #include <QGesture>
 #include <hblistview.h>
 #include <hblistviewitem.h>
+#include <hbmessagebox.h>
 
 int actionCount = 0;
 Qt::Orientation windowOrientation = Qt::Vertical;
@@ -296,6 +297,27 @@
    testDialogShown = true;
 }
 
+void HbDialog::open()
+{
+   testDialogShown = true;
+}
+
+void HbMessageBox::question(const QString &questionText,
+                            QObject *receiver ,
+                            const char *member,
+                            HbMessageBox::StandardButtons buttons,
+                            QGraphicsWidget *headingWidget,
+                            QGraphicsScene *scene,
+                            QGraphicsItem *parent)
+{
+    Q_UNUSED(questionText)
+    Q_UNUSED(receiver)
+    Q_UNUSED(member)
+    Q_UNUSED(buttons)
+    Q_UNUSED(scene)
+    Q_UNUSED(parent)
+    testDialogShown = true;
+}
 
 // -----------------------------------------------------------------------------
 //
@@ -394,15 +416,6 @@
     return list;
 }
 
-void HbMessageBox::setText(const QString &string)
-{
-    if (string == "Ok") {
-    	selectedActionString = "primary";
-    } else if (string == "Cancel") {
-    	selectedActionString = "secondary";
-    }
-}
-
 void QTimer::singleShot(int msec, QObject *receiver, const char *member)
 {
     testSingleShotTimer = true;