equal
deleted
inserted
replaced
20 |
20 |
21 #include <QObject> |
21 #include <QObject> |
22 #include "cntcontactcardview.h" |
22 #include "cntcontactcardview.h" |
23 |
23 |
24 class CntServiceHandler; |
24 class CntServiceHandler; |
|
25 class CntAbstractServiceProvider; |
25 |
26 |
26 class CntServiceContactCardView : public CntContactCardView |
27 class CntServiceContactCardView : public CntContactCardView |
27 { |
28 { |
28 Q_OBJECT |
29 Q_OBJECT |
29 |
30 |
30 private slots: |
|
31 |
|
32 void doShowPreviousView(); |
|
33 |
|
34 public: |
31 public: |
35 CntServiceContactCardView(CntServiceHandler *aServiceHandler); |
32 CntServiceContactCardView( CntAbstractServiceProvider& aServiceProvider ); |
36 ~CntServiceContactCardView(); |
33 ~CntServiceContactCardView(); |
37 |
34 |
38 int viewId() const { return serviceContactCardView; } |
35 int viewId() const { return serviceContactCardView; } |
39 |
36 |
|
37 private slots: |
|
38 void closeContactCard(); |
|
39 |
40 private: |
40 private: |
41 CntServiceHandler *mServiceHandler; |
41 CntAbstractServiceProvider& mProvider; |
42 |
42 |
43 }; |
43 }; |
44 |
44 |
45 #endif // CNTSERVICECONTACTCARDVIEW_H |
45 #endif // CNTSERVICECONTACTCARDVIEW_H |
46 |
46 |