Skip to content

Commit 84c7495

Browse files
egorzhdancompnerd
andcommitted
UI: add containing View for each Label
`WC_STATIC` control doesn't receive events like `WM_CONTEXTMENU`. To be able to handle those events, let's create containing views for `WC_STATIC` instances. Co-authored-by: Saleem Abdulrasool <[email protected]>
1 parent 3078755 commit 84c7495

File tree

1 file changed

+31
-6
lines changed

1 file changed

+31
-6
lines changed

Sources/SwiftWin32/Views and Controls/Label.swift

+31-6
Original file line numberDiff line numberDiff line change
@@ -20,22 +20,47 @@ private let SwiftLabelProc: SUBCLASSPROC = { (hWnd, uMsg, wParam, lParam, uIdSub
2020
return DefSubclassProc(hWnd, uMsg, wParam, lParam)
2121
}
2222

23-
public class Label: Control {
23+
fileprivate class LabelView: View {
2424
private static let `class`: WindowClass = WindowClass(named: WC_STATIC)
25-
private static let style: WindowStyle = (base: WS_TABSTOP | DWORD(SS_NOTIFY), extended: 0)
25+
private static let style: WindowStyle = (base: 0, extended: 0)
26+
27+
@_Win32WindowText
28+
public var text: String?
29+
30+
public init(frame: Rect) {
31+
super.init(frame: frame, class: LabelView.class, style: LabelView.style)
32+
}
33+
}
34+
35+
public class Label: Control {
36+
private static let `class`: WindowClass =
37+
WindowClass(hInst: GetModuleHandleW(nil), name: "Swift.Label")
38+
private static let style: WindowStyle = (base: WS_TABSTOP, extended: 0)
39+
40+
private let view: LabelView
41+
42+
public override var frame: Rect {
43+
didSet {
44+
self.view.frame = Rect(origin: .zero, size: frame.size)
45+
}
46+
}
2647

2748
public override var font: Font! {
28-
get { return super.font }
29-
set(value) { super.font = value }
49+
get { return self.view.font }
50+
set(value) { self.view.font = value }
3051
}
3152

32-
@_Win32WindowText
33-
public var text: String?
53+
public var text: String? {
54+
get { return self.view.text }
55+
set(value) { self.view.text = value }
56+
}
3457

3558
public init(frame: Rect) {
59+
self.view = LabelView(frame: Rect(origin: .zero, size: frame.size))
3660
super.init(frame: frame, class: Label.class, style: Label.style)
3761
_ = SetWindowSubclass(hWnd, SwiftLabelProc, UINT_PTR(1),
3862
unsafeBitCast(self as AnyObject, to: DWORD_PTR.self))
63+
self.addSubview(self.view)
3964
}
4065

4166
// ContentSizeCategoryAdjusting

0 commit comments

Comments
 (0)