Home | News | Projects | Releases
Bugs | RFE | Repositories | Help
Processing status no longer remains after task for editing a contact is completed.
authorSteve Brokenshire <sbrokenshire@xestia.co.uk>
Sun, 20 Sep 2015 11:55:17 +0000 (12:55 +0100)
committerSteve Brokenshire <sbrokenshire@xestia.co.uk>
Sun, 20 Sep 2015 11:55:17 +0000 (12:55 +0100)
source/common/timers.cpp

index d4ec0eb..abe6f5e 100644 (file)
@@ -216,12 +216,7 @@ void wxActListProcTimer::Notify(){
     for (std::map<int,int>::iterator iter = ActListPtr->begin();
          iter != ActListPtr->end(); ++iter){
         
-        // Check for any queued tasks and start one.
-        
-        if (iter->second > 4){
-            continue;
-        }
-        
+        // Check for any queued tasks and start one.        
         
         // 0 = Queued.
         // 1 = Processing.
@@ -234,30 +229,62 @@ void wxActListProcTimer::Notify(){
         // 8 = Completed. (UI Updated).
         
         std::map<int,long>::iterator LongIter = ActListUIPtr->find(iter->first);
+       
+        if (iter->second > 4){
+       
+            continue;
+        }
+       
         std::map<int,wxString>::iterator DetailIter = ActListDetailPtr->find(iter->first);
-        
+       
+       wxCommandEvent uevent(ACTMGR_UPDATESTATUSLABEL);
+       ActivityMgrLabelUpdate *ueventdata = new ActivityMgrLabelUpdate;
+       uevent.SetClientData(ueventdata);
+       
         if (iter->second == 1){
             
-            lstActivityPtr->SetItem(LongIter->second, 2, _("Processing..."));
+           ueventdata->ItemIndex = LongIter->second;
+           ueventdata->ItemLabel = _("Processing...");     
+           ueventdata->ItemDes = _("Adding Contact '") + DetailIter->second + _("'...");
+           
+           wxPostEvent(static_cast<frmActivityMgr*>(ActMgrPtr), uevent);
+           
+            /*lstActivityPtr->SetItem(LongIter->second, 2, _("Processing..."));
             if (ActListDetailPtr->find(iter->first) != ActListDetailPtr->end()){
                 lblDetailsPtr->SetLabel(_("Adding Contact '") + DetailIter->second + _("'..."));
-            }
-            //CardDAVIter->second.
+            }*/
             
         } else if (iter->second == 2){
             
-            lstActivityPtr->SetItem(LongIter->second, 2, _("Failed"));
-            iter->second = 5;
-            
+           ueventdata->ItemIndex = LongIter->second;
+           ueventdata->ItemLabel = _("Failed");
+           
+           wxPostEvent(static_cast<frmActivityMgr*>(ActMgrPtr), uevent);
+           iter->second = 5;       
+
+            //lstActivityPtr->SetItem(LongIter->second, 2, _("Failed"));
+           
         } else if (iter->second == 3){
+           ueventdata->ItemIndex = LongIter->second;
+           ueventdata->ItemLabel = _("Stopped");
+           
+           wxPostEvent(static_cast<frmActivityMgr*>(ActMgrPtr), uevent);
+           iter->second = 5;
             
-            lstActivityPtr->SetItem(LongIter->second, 2, _("Stopped"));
-            iter->second = 6;
+            //lstActivityPtr->SetItem(LongIter->second, 2, _("Stopped"));
+            //iter->second = 6;
             
         } else if (iter->second == 4){
             
-            lstActivityPtr->SetItem(LongIter->second, 2, _("Completed"));
-            iter->second = 8;
+           ueventdata->ItemIndex = LongIter->second;
+           ueventdata->ItemLabel = _("Completed");
+           
+           wxPostEvent(static_cast<frmActivityMgr*>(ActMgrPtr), uevent);
+           iter->second = 8;
+           
+            //lstActivityPtr->SetItem(LongIter->second, 2, _("Completed"));
+            //iter->second = 8;
             
         }
         
Xestia Software Development
Yn Maystri
© 2006 - 2019 Xestia Software Development
Software

Xestia Address Book
Xestia Calendar
Development

Xestia Gelforn
Everything else

About
News
Privacy Policy