X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=src%2Fbackgroundsupr.h;h=e362e4061c670f2bb924b9d919a97a6f5b82dab0;hb=87748a0c3854cd5b2660baad217cf7071cb24be2;hp=87ffbf79711530b7320aba19c305afcdfebd3617;hpb=de6d2bb3861af7568006e1a02d5dddc730644b01;p=ctsim.git diff --git a/src/backgroundsupr.h b/src/backgroundsupr.h index 87ffbf7..e362e40 100644 --- a/src/backgroundsupr.h +++ b/src/backgroundsupr.h @@ -9,7 +9,7 @@ ** This is part of the CTSim program ** Copyright (C) 1983-2001 Kevin Rosenberg ** -** $Id: backgroundsupr.h,v 1.10 2001/03/09 02:40:17 kevin Exp $ +** $Id: backgroundsupr.h,v 1.12 2002/10/24 20:09:55 kevin Exp $ ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License (version 2) as @@ -53,9 +53,9 @@ class BackgroundProcessingDocument; class BackgroundSupervisor : public wxEvtHandler { private: DECLARE_DYNAMIC_CLASS(BackgroundSupervisor) - + SupervisorThread* m_pMyThread; - wxFrame* m_pParentFrame; + wxWindow* m_pParentFrame; BackgroundProcessingDocument* m_pDocument; const std::string m_strProcessTitle; @@ -69,6 +69,7 @@ private: volatile unsigned int m_iUnitsDone; Timer* m_pTimer; volatile bool m_bWorkersDeleted; + volatile bool m_bBackgroundManagerAdded; typedef std::vector ThreadContainer; ThreadContainer m_vecpThreads; @@ -87,7 +88,7 @@ public: MSG_WORKER_THREAD_FAIL = 7507, // sent by workers when they fail }; - BackgroundSupervisor (SupervisorThread* pMyThread, wxFrame* pParentFrame, BackgroundProcessingDocument* pDocument, const char* const pszProcessTitle, + BackgroundSupervisor (SupervisorThread* pMyThread, wxWindow* pParentFrame, BackgroundProcessingDocument* pDocument, const char* const pszProcessTitle, int iTotalUnits); BackgroundSupervisor () @@ -109,6 +110,7 @@ public: virtual void onWorkerDone(int iThread); void deleteWorkers(); + void ackRemoveBackgroundManager(); bool workersDone() const { return m_iRunning == 0; } bool workersDeleted() const { return m_bWorkersDeleted; } bool isDone() const {return m_bDone;}