hooks for client and copyData events
authorClaus Gittinger <cg@exept.de>
Tue, 22 Jul 2008 17:31:32 +0200
changeset 2522 ff119836dbec
parent 2521 7e51aa294156
child 2523 497ef51ffbe6
hooks for client and copyData events
ApplicationModel.st
--- a/ApplicationModel.st	Sat Jul 12 17:30:06 2008 +0200
+++ b/ApplicationModel.st	Tue Jul 22 17:31:32 2008 +0200
@@ -3033,6 +3033,16 @@
 
 !ApplicationModel methodsFor:'window events'!
 
+clientMessage:msgType format:msgFormat eventData:msgData
+    "a client message - very X-Window specific and only useful for special applications.
+     Subclasses prepared to receive them should redefine this method"
+!
+
+copyDataEvent:msgType eventData:msgData
+    "a client message - very Win32 specific and only useful for special applications.
+     Subclasses prepared to receive them should redefine this method"
+!
+
 dispatchEvent:event
     "dispatch a user-pushed event.
      This allows for events for an appModel to be pushed into the event queue
@@ -3162,7 +3172,7 @@
 !ApplicationModel class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview2/ApplicationModel.st,v 1.255 2008-07-12 15:23:41 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview2/ApplicationModel.st,v 1.256 2008-07-22 15:31:32 cg Exp $'
 ! !
 
 ApplicationModel initialize!