equal
deleted
inserted
replaced
|
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 * |
|
16 */ |
|
17 |
|
18 #ifndef CNTSERVICECONTACTCARDVIEW_H |
|
19 #define CNTSERVICECONTACTCARDVIEW_H |
|
20 |
|
21 #include <QObject> |
|
22 #include "cntcontactcardview.h" |
|
23 #include "cntviewparameters.h" |
|
24 |
|
25 class CntServiceHandler; |
|
26 |
|
27 class CntServiceContactCardView : public CntContactCardView |
|
28 { |
|
29 Q_OBJECT |
|
30 |
|
31 public slots: |
|
32 |
|
33 void aboutToCloseView(); |
|
34 void editContact(); |
|
35 |
|
36 public: |
|
37 CntServiceContactCardView(CntServiceHandler *aServiceHandler, CntViewManager *viewManager, QGraphicsItem *parent = 0); |
|
38 ~CntServiceContactCardView(); |
|
39 |
|
40 CntViewParameters::ViewId viewId() const { return CntViewParameters::serviceContactCardView; } |
|
41 |
|
42 private: |
|
43 CntServiceHandler *mServiceHandler; |
|
44 |
|
45 }; |
|
46 |
|
47 #endif // CNTSERVICECONTACTCARDVIEW_H |
|
48 |
|
49 // EOF |