remotemgmt_plat/syncml_ds_error_reporting_api/tsrc/SyncStatusSpy/inc/SyncStatusSpyAppUi.h
branchRCL_3
changeset 62 19bba8228ff0
parent 13 06f47423ecee
equal deleted inserted replaced
61:b183ec05bd8c 62:19bba8228ff0
       
     1 /*
       
     2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description: 
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef SYNCSTATUSSPYAPPUI_H
       
    19 #define SYNCSTATUSSPYAPPUI_H
       
    20 
       
    21 #include <aknappui.h>
       
    22 #include <eikmenub.h>
       
    23 #include "SyncStatusSpySettingItemListSettings.h"
       
    24 #include <DocumentHandler.h>
       
    25 
       
    26 
       
    27 class CSyncStatusSpySettingItemList;
       
    28 
       
    29 /**
       
    30  * @class	CSyncStatusSpyAppUi SyncStatusSpyAppUi.h
       
    31  * @brief The AppUi class handles application-wide aspects of the user interface, including
       
    32  *        container management and the default menu, control pane, and status pane.
       
    33  */
       
    34 
       
    35 class CSyncStatusSpyAppUi : public CAknAppUi
       
    36 	{
       
    37 public: 
       
    38 	// constructor and destructor
       
    39 	CSyncStatusSpyAppUi();
       
    40 	void ConstructL();
       
    41 	virtual ~CSyncStatusSpyAppUi();
       
    42 
       
    43 public: 
       
    44 	// from CEikAppUi
       
    45 	void HandleCommandL( TInt aCommand );
       
    46 	void HandleResourceChangeL( TInt aType );	
       
    47 	void HandleForegroundEventL(TBool aForeground);
       
    48 	
       
    49 private:
       
    50 	void InitializeContainersL();
       
    51 	
       
    52 
       
    53 private: 
       
    54 	CSyncStatusSpySettingItemList* iSyncStatusSpySettingItemList;
       
    55 	CSyncStatusSpySettingItemListSettings* iSettings;
       
    56 	CDocumentHandler* iDocHandler;
       
    57 		
       
    58 	};
       
    59 
       
    60 #endif // SYNCSTATUSSPYAPPUI_H