homescreensrv_plat/homescreen_information_api/inc/homescreendomainpskeys.h
author hgs
Tue, 23 Mar 2010 23:55:55 +0200
changeset 88 7f0462e8c3da
parent 87 9d806967057c
child 73 4bc7b118b3df
permissions -rw-r--r--
201009

/*
 * 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: declaration of functions providing string constants
 *
 */

#ifndef HOMESCREEN_DOMAIN_PS_KEYS_H
#define HOMESCREEN_DOMAIN_PS_KEYS_H

/**
 * P&S Key path for all Home Screen state information keys provided by this API.
 */
const char HsStatePSKeyPath[] = "/homescreen";

/**
 * P&S Key sub path to represent the state of the Home Screen. This property is updated when
 * Home screen state is changed. Valid values are defined by the enum EPSHsState.
 *
 * @see EPSHsState
 */
const char HsStatePSKeySubPath[] = "state";

/**
 * Home screen state.
 */
enum EPSHsState
     {
     /**
     Invalid state. P&S key not initialized.
     */
     EHomeScreenInvalidState = 0,
     /**
     Home Screen inactive
     */
     EHomeScreenInactive = 1,
     /**
     Home Screen in idle state
     */
     EHomeScreenIdleState   = 2
     };

#endif //HOMESCREEN_DOMAIN_PS_KEYS_H