uifw/AknGlobalUI/AknCapServer/inc/aknblankwin.h
changeset 0 2f259fa3e83a
equal deleted inserted replaced
-1:000000000000 0:2f259fa3e83a
       
     1 /*
       
     2 * Copyright (c) 2005-2007 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 __AKN_BLANK_WIN__
       
    19 #define __AKN_BLANK_WIN__
       
    20 
       
    21 #include <aknclearer.h>
       
    22 #include <eiksrvsp.h>
       
    23 
       
    24 //
       
    25 // CAknServBlankWin
       
    26 //
       
    27 // Normally, CAknAppUi is the status pane observer. But since there is no CAknAppUi here,
       
    28 // CAknServBlankWin can be the status pane observer.
       
    29 class CAknServBlankWin : public CAknScreenClearerBase, MEikStatusPaneObserver
       
    30     {
       
    31 public:
       
    32     ~CAknServBlankWin();
       
    33     static CAknServBlankWin* NewL(RWindowGroup& aParent, CEikServStatusPane* aSp);
       
    34     void SetLayoutBlank(TBool aLayoutBlank);
       
    35 private:
       
    36     CAknServBlankWin(CEikServStatusPane* aSp);
       
    37     void HandleStatusPaneSizeChange();
       
    38 private:
       
    39     CEikServStatusPane* iSp;
       
    40     TBool iLayoutBlank;
       
    41     };
       
    42     
       
    43 #endif // __AKN_BLANK_WIN__