logsui/logsapp/tsrc/ut_logsapp/stubs/hbstubs.cpp
changeset 2 7119b73b84d6
parent 0 4a5361db8937
child 4 e52d42f9500c
--- a/logsui/logsapp/tsrc/ut_logsapp/stubs/hbstubs.cpp	Tue May 04 12:39:37 2010 +0300
+++ b/logsui/logsapp/tsrc/ut_logsapp/stubs/hbstubs.cpp	Fri May 14 15:52:41 2010 +0300
@@ -28,7 +28,8 @@
 
 int actionCount = 0;
 Qt::Orientation windowOrientation = Qt::Vertical;
-bool logsMenuShown = false;
+bool testMenuShown = false;
+bool testDialogShown = false;
 HbMainWindow* testWindow = 0;
 HbView* testView = 0;
 int testViewCount = 0;
@@ -43,10 +44,11 @@
 void HbStubHelper::reset()
 {
     actionCount = 0;
-    logsMenuShown = false;
+    testMenuShown = false;
     testSingleShotTimer = false;
     testQuitCalled = false;
     testIsWidgetRaised = false;
+    testDialogShown = false;
 }
 
 
@@ -58,9 +60,15 @@
 
 bool HbStubHelper::menuShown()
 {
-    return logsMenuShown;
+    return testMenuShown;
 }
 
+bool HbStubHelper::dialogShown()
+{
+    return testDialogShown;
+}
+
+
 bool HbStubHelper::singleShotTimerActive()
 {
     return testSingleShotTimer;
@@ -139,21 +147,25 @@
 //
 // -----------------------------------------------------------------------------
 //
-HbAction *HbMenu::exec(const QPointF &pos, HbAction *action )
+void HbMenu::open(QObject *receiver, const char *member)
 {
-   Q_UNUSED(action)
-   Q_UNUSED(pos)
-   logsMenuShown = true;
-   return 0;
+   Q_UNUSED(receiver)
+   Q_UNUSED(member)   
+   testMenuShown = true;
 }
 
-HbAction *HbMenu::exec(HbAction *action)
+void HbDialog::open(QObject *receiver, const char *member)
 {
-    Q_UNUSED(action)
-    logsMenuShown = true;
-    return 0;
+   Q_UNUSED(receiver)
+   Q_UNUSED(member)
+   testDialogShown = true;
 }
 
+
+// -----------------------------------------------------------------------------
+//
+// -----------------------------------------------------------------------------
+//
 void QGraphicsWidget::addAction(QAction *action)
 {
     Q_UNUSED(action)
@@ -193,26 +205,6 @@
     return QRectF(0, 0, 100,100);
 }
 
-HbAction* HbMainWindow::softKeyAction(Hb::SoftKeyId key) const
-{
-    Q_UNUSED(key)
-    return testSoftkeyAction;
-}
-
-void HbMainWindow::addSoftKeyAction(Hb::SoftKeyId key, HbAction *action)
-{
-    Q_UNUSED(key)
-    Q_UNUSED(action)
-    testSoftkeyAction = action;
-}
-
-void HbMainWindow::removeSoftKeyAction(Hb::SoftKeyId key, HbAction *action)
-{
-    Q_UNUSED(key)
-    Q_UNUSED(action)
-    testSoftkeyAction = 0;
-}
-
 HbView *HbMainWindow::addView(QGraphicsWidget *widget)
 {
     Q_UNUSED(widget)