logsui/logsapp/tsrc/ut_logsapp/stubs/hbstubs_helper.h
author hgs
Mon, 23 Aug 2010 18:14:51 +0300
changeset 15 76d2cf7a585e
parent 8 6c9acdc6adc0
child 17 90fe74753f71
permissions -rw-r--r--
201033

/*
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description:
*
*/

#ifndef HBSTUB_HELPER_H
#define HBSTUB_HELPER_H

class HbListViewItem;

/**
* Helper class to control logsdbconnector stub behavior
*
*/ 
class HbStubHelper 
{
    public:
        static void reset();
        static int widgetActionsCount();
        static bool menuShown();
        static bool dialogShown();
        static bool singleShotTimerActive();
        static bool quitCalled();
        static void setGestureState(int state);
        static void setWidgetOpen(bool isOpen);
        static bool isWidgetOpen();    
        static bool isWidgetRaised();
        static void setColorScheme(QColor col);
        static void setActivityReason(Hb::ActivationReason reason);
        static void setActivityId(QString activityId);
        static QList<HbListViewItem*>& listItems();
        static bool listScrollToCalled();
        static bool listEnsureVisibleCalled();
        static int menuShownPlacement();
        static void stringUtilDigitConversion(bool enabled);
};

#endif