37
|
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: Message service application main window.
|
|
15 |
*
|
|
16 |
*/
|
|
17 |
|
|
18 |
#ifndef __MSG_SERVICE_WINDOW_H__
|
|
19 |
#define __MSG_SERVICE_WINDOW_H__
|
|
20 |
|
|
21 |
#include <hbmainwindow.h>
|
|
22 |
|
|
23 |
// FORWARD DECLARATIONS
|
|
24 |
class MsgViewInterface;
|
|
25 |
class MsgStoreHandler;
|
|
26 |
class MsgServiceViewManager;
|
|
27 |
class MsgShareUiInterface;
|
|
28 |
class MsgSendInterface;
|
56
|
29 |
class MsgUriHandlerInterface;
|
37
|
30 |
|
|
31 |
class MsgServiceWindow : public HbMainWindow
|
|
32 |
{
|
|
33 |
Q_OBJECT
|
|
34 |
|
|
35 |
public:
|
|
36 |
/**
|
|
37 |
* Constructor
|
|
38 |
*/
|
|
39 |
MsgServiceWindow();
|
|
40 |
|
|
41 |
/**
|
|
42 |
* Destructor
|
|
43 |
*/
|
|
44 |
~MsgServiceWindow();
|
|
45 |
|
|
46 |
private:
|
|
47 |
/**
|
|
48 |
* View interface object
|
|
49 |
* Owned
|
|
50 |
*/
|
|
51 |
MsgSendInterface* mSendInterface;
|
|
52 |
|
|
53 |
/**
|
|
54 |
* View interface object
|
|
55 |
* Owned
|
|
56 |
*/
|
|
57 |
MsgViewInterface* mViewInterface;
|
|
58 |
|
|
59 |
/**
|
|
60 |
* View interface object
|
|
61 |
* Owned
|
|
62 |
*/
|
|
63 |
MsgShareUiInterface* mShareUiInterface;
|
56
|
64 |
|
|
65 |
/**
|
|
66 |
* URI handler interface object
|
|
67 |
* Owned
|
|
68 |
*/
|
|
69 |
MsgUriHandlerInterface* mUriInterface;
|
37
|
70 |
|
|
71 |
/**
|
|
72 |
* Message store handler
|
|
73 |
* Owned.
|
|
74 |
*/
|
|
75 |
MsgStoreHandler* mStoreHandler;
|
|
76 |
|
|
77 |
/**
|
|
78 |
* View manager
|
|
79 |
* Owned.
|
|
80 |
*/
|
|
81 |
MsgServiceViewManager* mViewManager;
|
|
82 |
|
|
83 |
};
|
|
84 |
|
|
85 |
#endif // __MSG_SERVICE_WINDOW_H__
|