@@ -11,8 +11,27 @@ private let SwiftViewProc: SUBCLASSPROC = { (hWnd, uMsg, wParam, lParam, uIdSubc
11
11
let view : View ? = unsafeBitCast ( dwRefData, to: AnyObject . self) as? View
12
12
switch uMsg {
13
13
case UINT ( WM_CONTEXTMENU) :
14
- // TODO handle popup menu events
14
+ guard let view = view,
15
+ let menuInteraction = view. interactions. first ( where: { $0 is ContextMenuInteraction } )
16
+ as? ContextMenuInteraction else { break }
17
+ let x = Int16 ( truncatingIfNeeded: lParam)
18
+ let y = Int16 ( truncatingIfNeeded: lParam >> 16 )
19
+ let point = Point ( x: Int ( x) , y: Int ( y) )
20
+ let menuConfiguration = menuInteraction. delegate? . contextMenuInteraction ( menuInteraction,
21
+ configurationForMenuAtLocation: point)
22
+ if let menu = menuConfiguration? . provideActions ( ) {
23
+ view. win32ContextMenu = Win32Menu ( MenuHandle ( owning: CreatePopupMenu ( ) ) ,
24
+ children: menu. children)
25
+ } else {
26
+ view. win32ContextMenu = nil
27
+ }
28
+ let hMenu = view. win32ContextMenu? . hMenu. value
29
+ TrackPopupMenu ( hMenu, UINT ( TPM_RIGHTBUTTON) ,
30
+ Int32 ( x) , Int32 ( y) , 0 , view. hWnd, nil )
15
31
return 0
32
+ case UINT ( WM_COMMAND) :
33
+ // TODO handle menu actions
34
+ break
16
35
default :
17
36
break
18
37
}
@@ -202,6 +221,16 @@ public class View: Responder {
202
221
set { _ = EnableWindow ( self . hWnd, newValue) }
203
222
}
204
223
224
+ public private( set) var interactions : [ Interaction ] = [ ]
225
+ internal var win32ContextMenu : Win32Menu ? = nil
226
+
227
+ public func addInteraction( _ interaction: Interaction ) {
228
+ interaction. willMove ( to: self )
229
+ interaction. view? . interactions. removeAll ( where: { $0 === interaction } )
230
+ interactions. append ( interaction)
231
+ interaction. didMove ( to: self )
232
+ }
233
+
205
234
// MARK - Managing the View Hierarchy
206
235
207
236
public private( set) var superview : View ?
0 commit comments