phoneapp/phoneui2/inc/hbphonemainwindow.h
changeset 78 baacf668fe89
parent 76 cfea66083b62
equal deleted inserted replaced
76:cfea66083b62 78:baacf668fe89
     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:  Main window for PhoneUI
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef HBPHONEMAINWINDOW_H_
       
    20 #define HBPHONEMAINWINDOW_H_
       
    21 
       
    22 #include <QGraphicsItem>
       
    23 #include <hbmainwindow.h>
       
    24 
       
    25 class PhoneUiHouseHold;
       
    26 
       
    27 class HbPhoneMainWindow: public HbMainWindow
       
    28     {
       
    29     Q_OBJECT
       
    30 public:
       
    31 
       
    32     HbPhoneMainWindow(QWidget* parent = 0);
       
    33     ~HbPhoneMainWindow();
       
    34     
       
    35 signals:
       
    36     void focusLost();
       
    37     void focusGained(); 
       
    38     
       
    39 public slots:
       
    40     void onFocusLost();
       
    41     void onFocusGained();
       
    42 
       
    43 
       
    44 private: // data
       
    45     PhoneUiHouseHold* mHouseHold;
       
    46     
       
    47 
       
    48     };
       
    49 
       
    50 
       
    51 
       
    52 #endif /* HBPHONEMAINVIEW_H_ */