Home | News | Projects | Releases
Bugs | RFE | Repositories | Help
Added Save buttons in the pictures, logos and sounds tabs of the contact editor.
[xestiaab/.git] / source / common / timers.cpp
index d4ec0eb..3f0b181 100644 (file)
@@ -1,3 +1,21 @@
+// timers.cpp - Timers subroutines.
+//
+// (c) 2012-2015 Xestia Software Development.
+//
+// This file is part of Xestia Address Book.
+//
+// Xestia Address Book is free software: you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by the
+// Free Software Foundation, version 3 of the license.
+//
+// Xestia Address Book is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License along
+// with Xestia Address Book. If not, see <http://www.gnu.org/licenses/>
+
 #include "../frmActivityMgr.h"
 #include "../frmContact.h"
 #include "../frmMain.h"
@@ -216,12 +234,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 +247,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