QTfrontend/hwmap.h
changeset 168 679e9b8912f5
parent 164 92cff18a3ab6
child 170 ef1031ba44fc
--- a/QTfrontend/hwmap.h	Tue Sep 26 11:53:12 2006 +0000
+++ b/QTfrontend/hwmap.h	Tue Sep 26 17:50:14 2006 +0000
@@ -53,12 +53,17 @@
     
  public:
   HWMap();
+  virtual ~HWMap();
   void getImage(std::string seed);
 
  signals:
   void ImageReceived(const QImage newImage);
+  void isReadyNow();
 
  private:
+  static int isBusy;
+  void RealStart();
+
   bool m_isStarted;
   std::string m_seed;
   QTcpServer * IPCServer;
@@ -75,6 +80,8 @@
   void ClientDisconnect();
   void ClientRead();
   void StartProcessError(QProcess::ProcessError error);
+
+  void tcpServerReady();
 };
 
 #endif // _HWMAP_INCLUDED