]> SALOME platform Git repositories - modules/gui.git/commitdiff
Salome HOME
no message
authorstv <stv@opencascade.com>
Tue, 2 Oct 2007 11:10:58 +0000 (11:10 +0000)
committerstv <stv@opencascade.com>
Tue, 2 Oct 2007 11:10:58 +0000 (11:10 +0000)
src/PyConsole/PyConsole_Console.cxx
src/PyConsole/PyConsole_Editor.cxx
src/PyInterp/PyInterp_Dispatcher.cxx
src/PyInterp/PyInterp_Dispatcher.h

index 85ba6c722115b64837ddebcd53a95c996e1d0da2..897a4a9077046f2dadd966cb40bb745b58854cad 100644 (file)
@@ -25,8 +25,6 @@
   \brief Python console widget.
 */  
 
-#include <Python.h>
-
 #include "PyConsole_Console.h"
 #include "PyConsole_Editor.h"
 
index 2fee0d516f32cb5dea7baf4904e5af1de553d515..a0b4536ffd223db4708e85abe62ce638040b87da 100644 (file)
@@ -123,6 +123,7 @@ static QString DOTS_PROMPT  = "... ";
 class ExecCommand : public PyInterp_LockRequest
 {
 public:
+  enum { ES_PRINT = PyInterp_Event::ES_USER + 1 };
   /*!
     \brief Constructor.
     
@@ -137,7 +138,7 @@ public:
               PyConsole_Editor*       theListener, 
               bool                    sync = false )
     : PyInterp_LockRequest( theInterp, theListener, sync ),
-      myCommand( theCommand ), myState( PyInterp_Event::OK )
+      myCommand( theCommand ), myState( PyInterp_Event::ES_OK )
   {}
 
 protected:
@@ -153,9 +154,9 @@ protected:
       int ret = getInterp()->run( myCommand.toLatin1() );
 //      SUIT_Session::SetPythonExecuted(false); // enable GUI user actions
       if ( ret < 0 )
-       myState = PyInterp_Event::ERRORS;
+             myState = PyInterp_Event::ES_ERROR;
       else if ( ret > 0 )
-       myState = PyInterp_Event::INCOMPLETE;
+             myState = PyInterp_Event::ES_INCOMPLETE;
     } 
   }
 
@@ -165,6 +166,8 @@ protected:
   */
   virtual QEvent* createEvent() const
   {
+    if ( IsSync() )
+      QCoreApplication::sendPostedEvents( listener(), ES_PRINT );
     return new PyInterp_Event( myState, (PyInterp_Request*)this );    
   }
 
@@ -173,12 +176,10 @@ private:
   int     myState;     //!< Python command execution status
 };
 
-#define PRINT_EVENT 65432
-
 class PrintEvent : public QEvent
 {
 public:
-  PrintEvent( const char* c ) : QEvent( (QEvent::Type)PRINT_EVENT ), myText( c ) {}
+  PrintEvent( const char* c ) : QEvent( (QEvent::Type)ExecCommand::ES_PRINT ), myText( c ) {}
   QString text() const { return myText; }
 private:
   QString myText;
@@ -863,32 +864,14 @@ void PyConsole_Editor::customEvent( QEvent* event )
 {
   switch( event->type() )
   {
-  case PRINT_EVENT:
+  case ExecCommand::ES_PRINT:
     {
       PrintEvent* pe=(PrintEvent*)event;
-
-      // [ BEGIN ] workaround for the synchronous mode (1.)
-      if ( isSync() ) {
-       QTextCursor cur = textCursor();
-       cur.movePosition( QTextCursor::End );
-       cur.movePosition( QTextCursor::Left, QTextCursor::KeepAnchor, PROMPT_SIZE );
-       cur.removeSelectedText();
-       setTextCursor( cur );
-      }
-      // [ END ] workaround for the synchronous mode (1.)
-
       addText( pe->text() );
-
-      // [ BEGIN ] workaround for the synchronous mode (2.)
-      if ( isSync() ) {
-       addText( myPrompt );
-      }
-      // [ END ] workaround for the synchronous mode (2.)
-
       return;
     }
-  case PyInterp_Event::OK:
-  case PyInterp_Event::ERRORS:
+  case PyInterp_Event::ES_OK:
+  case PyInterp_Event::ES_ERROR:
   {
     // clear command buffer
     myCommandBuffer.truncate( 0 );
@@ -904,7 +887,7 @@ void PyConsole_Editor::customEvent( QEvent* event )
       myEventLoop->exit();
     break;
   }
-  case PyInterp_Event::INCOMPLETE:
+  case PyInterp_Event::ES_INCOMPLETE:
   {
     // extend command buffer (multi-line command)
     myCommandBuffer.append( "\n" );
@@ -929,7 +912,7 @@ void PyConsole_Editor::customEvent( QEvent* event )
   // unset history browsing mode
   myCmdInHistory = -1;
 
-  if ( (int)event->type() == (int)PyInterp_Event::OK && myQueue.count() > 0 )
+  if ( (int)event->type() == (int)PyInterp_Event::ES_OK && myQueue.count() > 0 )
   {
     // process the next sheduled command from the queue (if there is any)
     QString nextcmd = myQueue[0];
index 917298417922d03ea1b154a5c50269944b34fe4e..6ff519b1fac1a067d1cfcf81e53ed9f69fb3ac46 100755 (executable)
@@ -66,7 +66,7 @@ void PyInterp_Request::Destroy( PyInterp_Request* request )
 
 QEvent* PyInterp_Request::createEvent() const
 {
-  return new PyInterp_Event( PyInterp_Event::NOTIFY, (PyInterp_Request*)this );
+  return new PyInterp_Event( PyInterp_Event::ES_NOTIFY, (PyInterp_Request*)this );
 }
 
 void PyInterp_Request::processEvent( QObject* o )
index 6f6240794dc8e66fdc8bfc3eb3ec270eac37af68..237e5e650314a6ca6f19e01799796e59cfd1475a 100755 (executable)
@@ -73,11 +73,12 @@ protected:
 
   virtual void    processEvent( QObject* );
 
-private:
-  void            process();
   QObject*        listener() const { return myListener; }
   void            setListener( QObject* );
 
+private:
+  void            process();
+
 private:
   QMutex          myMutex;
   bool            myIsSync;
@@ -105,7 +106,7 @@ class PYINTERP_EXPORT PyInterp_Event : public QEvent
   PyInterp_Event( const PyInterp_Event& );
 
 public:
-  enum { NOTIFY = QEvent::User + 5000, OK, ERROR, INCOMPLETE, LAST };
+  enum { ES_NOTIFY = QEvent::User + 5000, ES_OK, ES_ERROR, ES_INCOMPLETE, ES_USER } ExecState;
 
   PyInterp_Event( int type, PyInterp_Request* request )
     : QEvent( (QEvent::Type)type ), myRequest( request ) {}