messagingapp/msgui/msgapp/inc/msgmainwindow.h
changeset 23 238255e8b033
child 34 84197e66a4bd
child 37 518b245aa84c
equal deleted inserted replaced
5:4697dfb2d7ad 23:238255e8b033
       
     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  * Main window of the messaging application. Activates the default view.
       
    16  *
       
    17  */
       
    18 
       
    19 #ifndef MSG_MAIN_WINDOW_H
       
    20 #define MSG_MAIN_WINDOW_H
       
    21 
       
    22 // INCLUDES
       
    23 #include <qobject.h>
       
    24 #include <hbmainwindow.h>
       
    25 
       
    26 // FORWARD DECLARATIONS
       
    27 class MsgViewManager;
       
    28 class MsgServiceInterface;
       
    29 class MsgSendServiceInterface;
       
    30 
       
    31 /**
       
    32  * Main window of the messaging application. Activates the
       
    33  * default view which is the messaging list view.
       
    34  */
       
    35 class MsgMainWindow : public HbMainWindow
       
    36 {
       
    37 Q_OBJECT
       
    38 
       
    39 public:
       
    40     /**
       
    41      * Constructor
       
    42      */
       
    43     MsgMainWindow(bool serviceRequest, QWidget *parent = 0);
       
    44 
       
    45     /**
       
    46      * Destructor
       
    47      */
       
    48     virtual ~MsgMainWindow();
       
    49     
       
    50     
       
    51 private:
       
    52     MsgServiceInterface* mMsgSI;
       
    53     MsgSendServiceInterface* mMsgSendSI;
       
    54 
       
    55 };
       
    56 
       
    57 #endif // MSG_MAIN_WINDOW_H
       
    58 
       
    59 // EOF