WebKitRenderer.st
changeset 30 39fbc84d4033
parent 26 35e0080c5e32
child 31 035449621a0c
equal deleted inserted replaced
29:44bc6c85f95a 30:39fbc84d4033
    94     "Created: / 07-06-2011 / 10:21:27 / Jan Vrany <jan.vrany@fit.cvut.cz>"
    94     "Created: / 07-06-2011 / 10:21:27 / Jan Vrany <jan.vrany@fit.cvut.cz>"
    95 ! !
    95 ! !
    96 
    96 
    97 !WebKitRenderer methodsFor:'event handling'!
    97 !WebKitRenderer methodsFor:'event handling'!
    98 
    98 
       
    99 KEY_PRESS: event
       
   100 
       
   101     "Created: / 19-04-2012 / 10:25:22 / Jan Vrany <jan.vrany@fit.cvut.cz>"
       
   102 !
       
   103 
       
   104 KEY_RELEASE: event
       
   105 
       
   106     "Created: / 19-04-2012 / 10:26:23 / Jan Vrany <jan.vrany@fit.cvut.cz>"
       
   107 !
       
   108 
    99 LOAD_COMMIT: event
   109 LOAD_COMMIT: event
   100 
   110 
   101     view url value ~= event second ifTrue:
   111     view url value ~= event second ifTrue:
   102         [view url value: event second].
   112         [view url value: event second].
   103 
   113 
   108 PTR_MOVE: event
   118 PTR_MOVE: event
   109 
   119 
   110     view buttonMotion: 0 x: event second y: event third
   120     view buttonMotion: 0 x: event second y: event third
   111 
   121 
   112     "Created: / 18-02-2012 / 14:31:16 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   122     "Created: / 18-02-2012 / 14:31:16 / Jan Vrany <jan.vrany@fit.cvut.cz>"
       
   123 !
       
   124 
       
   125 SCROLL_HORIZ: event
       
   126     "Nothing to do here, scrolling is handled by UZBL itself"
       
   127 
       
   128     "Created: / 19-04-2012 / 10:24:21 / Jan Vrany <jan.vrany@fit.cvut.cz>"
       
   129 !
       
   130 
       
   131 SCROLL_VERT: event
       
   132     "Nothing to do here, scrolling is handled by UZBL itself"
       
   133 
       
   134     "Created: / 19-04-2012 / 10:24:42 / Jan Vrany <jan.vrany@fit.cvut.cz>"
   113 !
   135 !
   114 
   136 
   115 TITLE_CHANGED: event
   137 TITLE_CHANGED: event
   116 
   138 
   117     event second = '(no title)' ifFalse:
   139     event second = '(no title)' ifFalse: