VDBDebuggerApplication.st
changeset 59 e7d0453109a1
parent 56 6c7ed8cc00ea
child 65 3fdd35be056d
equal deleted inserted replaced
58:df46b9c82b38 59:e7d0453109a1
   852     self closeDownViews
   852     self closeDownViews
   853 
   853 
   854     "Created: / 01-06-2017 / 13:42:25 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   854     "Created: / 01-06-2017 / 13:42:25 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   855 !
   855 !
   856 
   856 
       
   857 onLogOutputEvent:aGDBLogOutputEvent 
       
   858 
       
   859     Transcript nextPutAll: aGDBLogOutputEvent value.
       
   860     Transcript isView ifTrue:[ 
       
   861         Transcript topView raise.
       
   862         Transcript flash.
       
   863     ].
       
   864 
       
   865     "Created: / 02-02-2018 / 11:46:40 / Jan Vrany <jan.vrany@fit.cvut.cz>"
       
   866     "Modified: / 02-02-2018 / 21:02:20 / Jan Vrany <jan.vrany@fit.cvut.cz>"
       
   867 !
       
   868 
   857 onRunningEvent: aGDBStoppedEvent
   869 onRunningEvent: aGDBStoppedEvent
   858     self updateButtonEnablements
   870     self updateButtonEnablements
   859 
   871 
   860     "Created: / 21-09-2014 / 22:44:16 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   872     "Created: / 21-09-2014 / 22:44:16 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   861     "Modified: / 01-06-2017 / 23:18:18 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   873     "Modified: / 01-06-2017 / 23:18:18 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   902     debugger announcer
   914     debugger announcer
   903         when: GDBStoppedEvent       send: #onStoppedEvent:  to: self;
   915         when: GDBStoppedEvent       send: #onStoppedEvent:  to: self;
   904         when: GDBRunningEvent       send: #onRunningEvent:  to: self;
   916         when: GDBRunningEvent       send: #onRunningEvent:  to: self;
   905         when: GDBExitEvent          send: #onExitEvent:     to: self;
   917         when: GDBExitEvent          send: #onExitEvent:     to: self;
   906         when: GDBCommandResultEvent send: #onCommandResultEvent: to: self;
   918         when: GDBCommandResultEvent send: #onCommandResultEvent: to: self;
   907         when: GDBThreadGroupExitedEvent send: #onThreadGroupExitedEvent:  to: self.
   919         when: GDBThreadGroupExitedEvent send: #onThreadGroupExitedEvent:  to: self;
       
   920         when: GDBLogOutputEvent             send: #onLogOutputEvent:          to: self.
   908 
   921 
   909     "Created: / 21-09-2014 / 22:43:21 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   922     "Created: / 21-09-2014 / 22:43:21 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   910     "Modified: / 01-06-2017 / 23:42:52 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   923     "Modified: / 02-02-2018 / 21:02:04 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   911 ! !
   924 ! !
   912 
   925 
   913 !VDBDebuggerApplication methodsFor:'menu actions'!
   926 !VDBDebuggerApplication methodsFor:'menu actions'!
   914 
   927 
   915 doDebugReopenDebugger
   928 doDebugReopenDebugger