wlanutilities/wlanlogin/wlanloginapp/inc/wlanloginmainwindow.h
branchRCL_3
changeset 24 63be7eb3fc78
equal deleted inserted replaced
23:b852595f5cbe 24:63be7eb3fc78
       
     1 /*
       
     2  * Copyright (c) 2010 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 WLANLOGINMAINWINDOW_H
       
    19 #define WLANLOGINMAINWINDOW_H
       
    20 
       
    21 // System includes
       
    22 #include <HbMainWindow>
       
    23 
       
    24 // User includes
       
    25 
       
    26 // Forward declarations
       
    27 
       
    28 // External data types
       
    29 
       
    30 // Constants
       
    31 
       
    32 // Forward declarations
       
    33 class WlanLoginView;
       
    34 class WlanLoginApplication;
       
    35 
       
    36 // Class declaration
       
    37 class WlanLoginMainWindow : public HbMainWindow
       
    38     {
       
    39     Q_OBJECT
       
    40 
       
    41 public:
       
    42     explicit WlanLoginMainWindow(WlanLoginApplication* appRef);    
       
    43     ~WlanLoginMainWindow();
       
    44 
       
    45     WlanLoginView* loginView() const;
       
    46     WlanLoginApplication* application() const;
       
    47 
       
    48 private:
       
    49     void addLoginView();
       
    50     
       
    51     
       
    52 private: //Data
       
    53 
       
    54     // Not owned data
       
    55 
       
    56     // Owned data
       
    57     WlanLoginApplication* mAppRef; //!< pointer to application instance
       
    58     WlanLoginView* mLoginView; //!< pointer to login view
       
    59 
       
    60     };
       
    61 
       
    62 #endif // WLANLOGINMAINWINDOW_H