qtmobility/src/messaging/qmessageservice_symbian_p.h
changeset 14 6fbed849b4f4
parent 11 06b8e2af4411
--- a/qtmobility/src/messaging/qmessageservice_symbian_p.h	Fri Jun 11 14:26:25 2010 +0300
+++ b/qtmobility/src/messaging/qmessageservice_symbian_p.h	Wed Jun 23 19:08:38 2010 +0300
@@ -1,6 +1,6 @@
 /****************************************************************************
 **
-** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
+** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
 ** All rights reserved.
 ** Contact: Nokia Corporation (qt-info@nokia.com)
 **
@@ -69,11 +69,14 @@
     bool countMessages(const QMessageFilter &filter);
 	
     void setFinished(bool successful);
+    
+    void messagesFound(const QMessageIdList &ids, bool isFiltered, bool isSorted);
+    void messagesCounted(int count);
 
 signals:
 	void stateChanged(QMessageService::State);
 	void messagesFound(const QMessageIdList&);
-    void messagesCounted(int count);
+    //void messagesCounted(int count);
 	void progressChanged(uint, uint);
 
 private:	
@@ -81,9 +84,21 @@
     QMessageService::State _state;
     QMessageManager::Error _error;
     int _actionId;
-    bool _active;
+    int _count;
+    mutable bool _active;
+    mutable int _pendingRequestCount;
+    QMessageIdList _ids;
+    mutable bool _sorted;
+    mutable bool _filtered;
+
+    mutable QMessageFilter _filter;
+    mutable QMessageSortOrder _sortOrder;
+    mutable int _limit;
+    mutable int _offset;
+
     
     friend class CMTMEngine;
+    friend class CFSEngine;
 };