eventsui/eventsmgmtui/inc/evtmgmtuilocsettinglauncher.h
branchRCL_3
changeset 17 1fc85118c3ae
parent 16 8173571d354e
child 18 870918037e16
equal deleted inserted replaced
16:8173571d354e 17:1fc85118c3ae
     1 /*
       
     2 * Copyright (c) 2002-2006 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:  Responsible for launching positioning settings
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef EvtMgmtUiLocSettingsLauncher_H
       
    19 #define EvtMgmtUiLocSettingsLauncher_H
       
    20 
       
    21 // INCLUDES
       
    22 #include <e32base.h>
       
    23 #include <locsettingsuiclient.h>
       
    24 
       
    25 // CLASS DECLARATION
       
    26 /**
       
    27 *  CEvtMgmtUiLocSettingsLauncher class
       
    28 *  This class is a wrapper for launching Position settings
       
    29 */
       
    30 class CEvtMgmtUiLocSettingsLauncher : public CActive
       
    31 	{
       
    32 	private : // Constructors and destructor
       
    33 	      /**
       
    34 	       * C++ default constructor.
       
    35 	       */
       
    36 	    CEvtMgmtUiLocSettingsLauncher();
       
    37 	      
       
    38 	public:
       
    39 	      /**
       
    40 	       * Destructor.
       
    41 	       */
       
    42 	      ~CEvtMgmtUiLocSettingsLauncher();		
       
    43 	
       
    44 	public:	
       
    45 		/**
       
    46          * Two-phased constructor.
       
    47          *
       
    48          */
       
    49 	     static CEvtMgmtUiLocSettingsLauncher* NewL();
       
    50 			      
       
    51 	private: 
       
    52 		 /**
       
    53           * Second phase of construction.
       
    54           */
       
    55 	      void ConstructL();
       
    56 	      
       
    57 	public: // new functions
       
    58 	      void LaunchL();	      
       
    59 	      	      
       
    60 	protected: // from CActive
       
    61 	      void RunL();
       
    62 	      
       
    63 	      void DoCancel();
       
    64 	      
       
    65 	      void CancelRequest();
       
    66 	      
       
    67 	private:
       
    68 	    // Pointer to Location setings client library
       
    69         CLocSettingsUiClient*       iClientLibrary;
       
    70 	};
       
    71 	
       
    72 #endif // EvtMgmtUiLocSettingsLauncher_H
       
    73 
       
    74 // End of file